Contract
0x8308a1A404dB3cB3075618B1651671bC4E15F9d5
1
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
TraderJoe_ZapIn_V1
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-11-19 */ // ███████╗░█████╗░██████╗░██████╗░███████╗██████╗░░░░███████╗██╗ // ╚════██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗░░░██╔════╝██║ // ░░███╔═╝███████║██████╔╝██████╔╝█████╗░░██████╔╝░░░█████╗░░██║ // ██╔══╝░░██╔══██║██╔═══╝░██╔═══╝░██╔══╝░░██╔══██╗░░░██╔══╝░░██║ // ███████╗██║░░██║██║░░░░░██║░░░░░███████╗██║░░██║██╗██║░░░░░██║ // ╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝░░░░░╚══════╝╚═╝░░╚═╝╚═╝╚═╝░░░░░╚═╝ // Copyright (C) 2021 zapper // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // ///@author Zapper ///@notice This contract adds liquidity to TraderJoe pools on Avalanche using AVAX or any ERC20 Tokens. // SPDX-License-Identifier: GPL-2.0 AND MIT // File contracts/oz/0.8.0/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File contracts/oz/0.8.0/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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 virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/oz/0.8.0/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File contracts/oz/0.8.0/utils/Address.sol pragma solidity ^0.8.0; /** * @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); } } } } // File contracts/oz/0.8.0/token/ERC20/utils/SafeERC20.sol pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transfer.selector, to, value) ); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, value) ); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require( oldAllowance >= value, "SafeERC20: decreased allowance below zero" ); uint256 newAllowance = oldAllowance - value; _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall( data, "SafeERC20: low-level call failed" ); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require( abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed" ); } } } // File contracts/oz/0.8.0/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File contracts/_base/ZapBaseV2_1.sol // ███████╗░█████╗░██████╗░██████╗░███████╗██████╗░░░░███████╗██╗ // ╚════██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗░░░██╔════╝██║ // ░░███╔═╝███████║██████╔╝██████╔╝█████╗░░██████╔╝░░░█████╗░░██║ // ██╔══╝░░██╔══██║██╔═══╝░██╔═══╝░██╔══╝░░██╔══██╗░░░██╔══╝░░██║ // ███████╗██║░░██║██║░░░░░██║░░░░░███████╗██║░░██║██╗██║░░░░░██║ // ╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝░░░░░╚══════╝╚═╝░░╚═╝╚═╝╚═╝░░░░░╚═╝ // Copyright (C) 2021 zapper // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // /// @author Zapper /// @notice This abstract contract, which is inherited by Zaps, /// provides utility functions for moving tokens, checking allowances /// and balances, and accounting /// for fees. pragma solidity ^0.8.0; abstract contract ZapBaseV2_1 is Ownable { using SafeERC20 for IERC20; bool public stopped = false; // if true, goodwill is not deducted mapping(address => bool) public feeWhitelist; uint256 public goodwill; // % share of goodwill (0-100 %) uint256 affiliateSplit; // restrict affiliates mapping(address => bool) public affiliates; // affiliate => token => amount mapping(address => mapping(address => uint256)) public affiliateBalance; // token => amount mapping(address => uint256) public totalAffiliateBalance; // swapTarget => approval status mapping(address => bool) public approvedTargets; address internal constant ETHAddress = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; address internal constant ZapperAdmin = 0x3CE37278de6388532C3949ce4e886F365B14fB56; constructor(uint256 _goodwill, uint256 _affiliateSplit) { goodwill = _goodwill; affiliateSplit = _affiliateSplit; } // circuit breaker modifiers modifier stopInEmergency { if (stopped) { revert("Paused"); } else { _; } } function _getBalance(address token) internal view returns (uint256 balance) { if (token == address(0)) { balance = address(this).balance; } else { balance = IERC20(token).balanceOf(address(this)); } } function _approveToken(address token, address spender) internal { IERC20 _token = IERC20(token); if (_token.allowance(address(this), spender) > 0) return; else { _token.safeApprove(spender, type(uint256).max); } } function _approveToken( address token, address spender, uint256 amount ) internal { IERC20(token).safeApprove(spender, 0); IERC20(token).safeApprove(spender, amount); } // - to Pause the contract function toggleContractActive() public onlyOwner { stopped = !stopped; } function set_feeWhitelist(address zapAddress, bool status) external onlyOwner { feeWhitelist[zapAddress] = status; } function set_new_goodwill(uint256 _new_goodwill) public onlyOwner { require( _new_goodwill >= 0 && _new_goodwill <= 100, "GoodWill Value not allowed" ); goodwill = _new_goodwill; } function set_new_affiliateSplit(uint256 _new_affiliateSplit) external onlyOwner { require( _new_affiliateSplit <= 100, "Affiliate Split Value not allowed" ); affiliateSplit = _new_affiliateSplit; } function set_affiliate(address _affiliate, bool _status) external onlyOwner { affiliates[_affiliate] = _status; } ///@notice Withdraw goodwill share, retaining affilliate share function withdrawTokens(address[] calldata tokens) external onlyOwner { for (uint256 i = 0; i < tokens.length; i++) { uint256 qty; if (tokens[i] == ETHAddress) { qty = address(this).balance - totalAffiliateBalance[tokens[i]]; Address.sendValue(payable(owner()), qty); } else { qty = IERC20(tokens[i]).balanceOf(address(this)) - totalAffiliateBalance[tokens[i]]; IERC20(tokens[i]).safeTransfer(owner(), qty); } } } ///@notice Withdraw affilliate share, retaining goodwill share function affilliateWithdraw(address[] calldata tokens) external { uint256 tokenBal; for (uint256 i = 0; i < tokens.length; i++) { tokenBal = affiliateBalance[msg.sender][tokens[i]]; affiliateBalance[msg.sender][tokens[i]] = 0; totalAffiliateBalance[tokens[i]] = totalAffiliateBalance[tokens[i]] - tokenBal; if (tokens[i] == ETHAddress) { Address.sendValue(payable(msg.sender), tokenBal); } else { IERC20(tokens[i]).safeTransfer(msg.sender, tokenBal); } } } function setApprovedTargets( address[] calldata targets, bool[] calldata isApproved ) external onlyOwner { require(targets.length == isApproved.length, "Invalid Input length"); for (uint256 i = 0; i < targets.length; i++) { approvedTargets[targets[i]] = isApproved[i]; } } function _subtractGoodwill( address token, uint256 amount, address affiliate, bool enableGoodwill ) internal returns (uint256 totalGoodwillPortion) { bool whitelisted = feeWhitelist[msg.sender]; if (enableGoodwill && !whitelisted && goodwill > 0) { totalGoodwillPortion = (amount * goodwill) / 10000; if (affiliates[affiliate]) { if (token == address(0)) { token = ETHAddress; } uint256 affiliatePortion = (totalGoodwillPortion * affiliateSplit) / 100; affiliateBalance[affiliate][token] += affiliatePortion; totalAffiliateBalance[token] += affiliatePortion; } } } receive() external payable { require(msg.sender != tx.origin, "Do not send ETH directly"); } } // File contracts/_base/ZapInBaseV3_1.sol // ███████╗░█████╗░██████╗░██████╗░███████╗██████╗░░░░███████╗██╗ // ╚════██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗░░░██╔════╝██║ // ░░███╔═╝███████║██████╔╝██████╔╝█████╗░░██████╔╝░░░█████╗░░██║ // ██╔══╝░░██╔══██║██╔═══╝░██╔═══╝░██╔══╝░░██╔══██╗░░░██╔══╝░░██║ // ███████╗██║░░██║██║░░░░░██║░░░░░███████╗██║░░██║██╗██║░░░░░██║ // ╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝░░░░░╚══════╝╚═╝░░╚═╝╚═╝╚═╝░░░░░╚═╝ // Copyright (C) 2021 zapper // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // /// @author Zapper /// @notice This abstract contract provides utility functions for moving tokens. pragma solidity ^0.8.0; abstract contract ZapInBaseV3_1 is ZapBaseV2_1 { using SafeERC20 for IERC20; /** @dev Transfer tokens (including ETH) from msg.sender to this contract @param token The ERC20 token to transfer to this contract (0 address if ETH) @return Quantity of tokens transferred to this contract */ function _pullTokens( address token, uint256 amount, address affiliate, bool enableGoodwill ) internal returns (uint256) { uint256 totalGoodwillPortion; if (token == address(0)) { require(msg.value > 0, "No eth sent"); // subtract goodwill totalGoodwillPortion = _subtractGoodwill( ETHAddress, msg.value, affiliate, enableGoodwill ); return msg.value - totalGoodwillPortion; } require(amount > 0, "Invalid token amount"); require(msg.value == 0, "Eth sent with token"); //transfer token IERC20(token).safeTransferFrom(msg.sender, address(this), amount); // subtract goodwill totalGoodwillPortion = _subtractGoodwill( token, amount, affiliate, enableGoodwill ); return amount - totalGoodwillPortion; } } // File contracts/Avalanche/TraderJoe/TraderJoe_ZapIn_V1.sol pragma solidity ^0.8.0; // import "@uniswap/lib/contracts/libraries/Babylonian.sol"; library Babylonian { function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } } interface IWETH { function deposit() external payable; } interface IUniswapV2Factory { function getPair(address tokenA, address tokenB) external view returns (address); } interface IUniswapV2Router02 { function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); } interface IUniswapV2Pair { function token0() external pure returns (address); function token1() external pure returns (address); function getReserves() external view returns ( uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast ); } contract TraderJoe_ZapIn_V1 is ZapInBaseV3_1 { using SafeERC20 for IERC20; IUniswapV2Factory private constant joeFactory = IUniswapV2Factory(0x9Ad6C38BE94206cA50bb0d90783181662f0Cfa10); IUniswapV2Router02 private constant joeRouter = IUniswapV2Router02(0x60aE616a2155Ee3d9A68541Ba4544862310933d4); address private constant wavaxTokenAddress = address(0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7); uint256 private constant deadline = 0xf000000000000000000000000000000000000000000000000000000000000000; constructor(uint256 _goodwill, uint256 _affiliateSplit) ZapBaseV2_1(_goodwill, _affiliateSplit) { // 0x exchange approvedTargets[0xDef1C0ded9bec7F1a1670819833240f027b25EfF] = true; } event zapIn( address sender, address pool, uint256 tokensRec, address affiliate ); /** @notice Add liquidity to Quickswap pools with ETH/ERC20 Tokens @param _FromTokenContractAddress The ERC20 token used (address(0x00) if ether) @param _pairAddress The Quickswap pair address @param _amount The amount of fromToken to invest @param _minPoolTokens Minimum quantity of pool tokens to receive. Reverts otherwise @param _swapTarget Excecution target for the first swap @param swapData DEX quote data @param affiliate Affiliate address @param transferResidual Set false to save gas by donating the residual remaining after a Zap @return Amount of LP bought */ function ZapIn( address _FromTokenContractAddress, address _pairAddress, uint256 _amount, uint256 _minPoolTokens, address _swapTarget, bytes calldata swapData, address affiliate, bool transferResidual ) external payable stopInEmergency returns (uint256) { uint256 toInvest = _pullTokens(_FromTokenContractAddress, _amount, affiliate, true); uint256 LPBought = _performZapIn( _FromTokenContractAddress, _pairAddress, toInvest, _swapTarget, swapData, transferResidual ); require(LPBought >= _minPoolTokens, "High Slippage"); emit zapIn(msg.sender, _pairAddress, LPBought, affiliate); IERC20(_pairAddress).safeTransfer(msg.sender, LPBought); return LPBought; } function _getPairTokens(address _pairAddress) internal pure returns (address token0, address token1) { IUniswapV2Pair uniPair = IUniswapV2Pair(_pairAddress); token0 = uniPair.token0(); token1 = uniPair.token1(); } function _performZapIn( address _FromTokenContractAddress, address _pairAddress, uint256 _amount, address _swapTarget, bytes memory swapData, bool transferResidual ) internal returns (uint256) { uint256 intermediateAmt; address intermediateToken; (address _ToUniswapToken0, address _ToUniswapToken1) = _getPairTokens(_pairAddress); if ( _FromTokenContractAddress != _ToUniswapToken0 && _FromTokenContractAddress != _ToUniswapToken1 ) { // swap to intermediate (intermediateAmt, intermediateToken) = _fillQuote( _FromTokenContractAddress, _pairAddress, _amount, _swapTarget, swapData ); } else { intermediateToken = _FromTokenContractAddress; intermediateAmt = _amount; } // divide intermediate into appropriate amount to add liquidity (uint256 token0Bought, uint256 token1Bought) = _swapIntermediate( intermediateToken, _ToUniswapToken0, _ToUniswapToken1, intermediateAmt ); return _uniDeposit( _ToUniswapToken0, _ToUniswapToken1, token0Bought, token1Bought, transferResidual ); } function _uniDeposit( address _ToUnipoolToken0, address _ToUnipoolToken1, uint256 token0Bought, uint256 token1Bought, bool transferResidual ) internal returns (uint256) { _approveToken(_ToUnipoolToken0, address(joeRouter), token0Bought); _approveToken(_ToUnipoolToken1, address(joeRouter), token1Bought); (uint256 amountA, uint256 amountB, uint256 LP) = joeRouter.addLiquidity( _ToUnipoolToken0, _ToUnipoolToken1, token0Bought, token1Bought, 1, 1, address(this), deadline ); if (transferResidual) { //Returning Residue in token0, if any. if (token0Bought - amountA > 0) { IERC20(_ToUnipoolToken0).safeTransfer( msg.sender, token0Bought - amountA ); } //Returning Residue in token1, if any if (token1Bought - amountB > 0) { IERC20(_ToUnipoolToken1).safeTransfer( msg.sender, token1Bought - amountB ); } } return LP; } function _fillQuote( address _fromTokenAddress, address _pairAddress, uint256 _amount, address _swapTarget, bytes memory swapData ) internal returns (uint256 amountBought, address intermediateToken) { if (_swapTarget == wavaxTokenAddress) { IWETH(wavaxTokenAddress).deposit{ value: _amount }(); return (_amount, wavaxTokenAddress); } uint256 valueToSend; if (_fromTokenAddress == address(0)) { valueToSend = _amount; } else { _approveToken(_fromTokenAddress, _swapTarget, _amount); } (address _token0, address _token1) = _getPairTokens(_pairAddress); IERC20 token0 = IERC20(_token0); IERC20 token1 = IERC20(_token1); uint256 initialBalance0 = token0.balanceOf(address(this)); uint256 initialBalance1 = token1.balanceOf(address(this)); require(approvedTargets[_swapTarget], "Target not Authorized"); (bool success, ) = _swapTarget.call{ value: valueToSend }(swapData); require(success, "Error Swapping Tokens 1"); uint256 finalBalance0 = token0.balanceOf(address(this)) - initialBalance0; uint256 finalBalance1 = token1.balanceOf(address(this)) - initialBalance1; if (finalBalance0 > finalBalance1) { amountBought = finalBalance0; intermediateToken = _token0; } else { amountBought = finalBalance1; intermediateToken = _token1; } require(amountBought > 0, "Swapped to Invalid Intermediate"); } function _swapIntermediate( address _toContractAddress, address _ToUnipoolToken0, address _ToUnipoolToken1, uint256 _amount ) internal returns (uint256 token0Bought, uint256 token1Bought) { IUniswapV2Pair pair = IUniswapV2Pair( joeFactory.getPair(_ToUnipoolToken0, _ToUnipoolToken1) ); (uint256 res0, uint256 res1, ) = pair.getReserves(); if (_toContractAddress == _ToUnipoolToken0) { uint256 amountToSwap = calculateSwapInAmount(res0, _amount); //if no reserve or a new pair is created if (amountToSwap <= 0) amountToSwap = _amount / 2; token1Bought = _token2Token( _toContractAddress, _ToUnipoolToken1, amountToSwap ); token0Bought = _amount - amountToSwap; } else { uint256 amountToSwap = calculateSwapInAmount(res1, _amount); //if no reserve or a new pair is created if (amountToSwap <= 0) amountToSwap = _amount / 2; token0Bought = _token2Token( _toContractAddress, _ToUnipoolToken0, amountToSwap ); token1Bought = _amount - amountToSwap; } } function calculateSwapInAmount(uint256 reserveIn, uint256 userIn) internal pure returns (uint256) { return (Babylonian.sqrt( reserveIn * ((userIn * 3988000) + (reserveIn * 3988009)) ) - (reserveIn * 1997)) / 1994; } /** @notice This function is used to swap ERC20 <> ERC20 @param _FromTokenContractAddress The token address to swap from. @param _ToTokenContractAddress The token address to swap to. @param tokens2Trade The amount of tokens to swap @return tokenBought The quantity of tokens bought */ function _token2Token( address _FromTokenContractAddress, address _ToTokenContractAddress, uint256 tokens2Trade ) internal returns (uint256 tokenBought) { if (_FromTokenContractAddress == _ToTokenContractAddress) { return tokens2Trade; } _approveToken( _FromTokenContractAddress, address(joeRouter), tokens2Trade ); address pair = joeFactory.getPair( _FromTokenContractAddress, _ToTokenContractAddress ); require(pair != address(0), "No Swap Available"); address[] memory path = new address[](2); path[0] = _FromTokenContractAddress; path[1] = _ToTokenContractAddress; tokenBought = joeRouter.swapExactTokensForTokens( tokens2Trade, 1, path, address(this), deadline )[path.length - 1]; require(tokenBought > 0, "Error Swapping Tokens 2"); } }
[{"inputs":[{"internalType":"uint256","name":"_goodwill","type":"uint256"},{"internalType":"uint256","name":"_affiliateSplit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"pool","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensRec","type":"uint256"},{"indexed":false,"internalType":"address","name":"affiliate","type":"address"}],"name":"zapIn","type":"event"},{"inputs":[{"internalType":"address","name":"_FromTokenContractAddress","type":"address"},{"internalType":"address","name":"_pairAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minPoolTokens","type":"uint256"},{"internalType":"address","name":"_swapTarget","type":"address"},{"internalType":"bytes","name":"swapData","type":"bytes"},{"internalType":"address","name":"affiliate","type":"address"},{"internalType":"bool","name":"transferResidual","type":"bool"}],"name":"ZapIn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"affiliateBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"affiliates","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"affilliateWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedTargets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goodwill","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"bool[]","name":"isApproved","type":"bool[]"}],"name":"setApprovedTargets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_affiliate","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"set_affiliate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"zapAddress","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"set_feeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_affiliateSplit","type":"uint256"}],"name":"set_new_affiliateSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_goodwill","type":"uint256"}],"name":"set_new_goodwill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleContractActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAffiliateBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260008060146101000a81548160ff0219169083151502179055503480156200002b57600080fd5b5060405162004a4438038062004a448339818101604052810190620000519190620001a6565b81816000620000656200018760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160028190555080600381905550505060016007600073def1c0ded9bec7f1a1670819833240f027b25eff73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000216565b600033905090565b600081519050620001a081620001fc565b92915050565b60008060408385031215620001c057620001bf620001f7565b5b6000620001d0858286016200018f565b9250506020620001e3858286016200018f565b9150509250929050565b6000819050919050565b600080fd5b6200020781620001ed565b81146200021357600080fd5b50565b61481e80620002266000396000f3fe6080604052600436106101185760003560e01c80635ecb16cd116100a05780639779d1a6116100645780639779d1a6146103ef578063d408f6571461042c578063db254e5014610469578063f2fde38b14610499578063fbec27bf146104c25761018e565b80635ecb16cd14610330578063715018a61461035957806375f12b21146103705780638da5cb5b1461039b5780639735a634146103c65761018e565b806318b135e3116100e757806318b135e3146102395780633ff428c7146102765780634f51e2941461029f578063550bfa56146102dc5780635de0398e146103055761018e565b806301e980d4146101935780630dc9de85146101bc5780631385d24c146101e55780631781261f146101fc5761018e565b3661018e573273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561018c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018390613c2b565b60405180910390fd5b005b600080fd5b34801561019f57600080fd5b506101ba60048036038101906101b5919061351e565b6104eb565b005b3480156101c857600080fd5b506101e360048036038101906101de919061335a565b6105b5565b005b3480156101f157600080fd5b506101fa6108dd565b005b34801561020857600080fd5b50610223600480360381019061021e9190613204565b610985565b6040516102309190613eab565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b91906131aa565b6109aa565b60405161026d9190613eab565b60405180910390f35b34801561028257600080fd5b5061029d6004803603810190610298919061331a565b6109c2565b005b3480156102ab57600080fd5b506102c660048036038101906102c191906131aa565b610a99565b6040516102d39190613bae565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061351e565b610ab9565b005b34801561031157600080fd5b5061031a610b90565b6040516103279190613eab565b60405180910390f35b34801561033c57600080fd5b506103576004803603810190610352919061335a565b610b96565b005b34801561036557600080fd5b5061036e610eb1565b005b34801561037c57600080fd5b50610385610feb565b6040516103929190613bae565b60405180910390f35b3480156103a757600080fd5b506103b0610ffe565b6040516103bd9190613a47565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e891906133a7565b611027565b005b3480156103fb57600080fd5b50610416600480360381019061041191906131aa565b6111b8565b6040516104239190613bae565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906131aa565b6111d8565b6040516104609190613bae565b60405180910390f35b610483600480360381019061047e9190613244565b6111f8565b6040516104909190613eab565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906131aa565b61136d565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061331a565b611516565b005b6104f36115ed565b73ffffffffffffffffffffffffffffffffffffffff16610511610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614610567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055e90613dab565b60405180910390fd5b60648111156105ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a290613d8b565b60405180910390fd5b8060038190555050565b600080600090505b838390508110156108d757600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085858481811061061c5761061b614280565b5b905060200201602081019061063191906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491506000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106106c4576106c3614280565b5b90506020020160208101906106d991906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816006600086868581811061072f5761072e614280565b5b905060200201602081019061074491906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078991906140bd565b600660008686858181106107a05761079f614280565b5b90506020020160208101906107b591906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff1684848381811061083157610830614280565b5b905060200201602081019061084691906131aa565b73ffffffffffffffffffffffffffffffffffffffff1614156108715761086c33836115f5565b6108c4565b6108c3338386868581811061088957610888614280565b5b905060200201602081019061089e91906131aa565b73ffffffffffffffffffffffffffffffffffffffff166116e99092919063ffffffff16565b5b80806108cf906141d9565b9150506105bd565b50505050565b6108e56115ed565b73ffffffffffffffffffffffffffffffffffffffff16610903610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614610959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095090613dab565b60405180910390fd5b600060149054906101000a900460ff1615600060146101000a81548160ff021916908315150217905550565b6005602052816000526040600020602052806000526040600020600091509150505481565b60066020528060005260406000206000915090505481565b6109ca6115ed565b73ffffffffffffffffffffffffffffffffffffffff166109e8610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590613dab565b60405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60046020528060005260406000206000915054906101000a900460ff1681565b610ac16115ed565b73ffffffffffffffffffffffffffffffffffffffff16610adf610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613dab565b60405180910390fd5b60008110158015610b47575060648111155b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90613d2b565b60405180910390fd5b8060028190555050565b60025481565b610b9e6115ed565b73ffffffffffffffffffffffffffffffffffffffff16610bbc610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613dab565b60405180910390fd5b60005b82829050811015610eac57600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff16848484818110610c6057610c5f614280565b5b9050602002016020810190610c7591906131aa565b73ffffffffffffffffffffffffffffffffffffffff161415610d1b5760066000858585818110610ca857610ca7614280565b5b9050602002016020810190610cbd91906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205447610d0391906140bd565b9050610d16610d10610ffe565b826115f5565b610e98565b60066000858585818110610d3257610d31614280565b5b9050602002016020810190610d4791906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054848484818110610d9557610d94614280565b5b9050602002016020810190610daa91906131aa565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610de29190613a47565b60206040518083038186803b158015610dfa57600080fd5b505afa158015610e0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e32919061354b565b610e3c91906140bd565b9050610e97610e49610ffe565b82868686818110610e5d57610e5c614280565b5b9050602002016020810190610e7291906131aa565b73ffffffffffffffffffffffffffffffffffffffff166116e99092919063ffffffff16565b5b508080610ea4906141d9565b915050610c15565b505050565b610eb96115ed565b73ffffffffffffffffffffffffffffffffffffffff16610ed7610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613dab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600060149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61102f6115ed565b73ffffffffffffffffffffffffffffffffffffffff1661104d610ffe565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613dab565b60405180910390fd5b8181905084849050146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613d6b565b60405180910390fd5b60005b848490508110156111b15782828281811061110c5761110b614280565b5b90506020020160208101906111219190613471565b6007600087878581811061113857611137614280565b5b905060200201602081019061114d91906131aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111a9906141d9565b9150506110ee565b5050505050565b60076020528060005260406000206000915054906101000a900460ff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b60008060149054906101000a900460ff1615611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090613c0b565b60405180910390fd5b60006112588b8a86600161176f565b905060006112ae8c8c848b8b8b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050896118f9565b9050888110156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613c4b565b60405180910390fd5b7ff480202ff227dd85b3cfff5a145fbc783babc42398ff0122cb6dcde4a7ce1541338c83886040516113289493929190613ac2565b60405180910390a161135b33828d73ffffffffffffffffffffffffffffffffffffffff166116e99092919063ffffffff16565b80925050509998505050505050505050565b6113756115ed565b73ffffffffffffffffffffffffffffffffffffffff16611393610ffe565b73ffffffffffffffffffffffffffffffffffffffff16146113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613dab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613c6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61151e6115ed565b73ffffffffffffffffffffffffffffffffffffffff1661153c610ffe565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613dab565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b80471015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613ceb565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161165e90613a32565b60006040518083038185875af1925050503d806000811461169b576040519150601f19603f3d011682016040523d82523d6000602084013e6116a0565b606091505b50509050806116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613c8b565b60405180910390fd5b505050565b61176a8363a9059cbb60e01b8484604051602401611708929190613b85565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506119ce565b505050565b600080600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561182057600034116117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613d4b565b60405180910390fd5b61180a73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee348686611a95565b9050803461181891906140bd565b9150506118f1565b60008511611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613cab565b60405180910390fd5b600034146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613ccb565b60405180910390fd5b6118d33330878973ffffffffffffffffffffffffffffffffffffffff16611cd4909392919063ffffffff16565b6118df86868686611a95565b905080856118ed91906140bd565b9150505b949350505050565b600080600080600061190a8a611d5d565b915091508173ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff161415801561197657508073ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff1614155b15611995576119888b8b8b8b8b611e6b565b809450819550505061199c565b8a92508893505b6000806119ab858585896123a4565b915091506119bc848484848c6125ba565b96505050505050509695505050505050565b6000611a30826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661277f9092919063ffffffff16565b9050600081511115611a905780806020019051810190611a50919061349e565b611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613e6b565b60405180910390fd5b5b505050565b600080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050828015611af2575080155b8015611b0057506000600254115b15611ccb5761271060025486611b169190614063565b611b209190614032565b9150600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cca57600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611bc15773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee95505b6000606460035484611bd39190614063565b611bdd9190614032565b905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6b9190613fdc565b9250508190555080600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc19190613fdc565b92505081905550505b5b50949350505050565b611d57846323b872dd60e01b858585604051602401611cf593929190613a8b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506119ce565b50505050565b60008060008390508073ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015611dab57600080fd5b505afa158015611dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de391906131d7565b92508073ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015611e2b57600080fd5b505afa158015611e3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6391906131d7565b915050915091565b60008073b31f66aa3c1e785363f0875a1b74e27b85fd66c773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4a5773b31f66aa3c1e785363f0875a1b74e27b85fd66c773ffffffffffffffffffffffffffffffffffffffff1663d0e30db0866040518263ffffffff1660e01b81526004016000604051808303818588803b158015611f1257600080fd5b505af1158015611f26573d6000803e3d6000fd5b50505050508473b31f66aa3c1e785363f0875a1b74e27b85fd66c79150915061239a565b60008073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415611f8857859050611f94565b611f93888688612797565b5b600080611fa089611d5d565b915091506000829050600082905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611fe99190613a47565b60206040518083038186803b15801561200157600080fd5b505afa158015612015573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612039919061354b565b905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016120769190613a47565b60206040518083038186803b15801561208e57600080fd5b505afa1580156120a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c6919061354b565b9050600760008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90613beb565b60405180910390fd5b60008b73ffffffffffffffffffffffffffffffffffffffff16888c60405161217c9190613a1b565b60006040518083038185875af1925050503d80600081146121b9576040519150601f19603f3d011682016040523d82523d6000602084013e6121be565b606091505b5050905080612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613deb565b60405180910390fd5b6000838673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161223e9190613a47565b60206040518083038186803b15801561225657600080fd5b505afa15801561226a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228e919061354b565b61229891906140bd565b90506000838673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122d69190613a47565b60206040518083038186803b1580156122ee57600080fd5b505afa158015612302573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612326919061354b565b61233091906140bd565b90508082111561234557819b50889a5061234c565b809b50879a505b60008c1161238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690613e0b565b60405180910390fd5b505050505050505050505b9550959350505050565b6000806000739ad6c38be94206ca50bb0d90783181662f0cfa1073ffffffffffffffffffffffffffffffffffffffff1663e6a4390587876040518363ffffffff1660e01b81526004016123f8929190613a62565b60206040518083038186803b15801561241057600080fd5b505afa158015612424573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061244891906131d7565b90506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561249357600080fd5b505afa1580156124a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124cb91906134cb565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16141561256b57600061253083886127f3565b90506000811161254a576002876125479190614032565b90505b6125558a898361285d565b9450808761256391906140bd565b9550506125ae565b600061257782886127f3565b9050600081116125915760028761258e9190614032565b90505b61259c8a8a8361285d565b955080876125aa91906140bd565b9450505b50505094509492505050565b60006125db867360ae616a2155ee3d9a68541ba4544862310933d486612797565b6125fa857360ae616a2155ee3d9a68541ba4544862310933d485612797565b60008060007360ae616a2155ee3d9a68541ba4544862310933d473ffffffffffffffffffffffffffffffffffffffff1663e8e337008a8a8a8a600180307ff0000000000000000000000000000000000000000000000000000000000000006040518963ffffffff1660e01b815260040161267b989796959493929190613b07565b606060405180830381600087803b15801561269557600080fd5b505af11580156126a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cd9190613578565b925092509250841561277057600083886126e791906140bd565b1115612724576127233384896126fd91906140bd565b8b73ffffffffffffffffffffffffffffffffffffffff166116e99092919063ffffffff16565b5b6000828761273291906140bd565b111561276f5761276e33838861274891906140bd565b8a73ffffffffffffffffffffffffffffffffffffffff166116e99092919063ffffffff16565b5b5b80935050505095945050505050565b606061278e8484600085612bfc565b90509392505050565b6127c38260008573ffffffffffffffffffffffffffffffffffffffff16612d109092919063ffffffff16565b6127ee82828573ffffffffffffffffffffffffffffffffffffffff16612d109092919063ffffffff16565b505050565b60006107ca6107cd846128069190614063565b612841623cda29866128189190614063565b623cda20866128279190614063565b6128319190613fdc565b8661283c9190614063565b612e6e565b61284b91906140bd565b6128559190614032565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561289b57819050612bf5565b6128ba847360ae616a2155ee3d9a68541ba4544862310933d484612797565b6000739ad6c38be94206ca50bb0d90783181662f0cfa1073ffffffffffffffffffffffffffffffffffffffff1663e6a4390586866040518363ffffffff1660e01b815260040161290b929190613a62565b60206040518083038186803b15801561292357600080fd5b505afa158015612937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295b91906131d7565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c490613e4b565b60405180910390fd5b6000600267ffffffffffffffff8111156129ea576129e96142af565b5b604051908082528060200260200182016040528015612a185781602001602082028036833780820191505090505b5090508581600081518110612a3057612a2f614280565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508481600181518110612a7f57612a7e614280565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507360ae616a2155ee3d9a68541ba4544862310933d473ffffffffffffffffffffffffffffffffffffffff166338ed173985600184307ff0000000000000000000000000000000000000000000000000000000000000006040518663ffffffff1660e01b8152600401612b2f959493929190613ec6565b600060405180830381600087803b158015612b4957600080fd5b505af1158015612b5d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612b869190613428565b60018251612b9491906140bd565b81518110612ba557612ba4614280565b5b6020026020010151925060008311612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990613dcb565b60405180910390fd5b50505b9392505050565b606082471015612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890613d0b565b60405180910390fd5b612c4a85612ee8565b612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090613e2b565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612cb29190613a1b565b60006040518083038185875af1925050503d8060008114612cef576040519150601f19603f3d011682016040523d82523d6000602084013e612cf4565b606091505b5091509150612d04828286612efb565b92505050949350505050565b6000811480612da9575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401612d57929190613a62565b60206040518083038186803b158015612d6f57600080fd5b505afa158015612d83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612da7919061354b565b145b612de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddf90613e8b565b60405180910390fd5b612e698363095ea7b360e01b8484604051602401612e07929190613b85565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506119ce565b505050565b60006003821115612ed55781905060006001600284612e8d9190614032565b612e979190613fdc565b90505b81811015612ecf578091506002818285612eb49190614032565b612ebe9190613fdc565b612ec89190614032565b9050612e9a565b50612ee3565b60008214612ee257600190505b5b919050565b600080823b905060008111915050919050565b60608315612f0b57829050612f5b565b600083511115612f1e5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f529190613bc9565b60405180910390fd5b9392505050565b6000612f75612f7084613f45565b613f20565b90508083825260208201905082856020860282011115612f9857612f976142e8565b5b60005b85811015612fc85781612fae8882613180565b845260208401935060208301925050600181019050612f9b565b5050509392505050565b600081359050612fe181614775565b92915050565b600081519050612ff681614775565b92915050565b60008083601f840112613012576130116142e3565b5b8235905067ffffffffffffffff81111561302f5761302e6142de565b5b60208301915083602082028301111561304b5761304a6142e8565b5b9250929050565b60008083601f840112613068576130676142e3565b5b8235905067ffffffffffffffff811115613085576130846142de565b5b6020830191508360208202830111156130a1576130a06142e8565b5b9250929050565b600082601f8301126130bd576130bc6142e3565b5b81516130cd848260208601612f62565b91505092915050565b6000813590506130e58161478c565b92915050565b6000815190506130fa8161478c565b92915050565b60008083601f840112613116576131156142e3565b5b8235905067ffffffffffffffff811115613133576131326142de565b5b60208301915083600182028301111561314f5761314e6142e8565b5b9250929050565b600081519050613165816147a3565b92915050565b60008135905061317a816147ba565b92915050565b60008151905061318f816147ba565b92915050565b6000815190506131a4816147d1565b92915050565b6000602082840312156131c0576131bf6142f2565b5b60006131ce84828501612fd2565b91505092915050565b6000602082840312156131ed576131ec6142f2565b5b60006131fb84828501612fe7565b91505092915050565b6000806040838503121561321b5761321a6142f2565b5b600061322985828601612fd2565b925050602061323a85828601612fd2565b9150509250929050565b60008060008060008060008060006101008a8c031215613267576132666142f2565b5b60006132758c828d01612fd2565b99505060206132868c828d01612fd2565b98505060406132978c828d0161316b565b97505060606132a88c828d0161316b565b96505060806132b98c828d01612fd2565b95505060a08a013567ffffffffffffffff8111156132da576132d96142ed565b5b6132e68c828d01613100565b945094505060c06132f98c828d01612fd2565b92505060e061330a8c828d016130d6565b9150509295985092959850929598565b60008060408385031215613331576133306142f2565b5b600061333f85828601612fd2565b9250506020613350858286016130d6565b9150509250929050565b60008060208385031215613371576133706142f2565b5b600083013567ffffffffffffffff81111561338f5761338e6142ed565b5b61339b85828601612ffc565b92509250509250929050565b600080600080604085870312156133c1576133c06142f2565b5b600085013567ffffffffffffffff8111156133df576133de6142ed565b5b6133eb87828801612ffc565b9450945050602085013567ffffffffffffffff81111561340e5761340d6142ed565b5b61341a87828801613052565b925092505092959194509250565b60006020828403121561343e5761343d6142f2565b5b600082015167ffffffffffffffff81111561345c5761345b6142ed565b5b613468848285016130a8565b91505092915050565b600060208284031215613487576134866142f2565b5b6000613495848285016130d6565b91505092915050565b6000602082840312156134b4576134b36142f2565b5b60006134c2848285016130eb565b91505092915050565b6000806000606084860312156134e4576134e36142f2565b5b60006134f286828701613156565b935050602061350386828701613156565b925050604061351486828701613195565b9150509250925092565b600060208284031215613534576135336142f2565b5b60006135428482850161316b565b91505092915050565b600060208284031215613561576135606142f2565b5b600061356f84828501613180565b91505092915050565b600080600060608486031215613591576135906142f2565b5b600061359f86828701613180565b93505060206135b086828701613180565b92505060406135c186828701613180565b9150509250925092565b60006135d783836135e3565b60208301905092915050565b6135ec816140f1565b82525050565b6135fb816140f1565b82525050565b600061360c82613f81565b6136168185613faf565b935061362183613f71565b8060005b8381101561365257815161363988826135cb565b975061364483613fa2565b925050600181019050613625565b5085935050505092915050565b61366881614103565b82525050565b600061367982613f8c565b6136838185613fc0565b9350613693818560208601614175565b80840191505092915050565b6136a881614163565b82525050565b60006136b982613f97565b6136c38185613fcb565b93506136d3818560208601614175565b6136dc816142f7565b840191505092915050565b60006136f4601583613fcb565b91506136ff82614308565b602082019050919050565b6000613717600683613fcb565b915061372282614331565b602082019050919050565b600061373a601883613fcb565b91506137458261435a565b602082019050919050565b600061375d600d83613fcb565b915061376882614383565b602082019050919050565b6000613780602683613fcb565b915061378b826143ac565b604082019050919050565b60006137a3603a83613fcb565b91506137ae826143fb565b604082019050919050565b60006137c6601483613fcb565b91506137d18261444a565b602082019050919050565b60006137e9601383613fcb565b91506137f482614473565b602082019050919050565b600061380c601d83613fcb565b91506138178261449c565b602082019050919050565b600061382f602683613fcb565b915061383a826144c5565b604082019050919050565b6000613852601a83613fcb565b915061385d82614514565b602082019050919050565b6000613875600b83613fcb565b91506138808261453d565b602082019050919050565b6000613898601483613fcb565b91506138a382614566565b602082019050919050565b60006138bb602183613fcb565b91506138c68261458f565b604082019050919050565b60006138de602083613fcb565b91506138e9826145de565b602082019050919050565b6000613901601783613fcb565b915061390c82614607565b602082019050919050565b6000613924601783613fcb565b915061392f82614630565b602082019050919050565b6000613947601f83613fcb565b915061395282614659565b602082019050919050565b600061396a600083613fc0565b915061397582614682565b600082019050919050565b600061398d601d83613fcb565b915061399882614685565b602082019050919050565b60006139b0601183613fcb565b91506139bb826146ae565b602082019050919050565b60006139d3602a83613fcb565b91506139de826146d7565b604082019050919050565b60006139f6603683613fcb565b9150613a0182614726565b604082019050919050565b613a1581614149565b82525050565b6000613a27828461366e565b915081905092915050565b6000613a3d8261395d565b9150819050919050565b6000602082019050613a5c60008301846135f2565b92915050565b6000604082019050613a7760008301856135f2565b613a8460208301846135f2565b9392505050565b6000606082019050613aa060008301866135f2565b613aad60208301856135f2565b613aba6040830184613a0c565b949350505050565b6000608082019050613ad760008301876135f2565b613ae460208301866135f2565b613af16040830185613a0c565b613afe60608301846135f2565b95945050505050565b600061010082019050613b1d600083018b6135f2565b613b2a602083018a6135f2565b613b376040830189613a0c565b613b446060830188613a0c565b613b51608083018761369f565b613b5e60a083018661369f565b613b6b60c08301856135f2565b613b7860e0830184613a0c565b9998505050505050505050565b6000604082019050613b9a60008301856135f2565b613ba76020830184613a0c565b9392505050565b6000602082019050613bc3600083018461365f565b92915050565b60006020820190508181036000830152613be381846136ae565b905092915050565b60006020820190508181036000830152613c04816136e7565b9050919050565b60006020820190508181036000830152613c248161370a565b9050919050565b60006020820190508181036000830152613c448161372d565b9050919050565b60006020820190508181036000830152613c6481613750565b9050919050565b60006020820190508181036000830152613c8481613773565b9050919050565b60006020820190508181036000830152613ca481613796565b9050919050565b60006020820190508181036000830152613cc4816137b9565b9050919050565b60006020820190508181036000830152613ce4816137dc565b9050919050565b60006020820190508181036000830152613d04816137ff565b9050919050565b60006020820190508181036000830152613d2481613822565b9050919050565b60006020820190508181036000830152613d4481613845565b9050919050565b60006020820190508181036000830152613d6481613868565b9050919050565b60006020820190508181036000830152613d848161388b565b9050919050565b60006020820190508181036000830152613da4816138ae565b9050919050565b60006020820190508181036000830152613dc4816138d1565b9050919050565b60006020820190508181036000830152613de4816138f4565b9050919050565b60006020820190508181036000830152613e0481613917565b9050919050565b60006020820190508181036000830152613e248161393a565b9050919050565b60006020820190508181036000830152613e4481613980565b9050919050565b60006020820190508181036000830152613e64816139a3565b9050919050565b60006020820190508181036000830152613e84816139c6565b9050919050565b60006020820190508181036000830152613ea4816139e9565b9050919050565b6000602082019050613ec06000830184613a0c565b92915050565b600060a082019050613edb6000830188613a0c565b613ee8602083018761369f565b8181036040830152613efa8186613601565b9050613f0960608301856135f2565b613f166080830184613a0c565b9695505050505050565b6000613f2a613f3b565b9050613f3682826141a8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f6057613f5f6142af565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000613fe782614149565b9150613ff283614149565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402757614026614222565b5b828201905092915050565b600061403d82614149565b915061404883614149565b92508261405857614057614251565b5b828204905092915050565b600061406e82614149565b915061407983614149565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b2576140b1614222565b5b828202905092915050565b60006140c882614149565b91506140d383614149565b9250828210156140e6576140e5614222565b5b828203905092915050565b60006140fc82614129565b9050919050565b60008115159050919050565b60006dffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600061416e82614149565b9050919050565b60005b83811015614193578082015181840152602081019050614178565b838111156141a2576000848401525b50505050565b6141b1826142f7565b810181811067ffffffffffffffff821117156141d0576141cf6142af565b5b80604052505050565b60006141e482614149565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561421757614216614222565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546172676574206e6f7420417574686f72697a65640000000000000000000000600082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f446f206e6f742073656e6420455448206469726563746c790000000000000000600082015250565b7f4869676820536c69707061676500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f496e76616c696420746f6b656e20616d6f756e74000000000000000000000000600082015250565b7f4574682073656e74207769746820746f6b656e00000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f476f6f6457696c6c2056616c7565206e6f7420616c6c6f776564000000000000600082015250565b7f4e6f206574682073656e74000000000000000000000000000000000000000000600082015250565b7f496e76616c696420496e707574206c656e677468000000000000000000000000600082015250565b7f416666696c696174652053706c69742056616c7565206e6f7420616c6c6f776560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4572726f72205377617070696e6720546f6b656e732032000000000000000000600082015250565b7f4572726f72205377617070696e6720546f6b656e732031000000000000000000600082015250565b7f5377617070656420746f20496e76616c696420496e7465726d65646961746500600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4e6f205377617020417661696c61626c65000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008201527f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000602082015250565b61477e816140f1565b811461478957600080fd5b50565b61479581614103565b81146147a057600080fd5b50565b6147ac8161410f565b81146147b757600080fd5b50565b6147c381614149565b81146147ce57600080fd5b50565b6147da81614153565b81146147e557600080fd5b5056fea2646970667358221220eb18f392dac7453f6c613573e7dabb6724e8a27d4cfb2189bfa70b7c34e7046f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _goodwill (uint256): 0
Arg [1] : _affiliateSplit (uint256): 0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
34624:10405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29562:9;29548:23;;:10;:23;;;;29540:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;34624:10405;;;;;26503:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27693:636;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26002:86;;;;;;;;;;;;;:::i;:::-;;24387:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24489:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26789:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24301:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26257:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24176:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27015:602;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4600:148;;;;;;;;;;;;;:::i;:::-;;24045:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3949:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28337:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24590:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24123:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36191:940;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4903:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26096:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26503:278;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26662:3:::1;26639:19;:26;;26617:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26754:19;26737:14;:36;;;;26503:278:::0;:::o;27693:636::-;27768:16;27800:9;27812:1;27800:13;;27795:527;27819:6;;:13;;27815:1;:17;27795:527;;;27865:16;:28;27882:10;27865:28;;;;;;;;;;;;;;;:39;27894:6;;27901:1;27894:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27865:39;;;;;;;;;;;;;;;;27854:50;;27961:1;27919:16;:28;27936:10;27919:28;;;;;;;;;;;;;;;:39;27948:6;;27955:1;27948:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27919:39;;;;;;;;;;;;;;;:43;;;;28081:8;28029:21;:32;28051:6;;28058:1;28051:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;28029:32;;;;;;;;;;;;;;;;:60;;;;:::i;:::-;27977:21;:32;27999:6;;28006:1;27999:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27977:32;;;;;;;;;;;;;;;:112;;;;24694:42;28110:23;;:6;;28117:1;28110:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:23;;;28106:205;;;28154:48;28180:10;28193:8;28154:17;:48::i;:::-;28106:205;;;28243:52;28274:10;28286:8;28250:6;;28257:1;28250:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;28243:30;;;;:52;;;;;:::i;:::-;28106:205;27834:3;;;;;:::i;:::-;;;;27795:527;;;;27757:572;27693:636;;:::o;26002:86::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26073:7:::1;;;;;;;;;;;26072:8;26062:7;;:18;;;;;;;;;;;;;;;;;;26002:86::o:0;24387:71::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24489:56::-;;;;;;;;;;;;;;;;;:::o;26789:150::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26924:7:::1;26899:10;:22;26910:10;26899:22;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;26789:150:::0;;:::o;24301:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;26257:238::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26373:1:::1;26356:13;:18;;:42;;;;;26395:3;26378:13;:20;;26356:42;26334:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;26474:13;26463:8;:24;;;;26257:238:::0;:::o;24176:23::-;;;;:::o;27015:602::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27101:9:::1;27096:514;27120:6;;:13;;27116:1;:17;27096:514;;;27155:11;24694:42;27187:23;;:6;;27194:1;27187:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:23;;;27183:416;;;27261:21;:32;27283:6;;27290:1;27283:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27261:32;;;;;;;;;;;;;;;;27237:21;:56;;;;:::i;:::-;27231:62;;27314:40;27340:7;:5;:7::i;:::-;27350:3;27314:17;:40::i;:::-;27183:416;;;27488:21;:32;27510:6;;27517:1;27510:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27488:32;;;;;;;;;;;;;;;;27429:6;;27436:1;27429:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27422:27;;;27458:4;27422:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:98;;;;:::i;:::-;27395:125;;27539:44;27570:7;:5;:7::i;:::-;27579:3;27546:6;;27553:1;27546:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27539:30;;;;:44;;;;;:::i;:::-;27183:416;27140:470;27135:3;;;;;:::i;:::-;;;;27096:514;;;;27015:602:::0;;:::o;4600:148::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4707:1:::1;4670:40;;4691:6;::::0;::::1;;;;;;;;4670:40;;;;;;;;;;;;4738:1;4721:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;4600:148::o:0;24045:27::-;;;;;;;;;;;;;:::o;3949:87::-;3995:7;4022:6;;;;;;;;;;;4015:13;;3949:87;:::o;28337:342::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28502:10:::1;;:17;;28484:7;;:14;;:35;28476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28562:9;28557:115;28581:7;;:14;;28577:1;:18;28557:115;;;28647:10;;28658:1;28647:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;28617:15;:27;28633:7;;28641:1;28633:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;28617:27;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;28597:3;;;;;:::i;:::-;;;;28557:115;;;;28337:342:::0;;;;:::o;24590:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;24123:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;36191:940::-;36513:7;25065;;;;;;;;;;;25061:90;;;25089:16;;;;;;;;;;:::i;:::-;;;;;;;;25061:90;36533:16:::1;36565:64;36577:25;36604:7;36613:9;36624:4;36565:11;:64::i;:::-;36533:96;;36642:16;36674:222;36706:25;36750:12;36781:8;36808:11;36838:8;;36674:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36865:16;36674:13;:222::i;:::-;36642:254;;36927:14;36915:8;:26;;36907:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;36977;36983:10;36995:12;37009:8;37019:9;36977:52;;;;;;;;;:::i;:::-;;;;;;;;37042:55;37076:10;37088:8;37049:12;37042:33;;;;:55;;;;;:::i;:::-;37115:8;37108:15;;;;36191:940:::0;;;;;;;;;;;:::o;4903:281::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5026:1:::1;5006:22;;:8;:22;;;;4984:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;5139:8;5110:38;;5131:6;::::0;::::1;;;;;;;;5110:38;;;;;;;;;;;;5168:8;5159:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;4903:281:::0;:::o;26096:153::-;4180:12;:10;:12::i;:::-;4169:23;;:7;:5;:7::i;:::-;:23;;;4161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26235:6:::1;26208:12;:24;26221:10;26208:24;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;26096:153:::0;;:::o;2493:98::-;2546:7;2573:10;2566:17;;2493:98;:::o;10232:471::-;10361:6;10336:21;:31;;10314:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10516:12;10534:9;:14;;10557:6;10534:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10515:54;;;10602:7;10580:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:400;10232:471;;:::o;17421:248::-;17538:123;17572:5;17615:23;;;17640:2;17644:5;17592:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17538:19;:123::i;:::-;17421:248;;;:::o;31824:1046::-;31977:7;31997:28;32059:1;32042:19;;:5;:19;;;32038:369;;;32098:1;32086:9;:13;32078:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;32189:150;24694:42;32254:9;32282;32310:14;32189:17;:150::i;:::-;32166:173;;32375:20;32363:9;:32;;;;:::i;:::-;32356:39;;;;;32038:369;32436:1;32427:6;:10;32419:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;32494:1;32481:9;:14;32473:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;32560:65;32591:10;32611:4;32618:6;32567:5;32560:30;;;;:65;;;;;;:::i;:::-;32691:122;32723:5;32743:6;32764:9;32788:14;32691:17;:122::i;:::-;32668:145;;32842:20;32833:6;:29;;;;:::i;:::-;32826:36;;;31824:1046;;;;;;;:::o;37424:1534::-;37667:7;37687:23;37721:25;37758:24;37784;37825:28;37840:12;37825:14;:28::i;:::-;37757:96;;;;37913:16;37884:45;;:25;:45;;;;:107;;;;;37975:16;37946:45;;:25;:45;;;;37884:107;37866:541;;;38094:183;38123:25;38167:12;38198:7;38224:11;38254:8;38094:10;:183::i;:::-;38055:222;;;;;;;;37866:541;;;38330:25;38310:45;;38388:7;38370:25;;37866:541;38493:20;38515;38552:172;38588:17;38624:16;38659;38694:15;38552:17;:172::i;:::-;38492:232;;;;38757:193;38787:16;38822;38857:12;38888;38919:16;38757:11;:193::i;:::-;38737:213;;;;;;;;37424:1534;;;;;;;;:::o;20442:885::-;20866:23;20905:118;20951:4;20905:118;;;;;;;;;;;;;;;;;20913:5;20905:27;;;;:118;;;;;:::i;:::-;20866:157;;21058:1;21038:10;:17;:21;21034:286;;;21211:10;21200:30;;;;;;;;;;;;:::i;:::-;21174:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;21034:286;20512:815;20442:885;;:::o;28687:807::-;28846:28;28887:16;28906:12;:24;28919:10;28906:24;;;;;;;;;;;;;;;;;;;;;;;;;28887:43;;28945:14;:30;;;;;28964:11;28963:12;28945:30;:46;;;;;28990:1;28979:8;;:12;28945:46;28941:546;;;29053:5;29041:8;;29032:6;:17;;;;:::i;:::-;29031:27;;;;:::i;:::-;29008:50;;29079:10;:21;29090:9;29079:21;;;;;;;;;;;;;;;;;;;;;;;;;29075:401;;;29142:1;29125:19;;:5;:19;;;29121:86;;;24694:42;29169:18;;29121:86;29227:24;29317:3;29299:14;;29276:20;:37;;;;:::i;:::-;29275:45;;;;:::i;:::-;29227:93;;29377:16;29339;:27;29356:9;29339:27;;;;;;;;;;;;;;;:34;29367:5;29339:34;;;;;;;;;;;;;;;;:54;;;;;;;:::i;:::-;;;;;;;;29444:16;29412:21;:28;29434:5;29412:28;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;29102:374;29075:401;28941:546;28876:618;28687:807;;;;;;:::o;17677:285::-;17821:133;17855:5;17898:27;;;17927:4;17933:2;17937:5;17875:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17821:19;:133::i;:::-;17677:285;;;;:::o;37139:277::-;37235:14;37251;37283:22;37323:12;37283:53;;37356:7;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37347:25;;37392:7;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37383:25;;37272:144;37139:277;;;:::o;40299:1669::-;40499:20;40521:25;35028:42;40563:32;;:11;:32;;;40559:167;;;35028:42;40612:32;;;40653:7;40612:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40687:7;35028:42;40679:35;;;;;;40559:167;40738:19;40801:1;40772:31;;:17;:31;;;40768:172;;;40834:7;40820:21;;40768:172;;;40874:54;40888:17;40907:11;40920:7;40874:13;:54::i;:::-;40768:172;40953:15;40970;40989:28;41004:12;40989:14;:28::i;:::-;40952:65;;;;41028:13;41051:7;41028:31;;41070:13;41093:7;41070:31;;41112:23;41138:6;:16;;;41163:4;41138:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41112:57;;41180:23;41206:6;:16;;;41231:4;41206:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41180:57;;41258:15;:28;41274:11;41258:28;;;;;;;;;;;;;;;;;;;;;;;;;41250:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41324:12;41342:11;:16;;41367:11;41381:8;41342:48;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41323:67;;;41409:7;41401:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;41457:21;41528:15;41494:6;:16;;;41519:4;41494:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;;:::i;:::-;41457:86;;41554:21;41625:15;41591:6;:16;;;41616:4;41591:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;;:::i;:::-;41554:86;;41673:13;41657;:29;41653:235;;;41718:13;41703:28;;41766:7;41746:27;;41653:235;;;41821:13;41806:28;;41869:7;41849:27;;41653:235;41923:1;41908:12;:16;41900:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40548:1420;;;;;;;;;;40299:1669;;;;;;;;;:::o;41976:1339::-;42161:20;42183;42216:19;34786:42;42284:18;;;42303:16;42321;42284:54;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42216:137;;42365:12;42379;42397:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42364:51;;;;;;;;;42452:16;42430:38;;:18;:38;;;42426:882;;;42485:20;42508:36;42530:4;42536:7;42508:21;:36::i;:::-;42485:59;;42633:1;42617:12;:17;42613:49;;42661:1;42651:7;:11;;;;:::i;:::-;42636:26;;42613:49;42692:130;42723:18;42760:16;42795:12;42692;:130::i;:::-;42677:145;;42862:12;42852:7;:22;;;;:::i;:::-;42837:37;;42470:416;42426:882;;;42907:20;42930:36;42952:4;42958:7;42930:21;:36::i;:::-;42907:59;;43055:1;43039:12;:17;43035:49;;43083:1;43073:7;:11;;;;:::i;:::-;43058:26;;43035:49;43114:130;43145:18;43182:16;43217:12;43114;:130::i;:::-;43099:145;;43284:12;43274:7;:22;;;;:::i;:::-;43259:37;;42892:416;42426:882;42205:1110;;;41976:1339;;;;;;;:::o;38966:1325::-;39176:7;39196:65;39210:16;34914:42;39248:12;39196:13;:65::i;:::-;39272;39286:16;34914:42;39324:12;39272:13;:65::i;:::-;39351:15;39368;39385:10;34914:42;39412:22;;;39453:16;39488;39523:12;39554;39585:1;39605;39633:4;35125:66;39412:268;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39350:330;;;;;;39697:16;39693:569;;;39811:1;39801:7;39786:12;:22;;;;:::i;:::-;:26;39782:201;;;39833:134;39893:10;39941:7;39926:12;:22;;;;:::i;:::-;39840:16;39833:37;;;;:134;;;;;:::i;:::-;39782:201;40079:1;40069:7;40054:12;:22;;;;:::i;:::-;:26;40050:201;;;40101:134;40161:10;40209:7;40194:12;:22;;;;:::i;:::-;40108:16;40101:37;;;;:134;;;;;:::i;:::-;40050:201;39693:569;40281:2;40274:9;;;;;38966:1325;;;;;;;:::o;11892:229::-;12029:12;12061:52;12083:6;12091:4;12097:1;12100:12;12061:21;:52::i;:::-;12054:59;;11892:229;;;;;:::o;25739:223::-;25864:37;25890:7;25899:1;25871:5;25864:25;;;;:37;;;;;:::i;:::-;25912:42;25938:7;25947:6;25919:5;25912:25;;;;:42;;;;;:::i;:::-;25739:223;;;:::o;43323:304::-;43439:7;43615:4;43606;43594:9;:16;;;;:::i;:::-;43485:105;43566:7;43554:9;:19;;;;:::i;:::-;43542:7;43533:6;:16;;;;:::i;:::-;43532:42;;;;:::i;:::-;43519:9;:56;;;;:::i;:::-;43485:15;:105::i;:::-;:126;;;;:::i;:::-;43484:135;;;;:::i;:::-;43464:155;;43323:304;;;;:::o;43956:1070::-;44120:19;44185:23;44156:52;;:25;:52;;;44152:104;;;44232:12;44225:19;;;;44152:104;44268:124;44296:25;34914:42;44369:12;44268:13;:124::i;:::-;44405:12;34786:42;44433:18;;;44470:25;44514:23;44433:119;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44405:147;;44587:1;44571:18;;:4;:18;;;;44563:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;44622:21;44660:1;44646:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44622:40;;44683:25;44673:4;44678:1;44673:7;;;;;;;;:::i;:::-;;;;;;;:35;;;;;;;;;;;44729:23;44719:4;44724:1;44719:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;34914:42;44779:34;;;44828:12;44855:1;44871:4;44898;35125:66;44779:158;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44952:1;44938:4;:11;:15;;;;:::i;:::-;44779:175;;;;;;;;:::i;:::-;;;;;;;;44765:189;;44989:1;44975:11;:15;44967:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;44141:885;;43956:1070;;;;;;:::o;13108:623::-;13278:12;13350:5;13325:21;:30;;13303:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;13440:18;13451:6;13440:10;:18::i;:::-;13432:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;13566:12;13580:23;13620:6;:11;;13640:5;13648:4;13620:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13565:88;;;;13671:52;13689:7;13698:10;13710:12;13671:17;:52::i;:::-;13664:59;;;;13108:623;;;;;;:::o;18231:707::-;18658:1;18649:5;:10;18648:62;;;;18708:1;18665:5;:15;;;18689:4;18696:7;18665:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;18648:62;18626:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;18803:127;18837:5;18880:22;;;18904:7;18913:5;18857:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18803:19;:127::i;:::-;18231:707;;;:::o;33056:335::-;33104:9;33134:1;33130;:5;33126:235;;;33156:1;33152:5;;33172:9;33192:1;33188;33184;:5;;;;:::i;:::-;:9;;;;:::i;:::-;33172:21;;33208:92;33219:1;33215;:5;33208:92;;;33245:1;33241:5;;33283:1;33278;33274;33270;:5;;;;:::i;:::-;:9;;;;:::i;:::-;33269:15;;;;:::i;:::-;33265:19;;33208:92;;;33137:174;33126:235;;;33326:1;33321;:6;33317:44;;33348:1;33344:5;;33317:44;33126:235;33056:335;;;:::o;8853:444::-;8913:4;9121:12;9245:7;9233:20;9225:28;;9288:1;9281:4;:8;9274:15;;;8853:444;;;:::o;16022:777::-;16172:12;16201:7;16197:595;;;16232:10;16225:17;;;;16197:595;16366:1;16346:10;:17;:21;16342:439;;;16609:10;16603:17;16670:15;16657:10;16653:2;16649:19;16642:44;16342:439;16752:12;16745:20;;;;;;;;;;;:::i;:::-;;;;;;;;16022:777;;;;;;:::o;24:744:1:-;131:5;156:81;172:64;229:6;172:64;:::i;:::-;156:81;:::i;:::-;147:90;;257:5;286:6;279:5;272:21;320:4;313:5;309:16;302:23;;346:6;396:3;388:4;380:6;376:17;371:3;367:27;364:36;361:143;;;415:79;;:::i;:::-;361:143;528:1;513:249;538:6;535:1;532:13;513:249;;;606:3;635:48;679:3;667:10;635:48;:::i;:::-;630:3;623:61;713:4;708:3;704:14;697:21;;747:4;742:3;738:14;731:21;;573:189;560:1;557;553:9;548:14;;513:249;;;517:14;137:631;;24:744;;;;;:::o;774:139::-;820:5;858:6;845:20;836:29;;874:33;901:5;874:33;:::i;:::-;774:139;;;;:::o;919:143::-;976:5;1007:6;1001:13;992:22;;1023:33;1050:5;1023:33;:::i;:::-;919:143;;;;:::o;1085:568::-;1158:8;1168:6;1218:3;1211:4;1203:6;1199:17;1195:27;1185:122;;1226:79;;:::i;:::-;1185:122;1339:6;1326:20;1316:30;;1369:18;1361:6;1358:30;1355:117;;;1391:79;;:::i;:::-;1355:117;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:128;;;1566:79;;:::i;:::-;1519:128;1085:568;;;;;:::o;1673:565::-;1743:8;1753:6;1803:3;1796:4;1788:6;1784:17;1780:27;1770:122;;1811:79;;:::i;:::-;1770:122;1924:6;1911:20;1901:30;;1954:18;1946:6;1943:30;1940:117;;;1976:79;;:::i;:::-;1940:117;2090:4;2082:6;2078:17;2066:29;;2144:3;2136:4;2128:6;2124:17;2114:8;2110:32;2107:41;2104:128;;;2151:79;;:::i;:::-;2104:128;1673:565;;;;;:::o;2261:385::-;2343:5;2392:3;2385:4;2377:6;2373:17;2369:27;2359:122;;2400:79;;:::i;:::-;2359:122;2510:6;2504:13;2535:105;2636:3;2628:6;2621:4;2613:6;2609:17;2535:105;:::i;:::-;2526:114;;2349:297;2261:385;;;;:::o;2652:133::-;2695:5;2733:6;2720:20;2711:29;;2749:30;2773:5;2749:30;:::i;:::-;2652:133;;;;:::o;2791:137::-;2845:5;2876:6;2870:13;2861:22;;2892:30;2916:5;2892:30;:::i;:::-;2791:137;;;;:::o;2947:552::-;3004:8;3014:6;3064:3;3057:4;3049:6;3045:17;3041:27;3031:122;;3072:79;;:::i;:::-;3031:122;3185:6;3172:20;3162:30;;3215:18;3207:6;3204:30;3201:117;;;3237:79;;:::i;:::-;3201:117;3351:4;3343:6;3339:17;3327:29;;3405:3;3397:4;3389:6;3385:17;3375:8;3371:32;3368:41;3365:128;;;3412:79;;:::i;:::-;3365:128;2947:552;;;;;:::o;3505:143::-;3562:5;3593:6;3587:13;3578:22;;3609:33;3636:5;3609:33;:::i;:::-;3505:143;;;;:::o;3654:139::-;3700:5;3738:6;3725:20;3716:29;;3754:33;3781:5;3754:33;:::i;:::-;3654:139;;;;:::o;3799:143::-;3856:5;3887:6;3881:13;3872:22;;3903:33;3930:5;3903:33;:::i;:::-;3799:143;;;;:::o;3948:141::-;4004:5;4035:6;4029:13;4020:22;;4051:32;4077:5;4051:32;:::i;:::-;3948:141;;;;:::o;4095:329::-;4154:6;4203:2;4191:9;4182:7;4178:23;4174:32;4171:119;;;4209:79;;:::i;:::-;4171:119;4329:1;4354:53;4399:7;4390:6;4379:9;4375:22;4354:53;:::i;:::-;4344:63;;4300:117;4095:329;;;;:::o;4430:351::-;4500:6;4549:2;4537:9;4528:7;4524:23;4520:32;4517:119;;;4555:79;;:::i;:::-;4517:119;4675:1;4700:64;4756:7;4747:6;4736:9;4732:22;4700:64;:::i;:::-;4690:74;;4646:128;4430:351;;;;:::o;4787:474::-;4855:6;4863;4912:2;4900:9;4891:7;4887:23;4883:32;4880:119;;;4918:79;;:::i;:::-;4880:119;5038:1;5063:53;5108:7;5099:6;5088:9;5084:22;5063:53;:::i;:::-;5053:63;;5009:117;5165:2;5191:53;5236:7;5227:6;5216:9;5212:22;5191:53;:::i;:::-;5181:63;;5136:118;4787:474;;;;;:::o;5267:1541::-;5397:6;5405;5413;5421;5429;5437;5445;5453;5461;5510:3;5498:9;5489:7;5485:23;5481:33;5478:120;;;5517:79;;:::i;:::-;5478:120;5637:1;5662:53;5707:7;5698:6;5687:9;5683:22;5662:53;:::i;:::-;5652:63;;5608:117;5764:2;5790:53;5835:7;5826:6;5815:9;5811:22;5790:53;:::i;:::-;5780:63;;5735:118;5892:2;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5863:118;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:3;6175:53;6220:7;6211:6;6200:9;6196:22;6175:53;:::i;:::-;6165:63;;6119:119;6305:3;6294:9;6290:19;6277:33;6337:18;6329:6;6326:30;6323:117;;;6359:79;;:::i;:::-;6323:117;6472:64;6528:7;6519:6;6508:9;6504:22;6472:64;:::i;:::-;6454:82;;;;6248:298;6585:3;6612:53;6657:7;6648:6;6637:9;6633:22;6612:53;:::i;:::-;6602:63;;6556:119;6714:3;6741:50;6783:7;6774:6;6763:9;6759:22;6741:50;:::i;:::-;6731:60;;6685:116;5267:1541;;;;;;;;;;;:::o;6814:468::-;6879:6;6887;6936:2;6924:9;6915:7;6911:23;6907:32;6904:119;;;6942:79;;:::i;:::-;6904:119;7062:1;7087:53;7132:7;7123:6;7112:9;7108:22;7087:53;:::i;:::-;7077:63;;7033:117;7189:2;7215:50;7257:7;7248:6;7237:9;7233:22;7215:50;:::i;:::-;7205:60;;7160:115;6814:468;;;;;:::o;7288:559::-;7374:6;7382;7431:2;7419:9;7410:7;7406:23;7402:32;7399:119;;;7437:79;;:::i;:::-;7399:119;7585:1;7574:9;7570:17;7557:31;7615:18;7607:6;7604:30;7601:117;;;7637:79;;:::i;:::-;7601:117;7750:80;7822:7;7813:6;7802:9;7798:22;7750:80;:::i;:::-;7732:98;;;;7528:312;7288:559;;;;;:::o;7853:928::-;7972:6;7980;7988;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8199:1;8188:9;8184:17;8171:31;8229:18;8221:6;8218:30;8215:117;;;8251:79;;:::i;:::-;8215:117;8364:80;8436:7;8427:6;8416:9;8412:22;8364:80;:::i;:::-;8346:98;;;;8142:312;8521:2;8510:9;8506:18;8493:32;8552:18;8544:6;8541:30;8538:117;;;8574:79;;:::i;:::-;8538:117;8687:77;8756:7;8747:6;8736:9;8732:22;8687:77;:::i;:::-;8669:95;;;;8464:310;7853:928;;;;;;;:::o;8787:554::-;8882:6;8931:2;8919:9;8910:7;8906:23;8902:32;8899:119;;;8937:79;;:::i;:::-;8899:119;9078:1;9067:9;9063:17;9057:24;9108:18;9100:6;9097:30;9094:117;;;9130:79;;:::i;:::-;9094:117;9235:89;9316:7;9307:6;9296:9;9292:22;9235:89;:::i;:::-;9225:99;;9028:306;8787:554;;;;:::o;9347:323::-;9403:6;9452:2;9440:9;9431:7;9427:23;9423:32;9420:119;;;9458:79;;:::i;:::-;9420:119;9578:1;9603:50;9645:7;9636:6;9625:9;9621:22;9603:50;:::i;:::-;9593:60;;9549:114;9347:323;;;;:::o;9676:345::-;9743:6;9792:2;9780:9;9771:7;9767:23;9763:32;9760:119;;;9798:79;;:::i;:::-;9760:119;9918:1;9943:61;9996:7;9987:6;9976:9;9972:22;9943:61;:::i;:::-;9933:71;;9889:125;9676:345;;;;:::o;10027:661::-;10114:6;10122;10130;10179:2;10167:9;10158:7;10154:23;10150:32;10147:119;;;10185:79;;:::i;:::-;10147:119;10305:1;10330:64;10386:7;10377:6;10366:9;10362:22;10330:64;:::i;:::-;10320:74;;10276:128;10443:2;10469:64;10525:7;10516:6;10505:9;10501:22;10469:64;:::i;:::-;10459:74;;10414:129;10582:2;10608:63;10663:7;10654:6;10643:9;10639:22;10608:63;:::i;:::-;10598:73;;10553:128;10027:661;;;;;:::o;10694:329::-;10753:6;10802:2;10790:9;10781:7;10777:23;10773:32;10770:119;;;10808:79;;:::i;:::-;10770:119;10928:1;10953:53;10998:7;10989:6;10978:9;10974:22;10953:53;:::i;:::-;10943:63;;10899:117;10694:329;;;;:::o;11029:351::-;11099:6;11148:2;11136:9;11127:7;11123:23;11119:32;11116:119;;;11154:79;;:::i;:::-;11116:119;11274:1;11299:64;11355:7;11346:6;11335:9;11331:22;11299:64;:::i;:::-;11289:74;;11245:128;11029:351;;;;:::o;11386:663::-;11474:6;11482;11490;11539:2;11527:9;11518:7;11514:23;11510:32;11507:119;;;11545:79;;:::i;:::-;11507:119;11665:1;11690:64;11746:7;11737:6;11726:9;11722:22;11690:64;:::i;:::-;11680:74;;11636:128;11803:2;11829:64;11885:7;11876:6;11865:9;11861:22;11829:64;:::i;:::-;11819:74;;11774:129;11942:2;11968:64;12024:7;12015:6;12004:9;12000:22;11968:64;:::i;:::-;11958:74;;11913:129;11386:663;;;;;:::o;12055:179::-;12124:10;12145:46;12187:3;12179:6;12145:46;:::i;:::-;12223:4;12218:3;12214:14;12200:28;;12055:179;;;;:::o;12240:108::-;12317:24;12335:5;12317:24;:::i;:::-;12312:3;12305:37;12240:108;;:::o;12354:118::-;12441:24;12459:5;12441:24;:::i;:::-;12436:3;12429:37;12354:118;;:::o;12508:732::-;12627:3;12656:54;12704:5;12656:54;:::i;:::-;12726:86;12805:6;12800:3;12726:86;:::i;:::-;12719:93;;12836:56;12886:5;12836:56;:::i;:::-;12915:7;12946:1;12931:284;12956:6;12953:1;12950:13;12931:284;;;13032:6;13026:13;13059:63;13118:3;13103:13;13059:63;:::i;:::-;13052:70;;13145:60;13198:6;13145:60;:::i;:::-;13135:70;;12991:224;12978:1;12975;12971:9;12966:14;;12931:284;;;12935:14;13231:3;13224:10;;12632:608;;;12508:732;;;;:::o;13246:109::-;13327:21;13342:5;13327:21;:::i;:::-;13322:3;13315:34;13246:109;;:::o;13361:373::-;13465:3;13493:38;13525:5;13493:38;:::i;:::-;13547:88;13628:6;13623:3;13547:88;:::i;:::-;13540:95;;13644:52;13689:6;13684:3;13677:4;13670:5;13666:16;13644:52;:::i;:::-;13721:6;13716:3;13712:16;13705:23;;13469:265;13361:373;;;;:::o;13740:147::-;13835:45;13874:5;13835:45;:::i;:::-;13830:3;13823:58;13740:147;;:::o;13893:364::-;13981:3;14009:39;14042:5;14009:39;:::i;:::-;14064:71;14128:6;14123:3;14064:71;:::i;:::-;14057:78;;14144:52;14189:6;14184:3;14177:4;14170:5;14166:16;14144:52;:::i;:::-;14221:29;14243:6;14221:29;:::i;:::-;14216:3;14212:39;14205:46;;13985:272;13893:364;;;;:::o;14263:366::-;14405:3;14426:67;14490:2;14485:3;14426:67;:::i;:::-;14419:74;;14502:93;14591:3;14502:93;:::i;:::-;14620:2;14615:3;14611:12;14604:19;;14263:366;;;:::o;14635:365::-;14777:3;14798:66;14862:1;14857:3;14798:66;:::i;:::-;14791:73;;14873:93;14962:3;14873:93;:::i;:::-;14991:2;14986:3;14982:12;14975:19;;14635:365;;;:::o;15006:366::-;15148:3;15169:67;15233:2;15228:3;15169:67;:::i;:::-;15162:74;;15245:93;15334:3;15245:93;:::i;:::-;15363:2;15358:3;15354:12;15347:19;;15006:366;;;:::o;15378:::-;15520:3;15541:67;15605:2;15600:3;15541:67;:::i;:::-;15534:74;;15617:93;15706:3;15617:93;:::i;:::-;15735:2;15730:3;15726:12;15719:19;;15378:366;;;:::o;15750:::-;15892:3;15913:67;15977:2;15972:3;15913:67;:::i;:::-;15906:74;;15989:93;16078:3;15989:93;:::i;:::-;16107:2;16102:3;16098:12;16091:19;;15750:366;;;:::o;16122:::-;16264:3;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16361:93;16450:3;16361:93;:::i;:::-;16479:2;16474:3;16470:12;16463:19;;16122:366;;;:::o;16494:::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16494:366;;;:::o;16866:::-;17008:3;17029:67;17093:2;17088:3;17029:67;:::i;:::-;17022:74;;17105:93;17194:3;17105:93;:::i;:::-;17223:2;17218:3;17214:12;17207:19;;16866:366;;;:::o;17238:::-;17380:3;17401:67;17465:2;17460:3;17401:67;:::i;:::-;17394:74;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17238:366;;;:::o;17610:::-;17752:3;17773:67;17837:2;17832:3;17773:67;:::i;:::-;17766:74;;17849:93;17938:3;17849:93;:::i;:::-;17967:2;17962:3;17958:12;17951:19;;17610:366;;;:::o;17982:::-;18124:3;18145:67;18209:2;18204:3;18145:67;:::i;:::-;18138:74;;18221:93;18310:3;18221:93;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;17982:366;;;:::o;18354:::-;18496:3;18517:67;18581:2;18576:3;18517:67;:::i;:::-;18510:74;;18593:93;18682:3;18593:93;:::i;:::-;18711:2;18706:3;18702:12;18695:19;;18354:366;;;:::o;18726:::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:::-;19240:3;19261:67;19325:2;19320:3;19261:67;:::i;:::-;19254:74;;19337:93;19426:3;19337:93;:::i;:::-;19455:2;19450:3;19446:12;19439:19;;19098:366;;;:::o;19470:::-;19612:3;19633:67;19697:2;19692:3;19633:67;:::i;:::-;19626:74;;19709:93;19798:3;19709:93;:::i;:::-;19827:2;19822:3;19818:12;19811:19;;19470:366;;;:::o;19842:::-;19984:3;20005:67;20069:2;20064:3;20005:67;:::i;:::-;19998:74;;20081:93;20170:3;20081:93;:::i;:::-;20199:2;20194:3;20190:12;20183:19;;19842:366;;;:::o;20214:::-;20356:3;20377:67;20441:2;20436:3;20377:67;:::i;:::-;20370:74;;20453:93;20542:3;20453:93;:::i;:::-;20571:2;20566:3;20562:12;20555:19;;20214:366;;;:::o;20586:::-;20728:3;20749:67;20813:2;20808:3;20749:67;:::i;:::-;20742:74;;20825:93;20914:3;20825:93;:::i;:::-;20943:2;20938:3;20934:12;20927:19;;20586:366;;;:::o;20958:398::-;21117:3;21138:83;21219:1;21214:3;21138:83;:::i;:::-;21131:90;;21230:93;21319:3;21230:93;:::i;:::-;21348:1;21343:3;21339:11;21332:18;;20958:398;;;:::o;21362:366::-;21504:3;21525:67;21589:2;21584:3;21525:67;:::i;:::-;21518:74;;21601:93;21690:3;21601:93;:::i;:::-;21719:2;21714:3;21710:12;21703:19;;21362:366;;;:::o;21734:::-;21876:3;21897:67;21961:2;21956:3;21897:67;:::i;:::-;21890:74;;21973:93;22062:3;21973:93;:::i;:::-;22091:2;22086:3;22082:12;22075:19;;21734:366;;;:::o;22106:::-;22248:3;22269:67;22333:2;22328:3;22269:67;:::i;:::-;22262:74;;22345:93;22434:3;22345:93;:::i;:::-;22463:2;22458:3;22454:12;22447:19;;22106:366;;;:::o;22478:::-;22620:3;22641:67;22705:2;22700:3;22641:67;:::i;:::-;22634:74;;22717:93;22806:3;22717:93;:::i;:::-;22835:2;22830:3;22826:12;22819:19;;22478:366;;;:::o;22850:118::-;22937:24;22955:5;22937:24;:::i;:::-;22932:3;22925:37;22850:118;;:::o;22974:271::-;23104:3;23126:93;23215:3;23206:6;23126:93;:::i;:::-;23119:100;;23236:3;23229:10;;22974:271;;;;:::o;23251:379::-;23435:3;23457:147;23600:3;23457:147;:::i;:::-;23450:154;;23621:3;23614:10;;23251:379;;;:::o;23636:222::-;23729:4;23767:2;23756:9;23752:18;23744:26;;23780:71;23848:1;23837:9;23833:17;23824:6;23780:71;:::i;:::-;23636:222;;;;:::o;23864:332::-;23985:4;24023:2;24012:9;24008:18;24000:26;;24036:71;24104:1;24093:9;24089:17;24080:6;24036:71;:::i;:::-;24117:72;24185:2;24174:9;24170:18;24161:6;24117:72;:::i;:::-;23864:332;;;;;:::o;24202:442::-;24351:4;24389:2;24378:9;24374:18;24366:26;;24402:71;24470:1;24459:9;24455:17;24446:6;24402:71;:::i;:::-;24483:72;24551:2;24540:9;24536:18;24527:6;24483:72;:::i;:::-;24565;24633:2;24622:9;24618:18;24609:6;24565:72;:::i;:::-;24202:442;;;;;;:::o;24650:553::-;24827:4;24865:3;24854:9;24850:19;24842:27;;24879:71;24947:1;24936:9;24932:17;24923:6;24879:71;:::i;:::-;24960:72;25028:2;25017:9;25013:18;25004:6;24960:72;:::i;:::-;25042;25110:2;25099:9;25095:18;25086:6;25042:72;:::i;:::-;25124;25192:2;25181:9;25177:18;25168:6;25124:72;:::i;:::-;24650:553;;;;;;;:::o;25209:1029::-;25514:4;25552:3;25541:9;25537:19;25529:27;;25566:71;25634:1;25623:9;25619:17;25610:6;25566:71;:::i;:::-;25647:72;25715:2;25704:9;25700:18;25691:6;25647:72;:::i;:::-;25729;25797:2;25786:9;25782:18;25773:6;25729:72;:::i;:::-;25811;25879:2;25868:9;25864:18;25855:6;25811:72;:::i;:::-;25893:81;25969:3;25958:9;25954:19;25945:6;25893:81;:::i;:::-;25984;26060:3;26049:9;26045:19;26036:6;25984:81;:::i;:::-;26075:73;26143:3;26132:9;26128:19;26119:6;26075:73;:::i;:::-;26158;26226:3;26215:9;26211:19;26202:6;26158:73;:::i;:::-;25209:1029;;;;;;;;;;;:::o;26244:332::-;26365:4;26403:2;26392:9;26388:18;26380:26;;26416:71;26484:1;26473:9;26469:17;26460:6;26416:71;:::i;:::-;26497:72;26565:2;26554:9;26550:18;26541:6;26497:72;:::i;:::-;26244:332;;;;;:::o;26582:210::-;26669:4;26707:2;26696:9;26692:18;26684:26;;26720:65;26782:1;26771:9;26767:17;26758:6;26720:65;:::i;:::-;26582:210;;;;:::o;26798:313::-;26911:4;26949:2;26938:9;26934:18;26926:26;;26998:9;26992:4;26988:20;26984:1;26973:9;26969:17;26962:47;27026:78;27099:4;27090:6;27026:78;:::i;:::-;27018:86;;26798:313;;;;:::o;27117:419::-;27283:4;27321:2;27310:9;27306:18;27298:26;;27370:9;27364:4;27360:20;27356:1;27345:9;27341:17;27334:47;27398:131;27524:4;27398:131;:::i;:::-;27390:139;;27117:419;;;:::o;27542:::-;27708:4;27746:2;27735:9;27731:18;27723:26;;27795:9;27789:4;27785:20;27781:1;27770:9;27766:17;27759:47;27823:131;27949:4;27823:131;:::i;:::-;27815:139;;27542:419;;;:::o;27967:::-;28133:4;28171:2;28160:9;28156:18;28148:26;;28220:9;28214:4;28210:20;28206:1;28195:9;28191:17;28184:47;28248:131;28374:4;28248:131;:::i;:::-;28240:139;;27967:419;;;:::o;28392:::-;28558:4;28596:2;28585:9;28581:18;28573:26;;28645:9;28639:4;28635:20;28631:1;28620:9;28616:17;28609:47;28673:131;28799:4;28673:131;:::i;:::-;28665:139;;28392:419;;;:::o;28817:::-;28983:4;29021:2;29010:9;29006:18;28998:26;;29070:9;29064:4;29060:20;29056:1;29045:9;29041:17;29034:47;29098:131;29224:4;29098:131;:::i;:::-;29090:139;;28817:419;;;:::o;29242:::-;29408:4;29446:2;29435:9;29431:18;29423:26;;29495:9;29489:4;29485:20;29481:1;29470:9;29466:17;29459:47;29523:131;29649:4;29523:131;:::i;:::-;29515:139;;29242:419;;;:::o;29667:::-;29833:4;29871:2;29860:9;29856:18;29848:26;;29920:9;29914:4;29910:20;29906:1;29895:9;29891:17;29884:47;29948:131;30074:4;29948:131;:::i;:::-;29940:139;;29667:419;;;:::o;30092:::-;30258:4;30296:2;30285:9;30281:18;30273:26;;30345:9;30339:4;30335:20;30331:1;30320:9;30316:17;30309:47;30373:131;30499:4;30373:131;:::i;:::-;30365:139;;30092:419;;;:::o;30517:::-;30683:4;30721:2;30710:9;30706:18;30698:26;;30770:9;30764:4;30760:20;30756:1;30745:9;30741:17;30734:47;30798:131;30924:4;30798:131;:::i;:::-;30790:139;;30517:419;;;:::o;30942:::-;31108:4;31146:2;31135:9;31131:18;31123:26;;31195:9;31189:4;31185:20;31181:1;31170:9;31166:17;31159:47;31223:131;31349:4;31223:131;:::i;:::-;31215:139;;30942:419;;;:::o;31367:::-;31533:4;31571:2;31560:9;31556:18;31548:26;;31620:9;31614:4;31610:20;31606:1;31595:9;31591:17;31584:47;31648:131;31774:4;31648:131;:::i;:::-;31640:139;;31367:419;;;:::o;31792:::-;31958:4;31996:2;31985:9;31981:18;31973:26;;32045:9;32039:4;32035:20;32031:1;32020:9;32016:17;32009:47;32073:131;32199:4;32073:131;:::i;:::-;32065:139;;31792:419;;;:::o;32217:::-;32383:4;32421:2;32410:9;32406:18;32398:26;;32470:9;32464:4;32460:20;32456:1;32445:9;32441:17;32434:47;32498:131;32624:4;32498:131;:::i;:::-;32490:139;;32217:419;;;:::o;32642:::-;32808:4;32846:2;32835:9;32831:18;32823:26;;32895:9;32889:4;32885:20;32881:1;32870:9;32866:17;32859:47;32923:131;33049:4;32923:131;:::i;:::-;32915:139;;32642:419;;;:::o;33067:::-;33233:4;33271:2;33260:9;33256:18;33248:26;;33320:9;33314:4;33310:20;33306:1;33295:9;33291:17;33284:47;33348:131;33474:4;33348:131;:::i;:::-;33340:139;;33067:419;;;:::o;33492:::-;33658:4;33696:2;33685:9;33681:18;33673:26;;33745:9;33739:4;33735:20;33731:1;33720:9;33716:17;33709:47;33773:131;33899:4;33773:131;:::i;:::-;33765:139;;33492:419;;;:::o;33917:::-;34083:4;34121:2;34110:9;34106:18;34098:26;;34170:9;34164:4;34160:20;34156:1;34145:9;34141:17;34134:47;34198:131;34324:4;34198:131;:::i;:::-;34190:139;;33917:419;;;:::o;34342:::-;34508:4;34546:2;34535:9;34531:18;34523:26;;34595:9;34589:4;34585:20;34581:1;34570:9;34566:17;34559:47;34623:131;34749:4;34623:131;:::i;:::-;34615:139;;34342:419;;;:::o;34767:::-;34933:4;34971:2;34960:9;34956:18;34948:26;;35020:9;35014:4;35010:20;35006:1;34995:9;34991:17;34984:47;35048:131;35174:4;35048:131;:::i;:::-;35040:139;;34767:419;;;:::o;35192:::-;35358:4;35396:2;35385:9;35381:18;35373:26;;35445:9;35439:4;35435:20;35431:1;35420:9;35416:17;35409:47;35473:131;35599:4;35473:131;:::i;:::-;35465:139;;35192:419;;;:::o;35617:::-;35783:4;35821:2;35810:9;35806:18;35798:26;;35870:9;35864:4;35860:20;35856:1;35845:9;35841:17;35834:47;35898:131;36024:4;35898:131;:::i;:::-;35890:139;;35617:419;;;:::o;36042:::-;36208:4;36246:2;36235:9;36231:18;36223:26;;36295:9;36289:4;36285:20;36281:1;36270:9;36266:17;36259:47;36323:131;36449:4;36323:131;:::i;:::-;36315:139;;36042:419;;;:::o;36467:222::-;36560:4;36598:2;36587:9;36583:18;36575:26;;36611:71;36679:1;36668:9;36664:17;36655:6;36611:71;:::i;:::-;36467:222;;;;:::o;36695:831::-;36958:4;36996:3;36985:9;36981:19;36973:27;;37010:71;37078:1;37067:9;37063:17;37054:6;37010:71;:::i;:::-;37091:80;37167:2;37156:9;37152:18;37143:6;37091:80;:::i;:::-;37218:9;37212:4;37208:20;37203:2;37192:9;37188:18;37181:48;37246:108;37349:4;37340:6;37246:108;:::i;:::-;37238:116;;37364:72;37432:2;37421:9;37417:18;37408:6;37364:72;:::i;:::-;37446:73;37514:3;37503:9;37499:19;37490:6;37446:73;:::i;:::-;36695:831;;;;;;;;:::o;37532:129::-;37566:6;37593:20;;:::i;:::-;37583:30;;37622:33;37650:4;37642:6;37622:33;:::i;:::-;37532:129;;;:::o;37667:75::-;37700:6;37733:2;37727:9;37717:19;;37667:75;:::o;37748:311::-;37825:4;37915:18;37907:6;37904:30;37901:56;;;37937:18;;:::i;:::-;37901:56;37987:4;37979:6;37975:17;37967:25;;38047:4;38041;38037:15;38029:23;;37748:311;;;:::o;38065:132::-;38132:4;38155:3;38147:11;;38185:4;38180:3;38176:14;38168:22;;38065:132;;;:::o;38203:114::-;38270:6;38304:5;38298:12;38288:22;;38203:114;;;:::o;38323:98::-;38374:6;38408:5;38402:12;38392:22;;38323:98;;;:::o;38427:99::-;38479:6;38513:5;38507:12;38497:22;;38427:99;;;:::o;38532:113::-;38602:4;38634;38629:3;38625:14;38617:22;;38532:113;;;:::o;38651:184::-;38750:11;38784:6;38779:3;38772:19;38824:4;38819:3;38815:14;38800:29;;38651:184;;;;:::o;38841:147::-;38942:11;38979:3;38964:18;;38841:147;;;;:::o;38994:169::-;39078:11;39112:6;39107:3;39100:19;39152:4;39147:3;39143:14;39128:29;;38994:169;;;;:::o;39169:305::-;39209:3;39228:20;39246:1;39228:20;:::i;:::-;39223:25;;39262:20;39280:1;39262:20;:::i;:::-;39257:25;;39416:1;39348:66;39344:74;39341:1;39338:81;39335:107;;;39422:18;;:::i;:::-;39335:107;39466:1;39463;39459:9;39452:16;;39169:305;;;;:::o;39480:185::-;39520:1;39537:20;39555:1;39537:20;:::i;:::-;39532:25;;39571:20;39589:1;39571:20;:::i;:::-;39566:25;;39610:1;39600:35;;39615:18;;:::i;:::-;39600:35;39657:1;39654;39650:9;39645:14;;39480:185;;;;:::o;39671:348::-;39711:7;39734:20;39752:1;39734:20;:::i;:::-;39729:25;;39768:20;39786:1;39768:20;:::i;:::-;39763:25;;39956:1;39888:66;39884:74;39881:1;39878:81;39873:1;39866:9;39859:17;39855:105;39852:131;;;39963:18;;:::i;:::-;39852:131;40011:1;40008;40004:9;39993:20;;39671:348;;;;:::o;40025:191::-;40065:4;40085:20;40103:1;40085:20;:::i;:::-;40080:25;;40119:20;40137:1;40119:20;:::i;:::-;40114:25;;40158:1;40155;40152:8;40149:34;;;40163:18;;:::i;:::-;40149:34;40208:1;40205;40201:9;40193:17;;40025:191;;;;:::o;40222:96::-;40259:7;40288:24;40306:5;40288:24;:::i;:::-;40277:35;;40222:96;;;:::o;40324:90::-;40358:7;40401:5;40394:13;40387:21;40376:32;;40324:90;;;:::o;40420:114::-;40457:7;40497:30;40490:5;40486:42;40475:53;;40420:114;;;:::o;40540:126::-;40577:7;40617:42;40610:5;40606:54;40595:65;;40540:126;;;:::o;40672:77::-;40709:7;40738:5;40727:16;;40672:77;;;:::o;40755:93::-;40791:7;40831:10;40824:5;40820:22;40809:33;;40755:93;;;:::o;40854:121::-;40912:9;40945:24;40963:5;40945:24;:::i;:::-;40932:37;;40854:121;;;:::o;40981:307::-;41049:1;41059:113;41073:6;41070:1;41067:13;41059:113;;;41158:1;41153:3;41149:11;41143:18;41139:1;41134:3;41130:11;41123:39;41095:2;41092:1;41088:10;41083:15;;41059:113;;;41190:6;41187:1;41184:13;41181:101;;;41270:1;41261:6;41256:3;41252:16;41245:27;41181:101;41030:258;40981:307;;;:::o;41294:281::-;41377:27;41399:4;41377:27;:::i;:::-;41369:6;41365:40;41507:6;41495:10;41492:22;41471:18;41459:10;41456:34;41453:62;41450:88;;;41518:18;;:::i;:::-;41450:88;41558:10;41554:2;41547:22;41337:238;41294:281;;:::o;41581:233::-;41620:3;41643:24;41661:5;41643:24;:::i;:::-;41634:33;;41689:66;41682:5;41679:77;41676:103;;;41759:18;;:::i;:::-;41676:103;41806:1;41799:5;41795:13;41788:20;;41581:233;;;:::o;41820:180::-;41868:77;41865:1;41858:88;41965:4;41962:1;41955:15;41989:4;41986:1;41979:15;42006:180;42054:77;42051:1;42044:88;42151:4;42148:1;42141:15;42175:4;42172:1;42165:15;42192:180;42240:77;42237:1;42230:88;42337:4;42334:1;42327:15;42361:4;42358:1;42351:15;42378:180;42426:77;42423:1;42416:88;42523:4;42520:1;42513:15;42547:4;42544:1;42537:15;42564:117;42673:1;42670;42663:12;42687:117;42796:1;42793;42786:12;42810:117;42919:1;42916;42909:12;42933:117;43042:1;43039;43032:12;43056:117;43165:1;43162;43155:12;43179:102;43220:6;43271:2;43267:7;43262:2;43255:5;43251:14;43247:28;43237:38;;43179:102;;;:::o;43287:171::-;43427:23;43423:1;43415:6;43411:14;43404:47;43287:171;:::o;43464:156::-;43604:8;43600:1;43592:6;43588:14;43581:32;43464:156;:::o;43626:174::-;43766:26;43762:1;43754:6;43750:14;43743:50;43626:174;:::o;43806:163::-;43946:15;43942:1;43934:6;43930:14;43923:39;43806:163;:::o;43975:225::-;44115:34;44111:1;44103:6;44099:14;44092:58;44184:8;44179:2;44171:6;44167:15;44160:33;43975:225;:::o;44206:245::-;44346:34;44342:1;44334:6;44330:14;44323:58;44415:28;44410:2;44402:6;44398:15;44391:53;44206:245;:::o;44457:170::-;44597:22;44593:1;44585:6;44581:14;44574:46;44457:170;:::o;44633:169::-;44773:21;44769:1;44761:6;44757:14;44750:45;44633:169;:::o;44808:179::-;44948:31;44944:1;44936:6;44932:14;44925:55;44808:179;:::o;44993:225::-;45133:34;45129:1;45121:6;45117:14;45110:58;45202:8;45197:2;45189:6;45185:15;45178:33;44993:225;:::o;45224:176::-;45364:28;45360:1;45352:6;45348:14;45341:52;45224:176;:::o;45406:161::-;45546:13;45542:1;45534:6;45530:14;45523:37;45406:161;:::o;45573:170::-;45713:22;45709:1;45701:6;45697:14;45690:46;45573:170;:::o;45749:220::-;45889:34;45885:1;45877:6;45873:14;45866:58;45958:3;45953:2;45945:6;45941:15;45934:28;45749:220;:::o;45975:182::-;46115:34;46111:1;46103:6;46099:14;46092:58;45975:182;:::o;46163:173::-;46303:25;46299:1;46291:6;46287:14;46280:49;46163:173;:::o;46342:::-;46482:25;46478:1;46470:6;46466:14;46459:49;46342:173;:::o;46521:181::-;46661:33;46657:1;46649:6;46645:14;46638:57;46521:181;:::o;46708:114::-;;:::o;46828:179::-;46968:31;46964:1;46956:6;46952:14;46945:55;46828:179;:::o;47013:167::-;47153:19;47149:1;47141:6;47137:14;47130:43;47013:167;:::o;47186:229::-;47326:34;47322:1;47314:6;47310:14;47303:58;47395:12;47390:2;47382:6;47378:15;47371:37;47186:229;:::o;47421:241::-;47561:34;47557:1;47549:6;47545:14;47538:58;47630:24;47625:2;47617:6;47613:15;47606:49;47421:241;:::o;47668:122::-;47741:24;47759:5;47741:24;:::i;:::-;47734:5;47731:35;47721:63;;47780:1;47777;47770:12;47721:63;47668:122;:::o;47796:116::-;47866:21;47881:5;47866:21;:::i;:::-;47859:5;47856:32;47846:60;;47902:1;47899;47892:12;47846:60;47796:116;:::o;47918:122::-;47991:24;48009:5;47991:24;:::i;:::-;47984:5;47981:35;47971:63;;48030:1;48027;48020:12;47971:63;47918:122;:::o;48046:::-;48119:24;48137:5;48119:24;:::i;:::-;48112:5;48109:35;48099:63;;48158:1;48155;48148:12;48099:63;48046:122;:::o;48174:120::-;48246:23;48263:5;48246:23;:::i;:::-;48239:5;48236:34;48226:62;;48284:1;48281;48274:12;48226:62;48174:120;:::o
Swarm Source
ipfs://eb18f392dac7453f6c613573e7dabb6724e8a27d4cfb2189bfa70b7c34e7046f
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.