More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 554 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 19930465 | 193 days ago | IN | 0 ETH | 0.00098999 | ||||
Withdraw | 19494678 | 254 days ago | IN | 0 ETH | 0.00452495 | ||||
Withdraw | 19125472 | 306 days ago | IN | 0 ETH | 0.00464367 | ||||
Withdraw | 19059195 | 315 days ago | IN | 0 ETH | 0.00221889 | ||||
Claim | 19059176 | 315 days ago | IN | 0 ETH | 0.00213289 | ||||
Deposit | 18990394 | 325 days ago | IN | 0 ETH | 0.00218214 | ||||
Withdraw | 18909676 | 336 days ago | IN | 0 ETH | 0.00131245 | ||||
Withdraw | 18909674 | 336 days ago | IN | 0 ETH | 0.00237777 | ||||
Withdraw | 18797619 | 352 days ago | IN | 0 ETH | 0.00737548 | ||||
Claim | 18797601 | 352 days ago | IN | 0 ETH | 0.00932822 | ||||
Claim | 18661265 | 371 days ago | IN | 0 ETH | 0.00283972 | ||||
Deposit | 18661261 | 371 days ago | IN | 0 ETH | 0.00224742 | ||||
Withdraw | 18661244 | 371 days ago | IN | 0 ETH | 0.00479741 | ||||
Withdraw | 18053001 | 456 days ago | IN | 0 ETH | 0.00253716 | ||||
Withdraw | 18003977 | 463 days ago | IN | 0 ETH | 0.00287373 | ||||
Claim | 17731666 | 501 days ago | IN | 0 ETH | 0.00300964 | ||||
Withdraw | 17342014 | 556 days ago | IN | 0 ETH | 0.00547493 | ||||
Withdraw | 16951328 | 611 days ago | IN | 0 ETH | 0.00534182 | ||||
Withdraw | 16908947 | 617 days ago | IN | 0 ETH | 0.0031648 | ||||
Withdraw | 16682852 | 649 days ago | IN | 0 ETH | 0.00536241 | ||||
Claim | 16682816 | 649 days ago | IN | 0 ETH | 0.00478066 | ||||
Set Reward Rate | 16667140 | 651 days ago | IN | 0 ETH | 0.00132128 | ||||
Withdraw | 16503433 | 674 days ago | IN | 0 ETH | 0.00264681 | ||||
Claim | 16503423 | 674 days ago | IN | 0 ETH | 0.00266328 | ||||
Claim | 16465407 | 679 days ago | IN | 0 ETH | 0.00247726 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StakingPools
Compiler Version
v0.6.10+commit.00c0fcaf
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ // Sources flattened with hardhat v2.3.0 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 @openzeppelin/contracts/utils/[email protected] /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/access/[email protected] /** * @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 () internal { 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 @openzeppelin/contracts/utils/[email protected] /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/math/[email protected] /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/utils/[email protected] /** * @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 @openzeppelin/contracts/token/ERC20/[email protected] /** * @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 SafeMath for uint256; 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).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _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/lib/FixedPointMath.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ library FixedPointMath { uint256 public constant DECIMALS = 18; uint256 public constant SCALAR = 10**DECIMALS; struct uq192x64 { uint256 x; } function fromU256(uint256 value) internal pure returns (uq192x64 memory) { uint256 x; require(value == 0 || (x = value * SCALAR) / SCALAR == value); return uq192x64(x); } function maximumValue() internal pure returns (uq192x64 memory) { return uq192x64(uint256(-1)); } function add(uq192x64 memory self, uq192x64 memory value) internal pure returns (uq192x64 memory) { uint256 x; require((x = self.x + value.x) >= self.x); return uq192x64(x); } function add(uq192x64 memory self, uint256 value) internal pure returns (uq192x64 memory) { return add(self, fromU256(value)); } function sub(uq192x64 memory self, uq192x64 memory value) internal pure returns (uq192x64 memory) { uint256 x; require((x = self.x - value.x) <= self.x); return uq192x64(x); } function sub(uq192x64 memory self, uint256 value) internal pure returns (uq192x64 memory) { return sub(self, fromU256(value)); } function mul(uq192x64 memory self, uint256 value) internal pure returns (uq192x64 memory) { uint256 x; require(value == 0 || (x = self.x * value) / value == self.x); return uq192x64(x); } function div(uq192x64 memory self, uint256 value) internal pure returns (uq192x64 memory) { require(value != 0); return uq192x64(self.x / value); } function cmp(uq192x64 memory self, uq192x64 memory value) internal pure returns (int256) { if (self.x < value.x) { return -1; } if (self.x > value.x) { return 1; } return 0; } function decode(uq192x64 memory self) internal pure returns (uint256) { return self.x / SCALAR; } } // File contracts/interfaces/IDetailedERC20.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ interface IDetailedERC20 is IERC20 { function name() external returns (string memory); function symbol() external returns (string memory); function decimals() external returns (uint8); } // File contracts/interfaces/IMintableERC20.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ interface IMintableERC20 is IDetailedERC20{ function mint(address _recipient, uint256 _amount) external; function burnFrom(address account, uint256 amount) external; function lowerHasMinted(uint256 amount) external; function lowerHasMintedIfNeeded(uint256 amount) external; } // File contracts/interfaces/IRewardVesting.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ interface IRewardVesting { function addEarning(address user, uint256 amount, uint256 durationInSecs) external; function userBalances(address user) external view returns (uint256 bal); } // File @openzeppelin/contracts/math/[email protected] /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File contracts/farm/Pool.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma experimental ABIEncoderV2; /// @title Pool /// /// @dev A library which provides the Pool data struct and associated functions. library Pool { using FixedPointMath for FixedPointMath.uq192x64; using Pool for Pool.Data; using Pool for Pool.List; using SafeMath for uint256; struct Context { uint256 rewardRate; uint256 totalRewardWeight; } struct Data { IERC20 token; uint256 totalDeposited; uint256 rewardWeight; FixedPointMath.uq192x64 accumulatedRewardWeight; // for vesting uint256 lastUpdatedBlock; bool needVesting; // for referral power calculation uint256 vestingDurationInSecs; bool onReferralBonus; uint256 totalReferralAmount; // deposited through referral FixedPointMath.uq192x64 accumulatedReferralWeight; } struct List { Data[] elements; } /// @dev Updates the pool. /// /// @param _ctx the pool context. function update(Data storage _data, Context storage _ctx) internal { _data.accumulatedRewardWeight = _data.getUpdatedAccumulatedRewardWeight(_ctx); if (_data.onReferralBonus) { _data.accumulatedReferralWeight = _data.getUpdatedAccumulatedReferralWeight(_ctx); } _data.lastUpdatedBlock = block.number; } /// @dev Gets the rate at which the pool will distribute rewards to stakers. /// /// @param _ctx the pool context. /// /// @return the reward rate of the pool in tokens per block. function getRewardRate(Data storage _data, Context storage _ctx) internal view returns (uint256) { return _ctx.rewardRate.mul(_data.rewardWeight).div(_ctx.totalRewardWeight); } /// @dev Gets the accumulated reward weight of a pool. /// /// @param _ctx the pool context. /// /// @return the accumulated reward weight. function getUpdatedAccumulatedRewardWeight(Data storage _data, Context storage _ctx) internal view returns (FixedPointMath.uq192x64 memory) { if (_data.totalDeposited == 0) { return _data.accumulatedRewardWeight; } uint256 _elapsedTime = block.number.sub(_data.lastUpdatedBlock); if (_elapsedTime == 0) { return _data.accumulatedRewardWeight; } uint256 _rewardRate = _data.getRewardRate(_ctx); uint256 _distributeAmount = _rewardRate.mul(_elapsedTime); if (_distributeAmount == 0) { return _data.accumulatedRewardWeight; } FixedPointMath.uq192x64 memory _rewardWeight = FixedPointMath.fromU256(_distributeAmount).div(_data.totalDeposited); return _data.accumulatedRewardWeight.add(_rewardWeight); } /// @dev Gets the accumulated referral weight of a pool. /// /// @param _ctx the pool context. /// /// @return the accumulated reward weight. function getUpdatedAccumulatedReferralWeight(Data storage _data, Context storage _ctx) internal view returns (FixedPointMath.uq192x64 memory) { if (_data.totalReferralAmount == 0) { return _data.accumulatedReferralWeight; } uint256 _elapsedTime = block.number.sub(_data.lastUpdatedBlock); if (_elapsedTime == 0) { return _data.accumulatedReferralWeight; } uint256 _rewardRate = _data.getRewardRate(_ctx); uint256 _distributeAmount = _rewardRate.mul(_elapsedTime); if (_distributeAmount == 0) { return _data.accumulatedReferralWeight; } FixedPointMath.uq192x64 memory _rewardWeight = FixedPointMath.fromU256(_distributeAmount).div(_data.totalReferralAmount); return _data.accumulatedReferralWeight.add(_rewardWeight); } /// @dev Adds an element to the list. /// /// @param _element the element to add. function push(List storage _self, Data memory _element) internal { _self.elements.push(_element); } /// @dev Gets an element from the list. /// /// @param _index the index in the list. /// /// @return the element at the specified index. function get(List storage _self, uint256 _index) internal view returns (Data storage) { return _self.elements[_index]; } /// @dev Gets the last element in the list. /// /// This function will revert if there are no elements in the list. ///ck /// @return the last element in the list. function last(List storage _self) internal view returns (Data storage) { return _self.elements[_self.lastIndex()]; } /// @dev Gets the index of the last element in the list. /// /// This function will revert if there are no elements in the list. /// /// @return the index of the last element. function lastIndex(List storage _self) internal view returns (uint256) { uint256 _length = _self.length(); return _length.sub(1, "Pool.List: list is empty"); } /// @dev Gets the number of elements in the list. /// /// @return the number of elements. function length(List storage _self) internal view returns (uint256) { return _self.elements.length; } } // File contracts/farm/Stake.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.6.2; /// @title Stake /// /// @dev A library which provides the Stake data struct and associated functions. library Stake { using FixedPointMath for FixedPointMath.uq192x64; using Pool for Pool.Data; using SafeMath for uint256; using Stake for Stake.Data; struct Data { uint256 totalDeposited; uint256 totalUnclaimed; FixedPointMath.uq192x64 lastAccumulatedWeight; } function update(Data storage _self, Pool.Data storage _pool, Pool.Context storage _ctx) internal { _self.totalUnclaimed = _self.getUpdatedTotalUnclaimed(_pool, _ctx); _self.lastAccumulatedWeight = _pool.getUpdatedAccumulatedRewardWeight(_ctx); } function getUpdatedTotalUnclaimed(Data storage _self, Pool.Data storage _pool, Pool.Context storage _ctx) internal view returns (uint256) { FixedPointMath.uq192x64 memory _currentAccumulatedWeight = _pool.getUpdatedAccumulatedRewardWeight(_ctx); FixedPointMath.uq192x64 memory _lastAccumulatedWeight = _self.lastAccumulatedWeight; if (_currentAccumulatedWeight.cmp(_lastAccumulatedWeight) == 0) { return _self.totalUnclaimed; } uint256 _distributedAmount = _currentAccumulatedWeight .sub(_lastAccumulatedWeight) .mul(_self.totalDeposited) .decode(); return _self.totalUnclaimed.add(_distributedAmount); } } // File contracts/farm/ReferralPower.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.6.2; /// @title ReferralPower /// /// @dev A library which provides the ReferralPower data struct and associated functions. library ReferralPower { using FixedPointMath for FixedPointMath.uq192x64; using Pool for Pool.Data; using SafeMath for uint256; using ReferralPower for ReferralPower.Data; struct Data { uint256 totalDeposited; uint256 totalReferralPower; FixedPointMath.uq192x64 lastAccumulatedReferralPower; } function update(Data storage _self, Pool.Data storage _pool, Pool.Context storage _ctx) internal { _self.totalReferralPower = _self.getUpdatedTotalReferralPower(_pool, _ctx); _self.lastAccumulatedReferralPower = _pool.getUpdatedAccumulatedReferralWeight(_ctx); } function getUpdatedTotalReferralPower(Data storage _self, Pool.Data storage _pool, Pool.Context storage _ctx) internal view returns (uint256) { FixedPointMath.uq192x64 memory _currentAccumulatedReferralPower = _pool.getUpdatedAccumulatedReferralWeight(_ctx); FixedPointMath.uq192x64 memory lastAccumulatedReferralPower = _self.lastAccumulatedReferralPower; if (_currentAccumulatedReferralPower.cmp(lastAccumulatedReferralPower) == 0) { return _self.totalReferralPower; } uint256 _distributedAmount = _currentAccumulatedReferralPower .sub(lastAccumulatedReferralPower) .mul(_self.totalDeposited) .decode(); return _self.totalReferralPower.add(_distributedAmount); } } // File contracts/farm/StakingPool.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.6.2; // import "hardhat/console.sol"; /// @dev A contract which allows users to stake to farm tokens. /// /// This contract was inspired by Chef Nomi's 'MasterChef' contract which can be found in this /// repository: https://github.com/sushiswap/sushiswap. contract StakingPools is ReentrancyGuard { using FixedPointMath for FixedPointMath.uq192x64; using Pool for Pool.Data; using Pool for Pool.List; using SafeERC20 for IERC20; using SafeMath for uint256; using Stake for Stake.Data; using ReferralPower for ReferralPower.Data; event PendingGovernanceUpdated( address pendingGovernance ); event GovernanceUpdated( address governance ); event RewardRateUpdated( uint256 rewardRate ); event PoolRewardWeightUpdated( uint256 indexed poolId, uint256 rewardWeight ); event PoolCreated( uint256 indexed poolId, IERC20 indexed token ); event TokensDeposited( address indexed user, uint256 indexed poolId, uint256 amount ); event TokensWithdrawn( address indexed user, uint256 indexed poolId, uint256 amount ); event TokensClaimed( address indexed user, uint256 indexed poolId, uint256 amount ); event PauseUpdated( bool status ); event SentinelUpdated( address sentinel ); event RewardVestingUpdated( IRewardVesting rewardVesting ); event NewReferralAdded( address referral, address referee ); /// @dev The token which will be minted as a reward for staking. IERC20 public reward; /// @dev The address of reward vesting. IRewardVesting public rewardVesting; /// @dev The address of the account which currently has administrative capabilities over this contract. address public governance; address public pendingGovernance; /// @dev The address of the account which can perform emergency activities address public sentinel; /// @dev Tokens are mapped to their pool identifier plus one. Tokens that do not have an associated pool /// will return an identifier of zero. mapping(IERC20 => uint256) public tokenPoolIds; /// @dev The context shared between the pools. Pool.Context private _ctx; /// @dev A list of all of the pools. Pool.List private _pools; /// @dev A mapping of all of the user stakes mapped first by pool and then by address. mapping(address => mapping(uint256 => Stake.Data)) private _stakes; /// @dev A mapping of all of the referral power mapped first by pool and then by address. mapping(address => mapping(uint256 => ReferralPower.Data)) private _referralPowers; /// @dev A mapping of all of the referee staker power mapped first by pool and then by referral address. mapping(address => mapping(uint256 => address)) public myReferral; /// @dev A mapping of known referrals mapped first by pool and then by address. mapping(address => mapping(uint256 => bool)) public referralIsKnown; /// @dev A mapping of referral Address mapped first by pool and then by nextReferral. mapping(uint256 => mapping(uint256 => address)) public referralList; /// @dev index record next user index mapped by pool mapping(uint256 => uint256) public nextReferral; // @dev A mapping of all of the referee staker referred by me. Mapping as by pool id and then by my address then referee array mapping(uint256 => mapping(address => address[])) public myreferees; /// @dev A flag indicating if claim should be halted bool public pause; constructor( IMintableERC20 _reward, address _governance, address _sentinel, IRewardVesting _rewardVesting ) public { require(_governance != address(0), "StakingPools: governance address cannot be 0x0"); require(_sentinel != address(0), "StakingPools: sentinel address cannot be 0x0"); reward = _reward; governance = _governance; sentinel = _sentinel; rewardVesting = _rewardVesting; } /// @dev A modifier which reverts when the caller is not the governance. modifier onlyGovernance() { require(msg.sender == governance, "StakingPools: only governance"); _; } ///@dev modifier add referral to referrallist. Users are indexed in order to keep track of modifier checkIfNewReferral(uint256 pid, address referral) { Pool.Data storage _pool = _pools.get(pid); if (_pool.onReferralBonus && referral != address(0)) { if (!referralIsKnown[referral][pid]) { referralList[pid][nextReferral[pid]] = referral; referralIsKnown[referral][pid] = true; nextReferral[pid]++; emit NewReferralAdded(referral, msg.sender); } // add referee to referral's myreferee array bool toAdd = true; address refereeAddr = msg.sender; address[] storage referees = myreferees[pid][referral]; for (uint256 i = 0; i < referees.length; i++) { if (referees[i] == refereeAddr) { toAdd = false; } } if (toAdd) { referees.push(refereeAddr); } } _; } /// @dev Sets the governance. /// /// This function can only called by the current governance. /// /// @param _pendingGovernance the new pending governance. function setPendingGovernance(address _pendingGovernance) external onlyGovernance { require(_pendingGovernance != address(0), "StakingPools: pending governance address cannot be 0x0"); pendingGovernance = _pendingGovernance; emit PendingGovernanceUpdated(_pendingGovernance); } function acceptGovernance() external { require(msg.sender == pendingGovernance, "StakingPools: only pending governance"); address _pendingGovernance = pendingGovernance; governance = _pendingGovernance; emit GovernanceUpdated(_pendingGovernance); } /// @dev Sets the distribution reward rate. /// /// This will update all of the pools. /// /// @param _rewardRate The number of tokens to distribute per second. function setRewardRate(uint256 _rewardRate) external onlyGovernance { _updatePools(); _ctx.rewardRate = _rewardRate; emit RewardRateUpdated(_rewardRate); } /// @dev Creates a new pool. function createPool(IERC20 _token, bool _needVesting, uint256 durationInSecs) external onlyGovernance returns (uint256) { require(tokenPoolIds[_token] == 0, "StakingPools: token already has a pool"); uint256 _poolId = _pools.length(); _pools.push(Pool.Data({ token: _token, totalDeposited: 0, rewardWeight: 0, accumulatedRewardWeight: FixedPointMath.uq192x64(0), lastUpdatedBlock: block.number, needVesting: _needVesting, vestingDurationInSecs: durationInSecs, onReferralBonus: false, totalReferralAmount: 0, accumulatedReferralWeight: FixedPointMath.uq192x64(0) })); tokenPoolIds[_token] = _poolId + 1; emit PoolCreated(_poolId, _token); return _poolId; } /// @dev Sets the reward weights of all of the pools. /// /// @param _rewardWeights The reward weights of all of the pools. function setRewardWeights(uint256[] calldata _rewardWeights) external onlyGovernance { require(_rewardWeights.length == _pools.length(), "StakingPools: weights length mismatch"); _updatePools(); uint256 _totalRewardWeight = _ctx.totalRewardWeight; for (uint256 _poolId = 0; _poolId < _pools.length(); _poolId++) { Pool.Data storage _pool = _pools.get(_poolId); uint256 _currentRewardWeight = _pool.rewardWeight; if (_currentRewardWeight == _rewardWeights[_poolId]) { continue; } // FIXME _totalRewardWeight = _totalRewardWeight.sub(_currentRewardWeight).add(_rewardWeights[_poolId]); _pool.rewardWeight = _rewardWeights[_poolId]; emit PoolRewardWeightUpdated(_poolId, _rewardWeights[_poolId]); } _ctx.totalRewardWeight = _totalRewardWeight; } /// @dev Stakes tokens into a pool. /// /// @param _poolId the pool to deposit tokens into. /// @param _depositAmount the amount of tokens to deposit. /// @param referral the address of referral. function deposit(uint256 _poolId, uint256 _depositAmount, address referral) external nonReentrant checkIfNewReferral(_poolId, referral) { Pool.Data storage _pool = _pools.get(_poolId); _pool.update(_ctx); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; _stake.update(_pool, _ctx); address _referral = myReferral[msg.sender][_poolId]; if (_pool.onReferralBonus) { if (referral != address(0)) { require (_referral == address(0) || _referral == referral, "referred already"); myReferral[msg.sender][_poolId] = referral; } _referral = myReferral[msg.sender][_poolId]; if (_referral != address(0)) { ReferralPower.Data storage _referralPower = _referralPowers[_referral][_poolId]; _referralPower.update(_pool, _ctx); } } _deposit(_poolId, _depositAmount, _referral); } /// @dev Withdraws staked tokens from a pool. /// /// @param _poolId The pool to withdraw staked tokens from. /// @param _withdrawAmount The number of tokens to withdraw. function withdraw(uint256 _poolId, uint256 _withdrawAmount) external nonReentrant { Pool.Data storage _pool = _pools.get(_poolId); _pool.update(_ctx); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; _stake.update(_pool, _ctx); address _referral = _pool.onReferralBonus ? myReferral[msg.sender][_poolId] : address(0); if (_pool.onReferralBonus && _referral != address(0)) { ReferralPower.Data storage _referralPower = _referralPowers[_referral][_poolId]; _referralPower.update(_pool, _ctx); } _claim(_poolId); _withdraw(_poolId, _withdrawAmount, _referral); } /// @dev Claims all rewarded tokens from a pool. /// /// @param _poolId The pool to claim rewards from. /// /// @notice use this function to claim the tokens from a corresponding pool by ID. function claim(uint256 _poolId) external nonReentrant { Pool.Data storage _pool = _pools.get(_poolId); _pool.update(_ctx); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; _stake.update(_pool, _ctx); _claim(_poolId); } /// @dev Claims all rewards from a pool and then withdraws all staked tokens. /// /// @param _poolId the pool to exit from. function exit(uint256 _poolId) external nonReentrant { Pool.Data storage _pool = _pools.get(_poolId); _pool.update(_ctx); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; _stake.update(_pool, _ctx); address _referral = _pool.onReferralBonus ? myReferral[msg.sender][_poolId] : address(0); if (_pool.onReferralBonus && _referral != address(0)) { ReferralPower.Data storage _referralPower = _referralPowers[_referral][_poolId]; _referralPower.update(_pool, _ctx); } _claim(_poolId); _withdraw(_poolId, _stake.totalDeposited, _referral); } /// @dev Gets the rate at which tokens are minted to stakers for all pools. /// /// @return the reward rate. function rewardRate() external view returns (uint256) { return _ctx.rewardRate; } /// @dev Gets the total reward weight between all the pools. /// /// @return the total reward weight. function totalRewardWeight() external view returns (uint256) { return _ctx.totalRewardWeight; } /// @dev Gets the number of pools that exist. /// /// @return the pool count. function poolCount() external view returns (uint256) { return _pools.length(); } /// @dev Gets the token a pool accepts. /// /// @param _poolId the identifier of the pool. /// /// @return the token. function getPoolToken(uint256 _poolId) external view returns (IERC20) { Pool.Data storage _pool = _pools.get(_poolId); return _pool.token; } /// @dev Gets the total amount of funds staked in a pool. /// /// @param _poolId the identifier of the pool. /// /// @return the total amount of staked or deposited tokens. function getPoolTotalDeposited(uint256 _poolId) external view returns (uint256) { Pool.Data storage _pool = _pools.get(_poolId); return _pool.totalDeposited; } /// @dev Gets the total amount of referreal power in a pool. /// /// @param _poolId the identifier of the pool. /// /// @return the total amount of referreal power in pool. function getPoolTotalReferralAmount(uint256 _poolId) external view returns (uint256) { Pool.Data storage _pool = _pools.get(_poolId); return _pool.totalReferralAmount; } /// @dev Gets the reward weight of a pool which determines how much of the total rewards it receives per block. /// /// @param _poolId the identifier of the pool. /// /// @return the pool reward weight. function getPoolRewardWeight(uint256 _poolId) external view returns (uint256) { Pool.Data storage _pool = _pools.get(_poolId); return _pool.rewardWeight; } /// @dev Gets the amount of tokens per block being distributed to stakers for a pool. /// /// @param _poolId the identifier of the pool. /// /// @return the pool reward rate. function getPoolRewardRate(uint256 _poolId) external view returns (uint256) { Pool.Data storage _pool = _pools.get(_poolId); return _pool.getRewardRate(_ctx); } /// @dev Gets the number of tokens a user has staked into a pool. /// /// @param _account The account to query. /// @param _poolId the identifier of the pool. /// /// @return the amount of deposited tokens. function getStakeTotalDeposited(address _account, uint256 _poolId) external view returns (uint256) { Stake.Data storage _stake = _stakes[_account][_poolId]; return _stake.totalDeposited; } /// @dev Gets the number of unclaimed reward tokens a user can claim from a pool. /// /// @param _account The account to get the unclaimed balance of. /// @param _poolId The pool to check for unclaimed rewards. /// /// @return the amount of unclaimed reward tokens a user has in a pool. function getStakeTotalUnclaimed(address _account, uint256 _poolId) external view returns (uint256) { Stake.Data storage _stake = _stakes[_account][_poolId]; return _stake.getUpdatedTotalUnclaimed(_pools.get(_poolId), _ctx); } /// @dev Gets address accumulated power. /// /// @param _referral The referral account to get accumulated power. /// @param _poolId The pool to check for accumulated referral power. /// /// @return the amount of accumulated power a user has in a pool. function getAccumulatedReferralPower(address _referral, uint256 _poolId) external view returns (uint256) { ReferralPower.Data storage _referralPower = _referralPowers[_referral][_poolId]; return _referralPower.getUpdatedTotalReferralPower(_pools.get(_poolId), _ctx); } /// @dev Gets address of referral address by index /// /// @param _poolId The pool to get referral address /// @param _referralIndex the index to get referral address /// /// @return the referral address in a specifgic pool with index. function getPoolReferral(uint256 _poolId, uint256 _referralIndex) external view returns (address) { return referralList[_poolId][_referralIndex]; } /// @dev Gets addressed of referee referred by a referral /// /// @param _poolId The pool to get referral address /// @param referral the address of referral to find all its referees /// /// @return the address array of referees function getPoolreferee(uint256 _poolId, address referral) external view returns(address[] memory) { return myreferees[_poolId][referral]; } /// @dev Updates all of the pools. function _updatePools() internal { for (uint256 _poolId = 0; _poolId < _pools.length(); _poolId++) { Pool.Data storage _pool = _pools.get(_poolId); _pool.update(_ctx); } } /// @dev Stakes tokens into a pool. /// /// The pool and stake MUST be updated before calling this function. /// /// @param _poolId the pool to deposit tokens into. /// @param _depositAmount the amount of tokens to deposit. /// @param _referral the address of referral. function _deposit(uint256 _poolId, uint256 _depositAmount, address _referral) internal { Pool.Data storage _pool = _pools.get(_poolId); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; _pool.totalDeposited = _pool.totalDeposited.add(_depositAmount); _stake.totalDeposited = _stake.totalDeposited.add(_depositAmount); if (_pool.onReferralBonus && _referral != address(0)) { ReferralPower.Data storage _referralPower = _referralPowers[_referral][_poolId]; _pool.totalReferralAmount = _pool.totalReferralAmount.add(_depositAmount); _referralPower.totalDeposited = _referralPower.totalDeposited.add(_depositAmount); } _pool.token.safeTransferFrom(msg.sender, address(this), _depositAmount); emit TokensDeposited(msg.sender, _poolId, _depositAmount); } /// @dev Withdraws staked tokens from a pool. /// /// The pool and stake MUST be updated before calling this function. /// /// @param _poolId The pool to withdraw staked tokens from. /// @param _withdrawAmount The number of tokens to withdraw. /// @param _referral The referral's address for reducing referral power accumulation. function _withdraw(uint256 _poolId, uint256 _withdrawAmount, address _referral) internal { Pool.Data storage _pool = _pools.get(_poolId); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; _pool.totalDeposited = _pool.totalDeposited.sub(_withdrawAmount); _stake.totalDeposited = _stake.totalDeposited.sub(_withdrawAmount); if (_pool.onReferralBonus && _referral != address(0)) { ReferralPower.Data storage _referralPower = _referralPowers[_referral][_poolId]; _pool.totalReferralAmount = _pool.totalReferralAmount.sub(_withdrawAmount); _referralPower.totalDeposited = _referralPower.totalDeposited.sub(_withdrawAmount); } _pool.token.safeTransfer(msg.sender, _withdrawAmount); emit TokensWithdrawn(msg.sender, _poolId, _withdrawAmount); } /// @dev Claims all rewarded tokens from a pool. /// /// The pool and stake MUST be updated before calling this function. /// /// @param _poolId The pool to claim rewards from. /// /// @notice use this function to claim the tokens from a corresponding pool by ID. function _claim(uint256 _poolId) internal { require(!pause, "StakingPools: emergency pause enabled"); Pool.Data storage _pool = _pools.get(_poolId); Stake.Data storage _stake = _stakes[msg.sender][_poolId]; uint256 _claimAmount = _stake.totalUnclaimed; _stake.totalUnclaimed = 0; if(_pool.needVesting){ reward.approve(address(rewardVesting),uint(-1)); rewardVesting.addEarning(msg.sender, _claimAmount, _pool.vestingDurationInSecs); } else { reward.safeTransfer(msg.sender, _claimAmount); } emit TokensClaimed(msg.sender, _poolId, _claimAmount); } /// @dev Updates the reward vesting contract /// /// @param _rewardVesting the new reward vesting contract function setRewardVesting(IRewardVesting _rewardVesting) external { require(pause && (msg.sender == governance || msg.sender == sentinel), "StakingPools: not paused, or not governance or sentinel"); rewardVesting = _rewardVesting; emit RewardVestingUpdated(_rewardVesting); } /// @dev Sets the address of the sentinel /// /// @param _sentinel address of the new sentinel function setSentinel(address _sentinel) external onlyGovernance { require(_sentinel != address(0), "StakingPools: sentinel address cannot be 0x0."); sentinel = _sentinel; emit SentinelUpdated(_sentinel); } /// @dev Sets if the contract should enter emergency pause mode. /// /// There are 2 main reasons to pause: /// 1. Need to shut down claims in case of any issues in the reward vesting contract /// 2. Need to migrate to a new reward vesting contract /// /// While this contract is paused, claim is disabled /// /// @param _pause if the contract should enter emergency pause mode. function setPause(bool _pause) external { require(msg.sender == governance || msg.sender == sentinel, "StakingPools: !(gov || sentinel)"); pause = _pause; emit PauseUpdated(_pause); } /// @dev To start referral power calculation for a pool, referral power caculation won't turn on if the onReferralBonus is not set /// /// @param _poolId the pool to start referral power accumulation function startReferralBonus(uint256 _poolId) external { require(msg.sender == governance || msg.sender == sentinel, "startReferralBonus: !(gov || sentinel)"); Pool.Data storage _pool = _pools.get(_poolId); require(_pool.onReferralBonus == false, "referral bonus already on"); _pool.onReferralBonus = true; } /// @dev To stop referral power calculation for a pool, referral power caculation won't turn on if the onReferralBonus is not set /// /// @param _poolId the pool to stop referral power accumulation function stoptReferralBonus(uint256 _poolId) external { require(msg.sender == governance || msg.sender == sentinel, "stoptReferralBonus: !(gov || sentinel)"); Pool.Data storage _pool = _pools.get(_poolId); require(_pool.onReferralBonus == true, "referral not turned on"); _pool.onReferralBonus = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IMintableERC20","name":"_reward","type":"address"},{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_sentinel","type":"address"},{"internalType":"contract IRewardVesting","name":"_rewardVesting","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"GovernanceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"referral","type":"address"},{"indexed":false,"internalType":"address","name":"referee","type":"address"}],"name":"NewReferralAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"PauseUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pendingGovernance","type":"address"}],"name":"PendingGovernanceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"}],"name":"PoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardWeight","type":"uint256"}],"name":"PoolRewardWeightUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardRate","type":"uint256"}],"name":"RewardRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IRewardVesting","name":"rewardVesting","type":"address"}],"name":"RewardVestingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sentinel","type":"address"}],"name":"SentinelUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensWithdrawn","type":"event"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"bool","name":"_needVesting","type":"bool"},{"internalType":"uint256","name":"durationInSecs","type":"uint256"}],"name":"createPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_depositAmount","type":"uint256"},{"internalType":"address","name":"referral","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_referral","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getAccumulatedReferralPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_referralIndex","type":"uint256"}],"name":"getPoolReferral","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getPoolRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getPoolRewardWeight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getPoolToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getPoolTotalDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getPoolTotalReferralAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"referral","type":"address"}],"name":"getPoolreferee","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getStakeTotalDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"getStakeTotalUnclaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"myReferral","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"myreferees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nextReferral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"referralIsKnown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"referralList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reward","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardVesting","outputs":[{"internalType":"contract IRewardVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sentinel","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pendingGovernance","type":"address"}],"name":"setPendingGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardRate","type":"uint256"}],"name":"setRewardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IRewardVesting","name":"_rewardVesting","type":"address"}],"name":"setRewardVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_rewardWeights","type":"uint256[]"}],"name":"setRewardWeights","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sentinel","type":"address"}],"name":"setSentinel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"startReferralBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"stoptReferralBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"tokenPoolIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardWeight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_withdrawAmount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200566238038062005662833981810160405281019062000037919062000278565b6001600081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620000b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000a990620003d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003b4565b60405180910390fd5b83600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620004b3565b600081519050620002448162000465565b92915050565b6000815190506200025b816200047f565b92915050565b600081519050620002728162000499565b92915050565b600080600080608085870312156200028f57600080fd5b60006200029f878288016200024a565b9450506020620002b28782880162000233565b9350506040620002c58782880162000233565b9250506060620002d88782880162000261565b91505092959194509250565b6000620002f3602c83620003f8565b91507f5374616b696e67506f6f6c733a2073656e74696e656c2061646472657373206360008301527f616e6e6f742062652030783000000000000000000000000000000000000000006020830152604082019050919050565b60006200035b602e83620003f8565b91507f5374616b696e67506f6f6c733a20676f7665726e616e6365206164647265737360008301527f2063616e6e6f74206265203078300000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620003cf81620002e4565b9050919050565b60006020820190508181036000830152620003f1816200034c565b9050919050565b600082825260208201905092915050565b6000620004168262000445565b9050919050565b60006200042a8262000409565b9050919050565b60006200043e8262000409565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620004708162000409565b81146200047c57600080fd5b50565b6200048a816200041d565b81146200049657600080fd5b50565b620004a48162000431565b8114620004b057600080fd5b50565b61519f80620004c36000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80637b0a47ee1161013b578063b50224b5116100b8578063e5f49cf81161007c578063e5f49cf814610720578063eda7c59914610750578063f39c38a014610780578063f525cb681461079e578063f58c251c146107bc5761023d565b8063b50224b514610668578063b775f10014610686578063bedb86fb146106b6578063bff7bcb5146106d2578063d64b84b5146107025761023d565b80638dbdbe6d116100ff5780638dbdbe6d146105b45780638dc9144a146105d05780638e73c93a146106005780639e447fc61461061c578063acfc5b6d146106385761023d565b80637b0a47ee146104fc5780637f8661a11461051a5780637fd115d7146105365780638456cb5914610566578063895a9e09146105845761023d565b806339664a31116101c95780635ac2f3011161018d5780635ac2f30114610420578063698b7764146104505780636ce13743146104805780636e5105c21461049c578063772336f0146104cc5761023d565b806339664a31146103565780634017601914610386578063441a3e70146103b6578063488766a2146103d25780635aa6e675146104025761023d565b8063228cb73311610210578063228cb733146102c6578063238efcbc146102e45780632e0a8b95146102ee5780632fd8a62b1461030a578063379607f51461033a5761023d565b80630361ca5a14610242578063052875331461025e57806309dac0611461028e5780630abb6035146102aa575b600080fd5b61025c60048036038101906102579190613ff3565b6107da565b005b610278600480360381019061027391906141df565b6109e1565b6040516102859190614b12565b60405180910390f35b6102a860048036038101906102a39190613f8e565b610a23565b005b6102c460048036038101906102bf9190613f8e565b610b9e565b005b6102ce610d19565b6040516102db9190614c2a565b60405180910390f35b6102ec610d3f565b005b6103086004803603810190610303919061412b565b610e71565b005b610324600480360381019061031f919061412b565b610fea565b6040516103319190614f42565b60405180910390f35b610354600480360381019061034f919061412b565b611002565b005b610370600480360381019061036b919061408a565b6110fc565b60405161037d9190614f42565b60405180910390f35b6103a0600480360381019061039b9190613fb7565b611114565b6040516103ad9190614c0f565b60405180910390f35b6103d060048036038101906103cb91906141df565b611143565b005b6103ec60048036038101906103e7919061412b565b611399565b6040516103f99190614f42565b60405180910390f35b61040a6113bf565b6040516104179190614b12565b60405180910390f35b61043a6004803603810190610435919061412b565b6113e5565b6040516104479190614f42565b60405180910390f35b61046a600480360381019061046591906140b3565b61140b565b6040516104779190614f42565b60405180910390f35b61049a6004803603810190610495919061412b565b611658565b005b6104b660048036038101906104b1919061412b565b6117d1565b6040516104c39190614f42565b60405180910390f35b6104e660048036038101906104e19190613fb7565b6117f7565b6040516104f39190614b12565b60405180910390f35b610504611839565b6040516105119190614f42565b60405180910390f35b610534600480360381019061052f919061412b565b611846565b005b610550600480360381019061054b9190613fb7565b611a9f565b60405161055d9190614f42565b60405180910390f35b61056e611b26565b60405161057b9190614c0f565b60405180910390f35b61059e6004803603810190610599919061412b565b611b39565b6040516105ab9190614f42565b60405180910390f35b6105ce60048036038101906105c9919061421b565b611b6e565b005b6105ea60048036038101906105e59190613fb7565b6122dc565b6040516105f79190614f42565b60405180910390f35b61061a60048036038101906106159190614102565b612363565b005b6106366004803603810190610631919061412b565b6124de565b005b610652600480360381019061064d9190613fb7565b6125ba565b60405161065f9190614f42565b60405180910390f35b61067061261d565b60405161067d9190614c45565b60405180910390f35b6106a0600480360381019061069b9190614190565b612643565b6040516106ad9190614b12565b60405180910390f35b6106d060048036038101906106cb9190614038565b61269b565b005b6106ec60048036038101906106e79190614154565b6127d7565b6040516106f99190614bed565b60405180910390f35b61070a6128b6565b6040516107179190614f42565b60405180910390f35b61073a600480360381019061073591906141df565b6128c3565b6040516107479190614b12565b60405180910390f35b61076a6004803603810190610765919061412b565b612912565b6040516107779190614c2a565b60405180910390f35b610788612958565b6040516107959190614b12565b60405180910390f35b6107a661297e565b6040516107b39190614f42565b60405180910390f35b6107c461298f565b6040516107d19190614b12565b60405180910390f35b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190614dc2565b60405180910390fd5b61087460096129b5565b82829050146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90614f02565b60405180910390fd5b6108c06129c6565b6000600760010154905060008090505b6108da60096129b5565b8110156109d15760006108f7826009612a1a90919063ffffffff16565b905060008160020154905085858481811061090e57fe5b905060200201358114156109235750506109c4565b61095a86868581811061093257fe5b9050602002013561094c8387612a4190919063ffffffff16565b612a9190919063ffffffff16565b935085858481811061096857fe5b905060200201358260020181905550827f4ca01fb9384991e6b301fe0ac5263aa1e34e2ea1a96dc91393e5bf3e3c34c6648787868181106109a557fe5b905060200201356040516109b99190614f42565b60405180910390a250505b80806001019150506108d0565b5080600760010181905550505050565b600e6020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90614dc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90614e22565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fdc117600f93282860144d2cd2745f8e2e15c3ca2a32b4290c30f7cd1ae7ffcb981604051610b939190614b12565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590614dc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590614c82565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fc9e2377236eab4280090ce8f2317332649736d92f00dcf20a8dd6684ec5e783981604051610d0e9190614b12565b60405180910390a150565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690614e62565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9d3e522e1e47a2f6009739342b9cc7b252a1888154e843ab55ee1c81745795ab81604051610e669190614b12565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f1a5750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614e02565b60405180910390fd5b6000610f6f826009612a1a90919063ffffffff16565b9050600015158160070160009054906101000a900460ff16151514610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090614ee2565b60405180910390fd5b60018160070160006101000a81548160ff0219169083151502179055505050565b600f6020528060005260406000206000915090505481565b60026000541415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90614f22565b60405180910390fd5b60026000819055506000611066826009612a1a90919063ffffffff16565b905061107c600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002090506110e682600783612b539092919063ffffffff16565b6110ef83612b99565b5050600160008190555050565b60066020528060005260406000206000915090505481565b600d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60026000541415611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090614f22565b60405180910390fd5b600260008190555060006111a7836009612a1a90919063ffffffff16565b90506111bd600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020905061122782600783612b539092919063ffffffff16565b60008260070160009054906101000a900460ff166112465760006112b8565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b90508260070160009054906101000a900460ff1680156113055750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611376576000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878152602001908152602001600020905061137484600783612eae9092919063ffffffff16565b505b61137f85612b99565b61138a858583612ef4565b50505060016000819055505050565b6000806113b0836009612a1a90919063ffffffff16565b90508060080154915050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806113fc836009612a1a90919063ffffffff16565b90508060020154915050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490614dc2565b60405180910390fd5b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614ea2565b60405180910390fd5b600061152b60096129b5565b90506115c26040518061014001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200160405180602001604052806000815250815260200143815260200186151581526020018581526020016000151581526020016000815260200160405180602001604052806000815250815250600961312790919063ffffffff16565b60018101600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16817f65fc0eb45954044fb55e1b01344d5d72fbfdf88e732d955f73bb7fb2bcc131e960405160405180910390a3809150509392505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117015750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790614da2565b60405180910390fd5b6000611756826009612a1a90919063ffffffff16565b9050600115158160070160009054906101000a900460ff161515146117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790614d82565b60405180910390fd5b60008160070160006101000a81548160ff0219169083151502179055505050565b6000806117e8836009612a1a90919063ffffffff16565b90508060010154915050919050565b600c6020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760000154905090565b6002600054141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614f22565b60405180910390fd5b600260008190555060006118aa826009612a1a90919063ffffffff16565b90506118c0600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020905061192a82600783612b539092919063ffffffff16565b60008260070160009054906101000a900460ff166119495760006119bb565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b90508260070160009054906101000a900460ff168015611a085750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611a79576000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000209050611a7784600783612eae9092919063ffffffff16565b505b611a8284612b99565b611a9184836000015483612ef4565b505050600160008190555050565b600080600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050611b1d611b0b846009612a1a90919063ffffffff16565b6007836132409092919063ffffffff16565b91505092915050565b601160009054906101000a900460ff1681565b600080611b50836009612a1a90919063ffffffff16565b9050611b6660078261330490919063ffffffff16565b915050919050565b60026000541415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90614f22565b60405180910390fd5b600260008190555082816000611bd4836009612a1a90919063ffffffff16565b90508060070160009054906101000a900460ff168015611c215750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611f1f57600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff16611dc45781600e60008581526020019081526020016000206000600f600087815260200190815260200160002054815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060006101000a81548160ff021916908315150217905550600f6000848152602001908152602001600020600081548092919060010191905055507fbfad7feb722a5c152032ec8cc078f5ac575c3c79d10b1f395d775f7db1c1e4538233604051611dbb929190614b64565b60405180910390a15b600060019050600033905060006010600087815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008090505b8180549050811015611eb1578273ffffffffffffffffffffffffffffffffffffffff16828281548110611e5857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ea457600093505b8080600101915050611e29565b508215611f1b5780829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050505b6000611f35876009612a1a90919063ffffffff16565b9050611f4b600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008981526020019081526020016000209050611fb582600783612b539092919063ffffffff16565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508260070160009054906101000a900460ff16156122be57600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16146121aa57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806120db57508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614cc2565b60405180910390fd5b86600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122bd576000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008b815260200190815260200160002090506122bb84600783612eae9092919063ffffffff16565b505b5b6122c989898361333f565b5050505050506001600081905550505050565b600080600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020905061235a612348846009612a1a90919063ffffffff16565b6007836135749092919063ffffffff16565b91505092915050565b601160009054906101000a900460ff1680156124245750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806124235750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b5b612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a90614ce2565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcd409fc2a693558f338316d2cd6cb79806b6ca7b834d35e3c44eb9f5a5f6bafb816040516124d39190614c45565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590614dc2565b60405180910390fd5b6125766129c6565b806007600001819055507f41d466ebd06fb97e7786086ac8b69b7eb7da798592036251291d34e9791cde01816040516125af9190614f42565b60405180910390a150565b600080600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050806000015491505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6010602052826000526040600020602052816000526040600020818154811061266857fe5b90600052602060002001600092509250509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127445750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a90614d62565b60405180910390fd5b80601160006101000a81548160ff0219169083151502179055507f77860e247ab9186dbe64e5bd0e0b93273cc4273e01818420e788f500078886f5816040516127cc9190614c0f565b60405180910390a150565b60606010600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156128a957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161285f575b5050505050905092915050565b6000600760010154905090565b6000600e6000848152602001908152602001600020600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b600080612929836009612a1a90919063ffffffff16565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061298a60096129b5565b905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081600001805490509050919050565b60008090505b6129d660096129b5565b811015612a175760006129f3826009612a1a90919063ffffffff16565b9050612a09600782612ae690919063ffffffff16565b5080806001019150506129cc565b50565b6000826000018281548110612a2b57fe5b90600052602060002090600a0201905092915050565b600082821115612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90614d02565b60405180910390fd5b818303905092915050565b600080828401905083811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614ca2565b60405180910390fd5b8091505092915050565b612af9818361363890919063ffffffff16565b82600301600082015181600001559050508160070160009054906101000a900460ff1615612b4657612b34818361376d90919063ffffffff16565b82600901600082015181600001559050505b4382600401819055505050565b612b688282856132409092919063ffffffff16565b8360010181905550612b83818361363890919063ffffffff16565b8360020160008201518160000155905050505050565b601160009054906101000a900460ff1615612be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be090614e82565b60405180910390fd5b6000612bff826009612a1a90919063ffffffff16565b90506000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050600081600101549050600082600101819055508260050160009054906101000a900460ff1615612e0b57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401612d1e929190614bc4565b602060405180830381600087803b158015612d3857600080fd5b505af1158015612d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d709190614061565b50600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f52743b1338386600601546040518463ffffffff1660e01b8152600401612dd493929190614b2d565b600060405180830381600087803b158015612dee57600080fd5b505af1158015612e02573d6000803e3d6000fd5b50505050612e59565b612e583382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166138a29092919063ffffffff16565b5b833373ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b83604051612ea09190614f42565b60405180910390a350505050565b612ec38282856135749092919063ffffffff16565b8360010181905550612ede818361376d90919063ffffffff16565b8360020160008201518160000155905050505050565b6000612f0a846009612a1a90919063ffffffff16565b90506000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000209050612f77848360010154612a4190919063ffffffff16565b8260010181905550612f96848260000154612a4190919063ffffffff16565b81600001819055508160070160009054906101000a900460ff168015612fe95750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15613082576000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008781526020019081526020016000209050613059858460080154612a4190919063ffffffff16565b8360080181905550613078858260000154612a4190919063ffffffff16565b8160000181905550505b6130d133858460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166138a29092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167fffe903c0abe6b2dbb2f3474ef43d7a3c1fca49e5a774453423ca8e1952aabffa866040516131189190614f42565b60405180910390a35050505050565b816000018190806001815401808255809150506001900390600052602060002090600a020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003016000820151816000015550506080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c0820151816006015560e08201518160070160006101000a81548160ff02191690831515021790555061010082015181600801556101208201518160090160008201518160000155505050505050565b600061324a613eb3565b61325d838561363890919063ffffffff16565b9050613267613eb3565b8560020160405180602001604052908160008201548152505090506000613297828461392890919063ffffffff16565b14156132ab578560010154925050506132fd565b60006132de6132d988600001546132cb858761398690919063ffffffff16565b6139c690919063ffffffff16565b613a14565b90506132f7818860010154612a9190919063ffffffff16565b93505050505b9392505050565b6000613337826001015461332985600201548560000154613a2f90919063ffffffff16565b613a9f90919063ffffffff16565b905092915050565b6000613355846009612a1a90919063ffffffff16565b90506000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002090506133c2848360010154612a9190919063ffffffff16565b82600101819055506133e1848260000154612a9190919063ffffffff16565b81600001819055508160070160009054906101000a900460ff1680156134345750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156134cd576000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087815260200190815260200160002090506134a4858460080154612a9190919063ffffffff16565b83600801819055506134c3858260000154612a9190919063ffffffff16565b8160000181905550505b61351e3330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613af5909392919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ffdfdcf596161b0e81e3161597d46888dcc88bd83b22dcfb341c76377ca3bbc9e866040516135659190614f42565b60405180910390a35050505050565b600061357e613eb3565b613591838561376d90919063ffffffff16565b905061359b613eb3565b85600201604051806020016040529081600082015481525050905060006135cb828461392890919063ffffffff16565b14156135df57856001015492505050613631565b600061361261360d88600001546135ff858761398690919063ffffffff16565b6139c690919063ffffffff16565b613a14565b905061362b818860010154612a9190919063ffffffff16565b93505050505b9392505050565b613640613eb3565b60008360010154141561366d57826003016040518060200160405290816000820154815250509050613767565b6000613686846004015443612a4190919063ffffffff16565b905060008114156136b25783600301604051806020016040529081600082015481525050915050613767565b60006136c7848661330490919063ffffffff16565b905060006136de8383613a2f90919063ffffffff16565b9050600081141561370c57856003016040518060200160405290816000820154815250509350505050613767565b613714613eb3565b613733876001015461372584613b7e565b613bcb90919063ffffffff16565b90506137608188600301604051806020016040529081600082015481525050613c0590919063ffffffff16565b9450505050505b92915050565b613775613eb3565b6000836008015414156137a25782600901604051806020016040529081600082015481525050905061389c565b60006137bb846004015443612a4190919063ffffffff16565b905060008114156137e7578360090160405180602001604052908160008201548152505091505061389c565b60006137fc848661330490919063ffffffff16565b905060006138138383613a2f90919063ffffffff16565b905060008114156138415785600901604051806020016040529081600082015481525050935050505061389c565b613849613eb3565b613868876008015461385a84613b7e565b613bcb90919063ffffffff16565b90506138958188600901604051806020016040529081600082015481525050613c0590919063ffffffff16565b9450505050505b92915050565b6139238363a9059cbb60e01b84846040516024016138c1929190614bc4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613c45565b505050565b6000816000015183600001511015613962577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9050613980565b81600001518360000151111561397b5760019050613980565b600090505b92915050565b61398e613eb3565b60008360000151836000015185600001510391508111156139ae57600080fd5b60405180602001604052808281525091505092915050565b6139ce613eb3565b6000808314806139f3575083600001518384866000015102925082816139f057fe5b04145b6139fc57600080fd5b60405180602001604052808281525091505092915050565b60006012600a0a826000015181613a2757fe5b049050919050565b600080831415613a425760009050613a99565b6000828402905082848281613a5357fe5b0414613a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8b90614de2565b60405180910390fd5b809150505b92915050565b6000808211613ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ada90614d42565b60405180910390fd5b818381613aec57fe5b04905092915050565b613b78846323b872dd60e01b858585604051602401613b1693929190614b8d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613c45565b50505050565b613b86613eb3565b600080831480613bab5750826012600a0a6012600a0a850292508281613ba857fe5b04145b613bb457600080fd5b604051806020016040528082815250915050919050565b613bd3613eb3565b6000821415613be157600080fd5b604051806020016040528083856000015181613bf957fe5b04815250905092915050565b613c0d613eb3565b6000836000015183600001518560000151019150811015613c2d57600080fd5b60405180602001604052808281525091505092915050565b6060613ca7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613d0c9092919063ffffffff16565b9050600081511115613d075780806020019051810190613cc79190614061565b613d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cfd90614ec2565b60405180910390fd5b5b505050565b6060613d1b8484600085613d24565b90509392505050565b606082471015613d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6090614d22565b60405180910390fd5b613d7285613e39565b613db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da890614e42565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff168587604051613ddb9190614afb565b60006040518083038185875af1925050503d8060008114613e18576040519150601f19603f3d011682016040523d82523d6000602084013e613e1d565b606091505b5091509150613e2d828286613e4c565b92505050949350505050565b600080823b905060008111915050919050565b60608315613e5c57829050613eac565b600083511115613e6f5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea39190614c60565b60405180910390fd5b9392505050565b6040518060200160405280600081525090565b600081359050613ed5816150f6565b92915050565b60008083601f840112613eed57600080fd5b8235905067ffffffffffffffff811115613f0657600080fd5b602083019150836020820283011115613f1e57600080fd5b9250929050565b600081359050613f348161510d565b92915050565b600081519050613f498161510d565b92915050565b600081359050613f5e81615124565b92915050565b600081359050613f738161513b565b92915050565b600081359050613f8881615152565b92915050565b600060208284031215613fa057600080fd5b6000613fae84828501613ec6565b91505092915050565b60008060408385031215613fca57600080fd5b6000613fd885828601613ec6565b9250506020613fe985828601613f79565b9150509250929050565b6000806020838503121561400657600080fd5b600083013567ffffffffffffffff81111561402057600080fd5b61402c85828601613edb565b92509250509250929050565b60006020828403121561404a57600080fd5b600061405884828501613f25565b91505092915050565b60006020828403121561407357600080fd5b600061408184828501613f3a565b91505092915050565b60006020828403121561409c57600080fd5b60006140aa84828501613f4f565b91505092915050565b6000806000606084860312156140c857600080fd5b60006140d686828701613f4f565b93505060206140e786828701613f25565b92505060406140f886828701613f79565b9150509250925092565b60006020828403121561411457600080fd5b600061412284828501613f64565b91505092915050565b60006020828403121561413d57600080fd5b600061414b84828501613f79565b91505092915050565b6000806040838503121561416757600080fd5b600061417585828601613f79565b925050602061418685828601613ec6565b9150509250929050565b6000806000606084860312156141a557600080fd5b60006141b386828701613f79565b93505060206141c486828701613ec6565b92505060406141d586828701613f79565b9150509250925092565b600080604083850312156141f257600080fd5b600061420085828601613f79565b925050602061421185828601613f79565b9150509250929050565b60008060006060848603121561423057600080fd5b600061423e86828701613f79565b935050602061424f86828701613f79565b925050604061426086828701613ec6565b9150509250925092565b60006142768383614291565b60208301905092915050565b61428b81615034565b82525050565b61429a81614fc8565b82525050565b6142a981614fc8565b82525050565b60006142ba82614f6d565b6142c48185614f9b565b93506142cf83614f5d565b8060005b838110156143005781516142e7888261426a565b97506142f283614f8e565b9250506001810190506142d3565b5085935050505092915050565b61431681614fda565b82525050565b600061432782614f78565b6143318185614fac565b93506143418185602086016150b2565b80840191505092915050565b61435681615046565b82525050565b6143658161506a565b82525050565b600061437682614f83565b6143808185614fb7565b93506143908185602086016150b2565b614399816150e5565b840191505092915050565b60006143b1603683614fb7565b91507f5374616b696e67506f6f6c733a2070656e64696e6720676f7665726e616e636560008301527f20616464726573732063616e6e6f7420626520307830000000000000000000006020830152604082019050919050565b6000614417601b83614fb7565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000614457601083614fb7565b91507f726566657272656420616c7265616479000000000000000000000000000000006000830152602082019050919050565b6000614497603783614fb7565b91507f5374616b696e67506f6f6c733a206e6f74207061757365642c206f72206e6f7460008301527f20676f7665726e616e6365206f722073656e74696e656c0000000000000000006020830152604082019050919050565b60006144fd601e83614fb7565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b600061453d602683614fb7565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a3601a83614fb7565b91507f536166654d6174683a206469766973696f6e206279207a65726f0000000000006000830152602082019050919050565b60006145e3602083614fb7565b91507f5374616b696e67506f6f6c733a202128676f76207c7c2073656e74696e656c296000830152602082019050919050565b6000614623601683614fb7565b91507f726566657272616c206e6f74207475726e6564206f6e000000000000000000006000830152602082019050919050565b6000614663602683614fb7565b91507f73746f7074526566657272616c426f6e75733a202128676f76207c7c2073656e60008301527f74696e656c2900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c9601d83614fb7565b91507f5374616b696e67506f6f6c733a206f6e6c7920676f7665726e616e63650000006000830152602082019050919050565b6000614709602183614fb7565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061476f602683614fb7565b91507f7374617274526566657272616c426f6e75733a202128676f76207c7c2073656e60008301527f74696e656c2900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147d5602d83614fb7565b91507f5374616b696e67506f6f6c733a2073656e74696e656c2061646472657373206360008301527f616e6e6f74206265203078302e000000000000000000000000000000000000006020830152604082019050919050565b600061483b601d83614fb7565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061487b602583614fb7565b91507f5374616b696e67506f6f6c733a206f6e6c792070656e64696e6720676f76657260008301527f6e616e63650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148e1602583614fb7565b91507f5374616b696e67506f6f6c733a20656d657267656e637920706175736520656e60008301527f61626c65640000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614947602683614fb7565b91507f5374616b696e67506f6f6c733a20746f6b656e20616c7265616479206861732060008301527f6120706f6f6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149ad602a83614fb7565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a13601983614fb7565b91507f726566657272616c20626f6e757320616c7265616479206f6e000000000000006000830152602082019050919050565b6000614a53602583614fb7565b91507f5374616b696e67506f6f6c733a2077656967687473206c656e677468206d697360008301527f6d617463680000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ab9601f83614fb7565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b614af58161502a565b82525050565b6000614b07828461431c565b915081905092915050565b6000602082019050614b2760008301846142a0565b92915050565b6000606082019050614b426000830186614282565b614b4f6020830185614aec565b614b5c6040830184614aec565b949350505050565b6000604082019050614b7960008301856142a0565b614b866020830184614282565b9392505050565b6000606082019050614ba260008301866142a0565b614baf60208301856142a0565b614bbc6040830184614aec565b949350505050565b6000604082019050614bd960008301856142a0565b614be66020830184614aec565b9392505050565b60006020820190508181036000830152614c0781846142af565b905092915050565b6000602082019050614c24600083018461430d565b92915050565b6000602082019050614c3f600083018461434d565b92915050565b6000602082019050614c5a600083018461435c565b92915050565b60006020820190508181036000830152614c7a818461436b565b905092915050565b60006020820190508181036000830152614c9b816143a4565b9050919050565b60006020820190508181036000830152614cbb8161440a565b9050919050565b60006020820190508181036000830152614cdb8161444a565b9050919050565b60006020820190508181036000830152614cfb8161448a565b9050919050565b60006020820190508181036000830152614d1b816144f0565b9050919050565b60006020820190508181036000830152614d3b81614530565b9050919050565b60006020820190508181036000830152614d5b81614596565b9050919050565b60006020820190508181036000830152614d7b816145d6565b9050919050565b60006020820190508181036000830152614d9b81614616565b9050919050565b60006020820190508181036000830152614dbb81614656565b9050919050565b60006020820190508181036000830152614ddb816146bc565b9050919050565b60006020820190508181036000830152614dfb816146fc565b9050919050565b60006020820190508181036000830152614e1b81614762565b9050919050565b60006020820190508181036000830152614e3b816147c8565b9050919050565b60006020820190508181036000830152614e5b8161482e565b9050919050565b60006020820190508181036000830152614e7b8161486e565b9050919050565b60006020820190508181036000830152614e9b816148d4565b9050919050565b60006020820190508181036000830152614ebb8161493a565b9050919050565b60006020820190508181036000830152614edb816149a0565b9050919050565b60006020820190508181036000830152614efb81614a06565b9050919050565b60006020820190508181036000830152614f1b81614a46565b9050919050565b60006020820190508181036000830152614f3b81614aac565b9050919050565b6000602082019050614f576000830184614aec565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000614fd38261500a565b9050919050565b60008115159050919050565b6000614ff182614fc8565b9050919050565b600061500382614fc8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061503f8261508e565b9050919050565b600061505182615058565b9050919050565b60006150638261500a565b9050919050565b60006150758261507c565b9050919050565b60006150878261500a565b9050919050565b6000615099826150a0565b9050919050565b60006150ab8261500a565b9050919050565b60005b838110156150d05780820151818401526020810190506150b5565b838111156150df576000848401525b50505050565b6000601f19601f8301169050919050565b6150ff81614fc8565b811461510a57600080fd5b50565b61511681614fda565b811461512157600080fd5b50565b61512d81614fe6565b811461513857600080fd5b50565b61514481614ff8565b811461514f57600080fd5b50565b61515b8161502a565b811461516657600080fd5b5056fea2646970667358221220c9c43e211a001cb1df10b308940e349b4cdf7a1a54dd4085f1cb4dc036d6119d64736f6c634300060a0033000000000000000000000000ff75ced57419bcaebe5f05254983b013b0646ef5000000000000000000000000121863db810cdafe1b431bccb20074bccccb6c3c000000000000000000000000121863db810cdafe1b431bccb20074bccccb6c3c000000000000000000000000e9c1d4422a5c777615d0805ecb637cb90863f7bb
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80637b0a47ee1161013b578063b50224b5116100b8578063e5f49cf81161007c578063e5f49cf814610720578063eda7c59914610750578063f39c38a014610780578063f525cb681461079e578063f58c251c146107bc5761023d565b8063b50224b514610668578063b775f10014610686578063bedb86fb146106b6578063bff7bcb5146106d2578063d64b84b5146107025761023d565b80638dbdbe6d116100ff5780638dbdbe6d146105b45780638dc9144a146105d05780638e73c93a146106005780639e447fc61461061c578063acfc5b6d146106385761023d565b80637b0a47ee146104fc5780637f8661a11461051a5780637fd115d7146105365780638456cb5914610566578063895a9e09146105845761023d565b806339664a31116101c95780635ac2f3011161018d5780635ac2f30114610420578063698b7764146104505780636ce13743146104805780636e5105c21461049c578063772336f0146104cc5761023d565b806339664a31146103565780634017601914610386578063441a3e70146103b6578063488766a2146103d25780635aa6e675146104025761023d565b8063228cb73311610210578063228cb733146102c6578063238efcbc146102e45780632e0a8b95146102ee5780632fd8a62b1461030a578063379607f51461033a5761023d565b80630361ca5a14610242578063052875331461025e57806309dac0611461028e5780630abb6035146102aa575b600080fd5b61025c60048036038101906102579190613ff3565b6107da565b005b610278600480360381019061027391906141df565b6109e1565b6040516102859190614b12565b60405180910390f35b6102a860048036038101906102a39190613f8e565b610a23565b005b6102c460048036038101906102bf9190613f8e565b610b9e565b005b6102ce610d19565b6040516102db9190614c2a565b60405180910390f35b6102ec610d3f565b005b6103086004803603810190610303919061412b565b610e71565b005b610324600480360381019061031f919061412b565b610fea565b6040516103319190614f42565b60405180910390f35b610354600480360381019061034f919061412b565b611002565b005b610370600480360381019061036b919061408a565b6110fc565b60405161037d9190614f42565b60405180910390f35b6103a0600480360381019061039b9190613fb7565b611114565b6040516103ad9190614c0f565b60405180910390f35b6103d060048036038101906103cb91906141df565b611143565b005b6103ec60048036038101906103e7919061412b565b611399565b6040516103f99190614f42565b60405180910390f35b61040a6113bf565b6040516104179190614b12565b60405180910390f35b61043a6004803603810190610435919061412b565b6113e5565b6040516104479190614f42565b60405180910390f35b61046a600480360381019061046591906140b3565b61140b565b6040516104779190614f42565b60405180910390f35b61049a6004803603810190610495919061412b565b611658565b005b6104b660048036038101906104b1919061412b565b6117d1565b6040516104c39190614f42565b60405180910390f35b6104e660048036038101906104e19190613fb7565b6117f7565b6040516104f39190614b12565b60405180910390f35b610504611839565b6040516105119190614f42565b60405180910390f35b610534600480360381019061052f919061412b565b611846565b005b610550600480360381019061054b9190613fb7565b611a9f565b60405161055d9190614f42565b60405180910390f35b61056e611b26565b60405161057b9190614c0f565b60405180910390f35b61059e6004803603810190610599919061412b565b611b39565b6040516105ab9190614f42565b60405180910390f35b6105ce60048036038101906105c9919061421b565b611b6e565b005b6105ea60048036038101906105e59190613fb7565b6122dc565b6040516105f79190614f42565b60405180910390f35b61061a60048036038101906106159190614102565b612363565b005b6106366004803603810190610631919061412b565b6124de565b005b610652600480360381019061064d9190613fb7565b6125ba565b60405161065f9190614f42565b60405180910390f35b61067061261d565b60405161067d9190614c45565b60405180910390f35b6106a0600480360381019061069b9190614190565b612643565b6040516106ad9190614b12565b60405180910390f35b6106d060048036038101906106cb9190614038565b61269b565b005b6106ec60048036038101906106e79190614154565b6127d7565b6040516106f99190614bed565b60405180910390f35b61070a6128b6565b6040516107179190614f42565b60405180910390f35b61073a600480360381019061073591906141df565b6128c3565b6040516107479190614b12565b60405180910390f35b61076a6004803603810190610765919061412b565b612912565b6040516107779190614c2a565b60405180910390f35b610788612958565b6040516107959190614b12565b60405180910390f35b6107a661297e565b6040516107b39190614f42565b60405180910390f35b6107c461298f565b6040516107d19190614b12565b60405180910390f35b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190614dc2565b60405180910390fd5b61087460096129b5565b82829050146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90614f02565b60405180910390fd5b6108c06129c6565b6000600760010154905060008090505b6108da60096129b5565b8110156109d15760006108f7826009612a1a90919063ffffffff16565b905060008160020154905085858481811061090e57fe5b905060200201358114156109235750506109c4565b61095a86868581811061093257fe5b9050602002013561094c8387612a4190919063ffffffff16565b612a9190919063ffffffff16565b935085858481811061096857fe5b905060200201358260020181905550827f4ca01fb9384991e6b301fe0ac5263aa1e34e2ea1a96dc91393e5bf3e3c34c6648787868181106109a557fe5b905060200201356040516109b99190614f42565b60405180910390a250505b80806001019150506108d0565b5080600760010181905550505050565b600e6020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90614dc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90614e22565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fdc117600f93282860144d2cd2745f8e2e15c3ca2a32b4290c30f7cd1ae7ffcb981604051610b939190614b12565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590614dc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590614c82565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fc9e2377236eab4280090ce8f2317332649736d92f00dcf20a8dd6684ec5e783981604051610d0e9190614b12565b60405180910390a150565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690614e62565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9d3e522e1e47a2f6009739342b9cc7b252a1888154e843ab55ee1c81745795ab81604051610e669190614b12565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f1a5750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614e02565b60405180910390fd5b6000610f6f826009612a1a90919063ffffffff16565b9050600015158160070160009054906101000a900460ff16151514610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090614ee2565b60405180910390fd5b60018160070160006101000a81548160ff0219169083151502179055505050565b600f6020528060005260406000206000915090505481565b60026000541415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90614f22565b60405180910390fd5b60026000819055506000611066826009612a1a90919063ffffffff16565b905061107c600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002090506110e682600783612b539092919063ffffffff16565b6110ef83612b99565b5050600160008190555050565b60066020528060005260406000206000915090505481565b600d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60026000541415611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090614f22565b60405180910390fd5b600260008190555060006111a7836009612a1a90919063ffffffff16565b90506111bd600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020905061122782600783612b539092919063ffffffff16565b60008260070160009054906101000a900460ff166112465760006112b8565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b90508260070160009054906101000a900460ff1680156113055750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611376576000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878152602001908152602001600020905061137484600783612eae9092919063ffffffff16565b505b61137f85612b99565b61138a858583612ef4565b50505060016000819055505050565b6000806113b0836009612a1a90919063ffffffff16565b90508060080154915050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806113fc836009612a1a90919063ffffffff16565b90508060020154915050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490614dc2565b60405180910390fd5b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614ea2565b60405180910390fd5b600061152b60096129b5565b90506115c26040518061014001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200160405180602001604052806000815250815260200143815260200186151581526020018581526020016000151581526020016000815260200160405180602001604052806000815250815250600961312790919063ffffffff16565b60018101600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16817f65fc0eb45954044fb55e1b01344d5d72fbfdf88e732d955f73bb7fb2bcc131e960405160405180910390a3809150509392505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117015750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790614da2565b60405180910390fd5b6000611756826009612a1a90919063ffffffff16565b9050600115158160070160009054906101000a900460ff161515146117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790614d82565b60405180910390fd5b60008160070160006101000a81548160ff0219169083151502179055505050565b6000806117e8836009612a1a90919063ffffffff16565b90508060010154915050919050565b600c6020528160005260406000206020528060005260406000206000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760000154905090565b6002600054141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614f22565b60405180910390fd5b600260008190555060006118aa826009612a1a90919063ffffffff16565b90506118c0600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020905061192a82600783612b539092919063ffffffff16565b60008260070160009054906101000a900460ff166119495760006119bb565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b90508260070160009054906101000a900460ff168015611a085750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611a79576000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000209050611a7784600783612eae9092919063ffffffff16565b505b611a8284612b99565b611a9184836000015483612ef4565b505050600160008190555050565b600080600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050611b1d611b0b846009612a1a90919063ffffffff16565b6007836132409092919063ffffffff16565b91505092915050565b601160009054906101000a900460ff1681565b600080611b50836009612a1a90919063ffffffff16565b9050611b6660078261330490919063ffffffff16565b915050919050565b60026000541415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90614f22565b60405180910390fd5b600260008190555082816000611bd4836009612a1a90919063ffffffff16565b90508060070160009054906101000a900460ff168015611c215750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611f1f57600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff16611dc45781600e60008581526020019081526020016000206000600f600087815260200190815260200160002054815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060006101000a81548160ff021916908315150217905550600f6000848152602001908152602001600020600081548092919060010191905055507fbfad7feb722a5c152032ec8cc078f5ac575c3c79d10b1f395d775f7db1c1e4538233604051611dbb929190614b64565b60405180910390a15b600060019050600033905060006010600087815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008090505b8180549050811015611eb1578273ffffffffffffffffffffffffffffffffffffffff16828281548110611e5857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ea457600093505b8080600101915050611e29565b508215611f1b5780829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050505b6000611f35876009612a1a90919063ffffffff16565b9050611f4b600782612ae690919063ffffffff16565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008981526020019081526020016000209050611fb582600783612b539092919063ffffffff16565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508260070160009054906101000a900460ff16156122be57600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16146121aa57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806120db57508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614cc2565b60405180910390fd5b86600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146122bd576000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008b815260200190815260200160002090506122bb84600783612eae9092919063ffffffff16565b505b5b6122c989898361333f565b5050505050506001600081905550505050565b600080600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020905061235a612348846009612a1a90919063ffffffff16565b6007836135749092919063ffffffff16565b91505092915050565b601160009054906101000a900460ff1680156124245750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806124235750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b5b612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a90614ce2565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcd409fc2a693558f338316d2cd6cb79806b6ca7b834d35e3c44eb9f5a5f6bafb816040516124d39190614c45565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590614dc2565b60405180910390fd5b6125766129c6565b806007600001819055507f41d466ebd06fb97e7786086ac8b69b7eb7da798592036251291d34e9791cde01816040516125af9190614f42565b60405180910390a150565b600080600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050806000015491505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6010602052826000526040600020602052816000526040600020818154811061266857fe5b90600052602060002001600092509250509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127445750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a90614d62565b60405180910390fd5b80601160006101000a81548160ff0219169083151502179055507f77860e247ab9186dbe64e5bd0e0b93273cc4273e01818420e788f500078886f5816040516127cc9190614c0f565b60405180910390a150565b60606010600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156128a957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161285f575b5050505050905092915050565b6000600760010154905090565b6000600e6000848152602001908152602001600020600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905092915050565b600080612929836009612a1a90919063ffffffff16565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061298a60096129b5565b905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081600001805490509050919050565b60008090505b6129d660096129b5565b811015612a175760006129f3826009612a1a90919063ffffffff16565b9050612a09600782612ae690919063ffffffff16565b5080806001019150506129cc565b50565b6000826000018281548110612a2b57fe5b90600052602060002090600a0201905092915050565b600082821115612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90614d02565b60405180910390fd5b818303905092915050565b600080828401905083811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614ca2565b60405180910390fd5b8091505092915050565b612af9818361363890919063ffffffff16565b82600301600082015181600001559050508160070160009054906101000a900460ff1615612b4657612b34818361376d90919063ffffffff16565b82600901600082015181600001559050505b4382600401819055505050565b612b688282856132409092919063ffffffff16565b8360010181905550612b83818361363890919063ffffffff16565b8360020160008201518160000155905050505050565b601160009054906101000a900460ff1615612be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be090614e82565b60405180910390fd5b6000612bff826009612a1a90919063ffffffff16565b90506000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050600081600101549050600082600101819055508260050160009054906101000a900460ff1615612e0b57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401612d1e929190614bc4565b602060405180830381600087803b158015612d3857600080fd5b505af1158015612d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d709190614061565b50600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f52743b1338386600601546040518463ffffffff1660e01b8152600401612dd493929190614b2d565b600060405180830381600087803b158015612dee57600080fd5b505af1158015612e02573d6000803e3d6000fd5b50505050612e59565b612e583382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166138a29092919063ffffffff16565b5b833373ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b83604051612ea09190614f42565b60405180910390a350505050565b612ec38282856135749092919063ffffffff16565b8360010181905550612ede818361376d90919063ffffffff16565b8360020160008201518160000155905050505050565b6000612f0a846009612a1a90919063ffffffff16565b90506000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000209050612f77848360010154612a4190919063ffffffff16565b8260010181905550612f96848260000154612a4190919063ffffffff16565b81600001819055508160070160009054906101000a900460ff168015612fe95750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15613082576000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008781526020019081526020016000209050613059858460080154612a4190919063ffffffff16565b8360080181905550613078858260000154612a4190919063ffffffff16565b8160000181905550505b6130d133858460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166138a29092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167fffe903c0abe6b2dbb2f3474ef43d7a3c1fca49e5a774453423ca8e1952aabffa866040516131189190614f42565b60405180910390a35050505050565b816000018190806001815401808255809150506001900390600052602060002090600a020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003016000820151816000015550506080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c0820151816006015560e08201518160070160006101000a81548160ff02191690831515021790555061010082015181600801556101208201518160090160008201518160000155505050505050565b600061324a613eb3565b61325d838561363890919063ffffffff16565b9050613267613eb3565b8560020160405180602001604052908160008201548152505090506000613297828461392890919063ffffffff16565b14156132ab578560010154925050506132fd565b60006132de6132d988600001546132cb858761398690919063ffffffff16565b6139c690919063ffffffff16565b613a14565b90506132f7818860010154612a9190919063ffffffff16565b93505050505b9392505050565b6000613337826001015461332985600201548560000154613a2f90919063ffffffff16565b613a9f90919063ffffffff16565b905092915050565b6000613355846009612a1a90919063ffffffff16565b90506000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002090506133c2848360010154612a9190919063ffffffff16565b82600101819055506133e1848260000154612a9190919063ffffffff16565b81600001819055508160070160009054906101000a900460ff1680156134345750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156134cd576000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087815260200190815260200160002090506134a4858460080154612a9190919063ffffffff16565b83600801819055506134c3858260000154612a9190919063ffffffff16565b8160000181905550505b61351e3330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613af5909392919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ffdfdcf596161b0e81e3161597d46888dcc88bd83b22dcfb341c76377ca3bbc9e866040516135659190614f42565b60405180910390a35050505050565b600061357e613eb3565b613591838561376d90919063ffffffff16565b905061359b613eb3565b85600201604051806020016040529081600082015481525050905060006135cb828461392890919063ffffffff16565b14156135df57856001015492505050613631565b600061361261360d88600001546135ff858761398690919063ffffffff16565b6139c690919063ffffffff16565b613a14565b905061362b818860010154612a9190919063ffffffff16565b93505050505b9392505050565b613640613eb3565b60008360010154141561366d57826003016040518060200160405290816000820154815250509050613767565b6000613686846004015443612a4190919063ffffffff16565b905060008114156136b25783600301604051806020016040529081600082015481525050915050613767565b60006136c7848661330490919063ffffffff16565b905060006136de8383613a2f90919063ffffffff16565b9050600081141561370c57856003016040518060200160405290816000820154815250509350505050613767565b613714613eb3565b613733876001015461372584613b7e565b613bcb90919063ffffffff16565b90506137608188600301604051806020016040529081600082015481525050613c0590919063ffffffff16565b9450505050505b92915050565b613775613eb3565b6000836008015414156137a25782600901604051806020016040529081600082015481525050905061389c565b60006137bb846004015443612a4190919063ffffffff16565b905060008114156137e7578360090160405180602001604052908160008201548152505091505061389c565b60006137fc848661330490919063ffffffff16565b905060006138138383613a2f90919063ffffffff16565b905060008114156138415785600901604051806020016040529081600082015481525050935050505061389c565b613849613eb3565b613868876008015461385a84613b7e565b613bcb90919063ffffffff16565b90506138958188600901604051806020016040529081600082015481525050613c0590919063ffffffff16565b9450505050505b92915050565b6139238363a9059cbb60e01b84846040516024016138c1929190614bc4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613c45565b505050565b6000816000015183600001511015613962577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9050613980565b81600001518360000151111561397b5760019050613980565b600090505b92915050565b61398e613eb3565b60008360000151836000015185600001510391508111156139ae57600080fd5b60405180602001604052808281525091505092915050565b6139ce613eb3565b6000808314806139f3575083600001518384866000015102925082816139f057fe5b04145b6139fc57600080fd5b60405180602001604052808281525091505092915050565b60006012600a0a826000015181613a2757fe5b049050919050565b600080831415613a425760009050613a99565b6000828402905082848281613a5357fe5b0414613a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8b90614de2565b60405180910390fd5b809150505b92915050565b6000808211613ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ada90614d42565b60405180910390fd5b818381613aec57fe5b04905092915050565b613b78846323b872dd60e01b858585604051602401613b1693929190614b8d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613c45565b50505050565b613b86613eb3565b600080831480613bab5750826012600a0a6012600a0a850292508281613ba857fe5b04145b613bb457600080fd5b604051806020016040528082815250915050919050565b613bd3613eb3565b6000821415613be157600080fd5b604051806020016040528083856000015181613bf957fe5b04815250905092915050565b613c0d613eb3565b6000836000015183600001518560000151019150811015613c2d57600080fd5b60405180602001604052808281525091505092915050565b6060613ca7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613d0c9092919063ffffffff16565b9050600081511115613d075780806020019051810190613cc79190614061565b613d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cfd90614ec2565b60405180910390fd5b5b505050565b6060613d1b8484600085613d24565b90509392505050565b606082471015613d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6090614d22565b60405180910390fd5b613d7285613e39565b613db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da890614e42565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff168587604051613ddb9190614afb565b60006040518083038185875af1925050503d8060008114613e18576040519150601f19603f3d011682016040523d82523d6000602084013e613e1d565b606091505b5091509150613e2d828286613e4c565b92505050949350505050565b600080823b905060008111915050919050565b60608315613e5c57829050613eac565b600083511115613e6f5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea39190614c60565b60405180910390fd5b9392505050565b6040518060200160405280600081525090565b600081359050613ed5816150f6565b92915050565b60008083601f840112613eed57600080fd5b8235905067ffffffffffffffff811115613f0657600080fd5b602083019150836020820283011115613f1e57600080fd5b9250929050565b600081359050613f348161510d565b92915050565b600081519050613f498161510d565b92915050565b600081359050613f5e81615124565b92915050565b600081359050613f738161513b565b92915050565b600081359050613f8881615152565b92915050565b600060208284031215613fa057600080fd5b6000613fae84828501613ec6565b91505092915050565b60008060408385031215613fca57600080fd5b6000613fd885828601613ec6565b9250506020613fe985828601613f79565b9150509250929050565b6000806020838503121561400657600080fd5b600083013567ffffffffffffffff81111561402057600080fd5b61402c85828601613edb565b92509250509250929050565b60006020828403121561404a57600080fd5b600061405884828501613f25565b91505092915050565b60006020828403121561407357600080fd5b600061408184828501613f3a565b91505092915050565b60006020828403121561409c57600080fd5b60006140aa84828501613f4f565b91505092915050565b6000806000606084860312156140c857600080fd5b60006140d686828701613f4f565b93505060206140e786828701613f25565b92505060406140f886828701613f79565b9150509250925092565b60006020828403121561411457600080fd5b600061412284828501613f64565b91505092915050565b60006020828403121561413d57600080fd5b600061414b84828501613f79565b91505092915050565b6000806040838503121561416757600080fd5b600061417585828601613f79565b925050602061418685828601613ec6565b9150509250929050565b6000806000606084860312156141a557600080fd5b60006141b386828701613f79565b93505060206141c486828701613ec6565b92505060406141d586828701613f79565b9150509250925092565b600080604083850312156141f257600080fd5b600061420085828601613f79565b925050602061421185828601613f79565b9150509250929050565b60008060006060848603121561423057600080fd5b600061423e86828701613f79565b935050602061424f86828701613f79565b925050604061426086828701613ec6565b9150509250925092565b60006142768383614291565b60208301905092915050565b61428b81615034565b82525050565b61429a81614fc8565b82525050565b6142a981614fc8565b82525050565b60006142ba82614f6d565b6142c48185614f9b565b93506142cf83614f5d565b8060005b838110156143005781516142e7888261426a565b97506142f283614f8e565b9250506001810190506142d3565b5085935050505092915050565b61431681614fda565b82525050565b600061432782614f78565b6143318185614fac565b93506143418185602086016150b2565b80840191505092915050565b61435681615046565b82525050565b6143658161506a565b82525050565b600061437682614f83565b6143808185614fb7565b93506143908185602086016150b2565b614399816150e5565b840191505092915050565b60006143b1603683614fb7565b91507f5374616b696e67506f6f6c733a2070656e64696e6720676f7665726e616e636560008301527f20616464726573732063616e6e6f7420626520307830000000000000000000006020830152604082019050919050565b6000614417601b83614fb7565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000614457601083614fb7565b91507f726566657272656420616c7265616479000000000000000000000000000000006000830152602082019050919050565b6000614497603783614fb7565b91507f5374616b696e67506f6f6c733a206e6f74207061757365642c206f72206e6f7460008301527f20676f7665726e616e6365206f722073656e74696e656c0000000000000000006020830152604082019050919050565b60006144fd601e83614fb7565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b600061453d602683614fb7565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a3601a83614fb7565b91507f536166654d6174683a206469766973696f6e206279207a65726f0000000000006000830152602082019050919050565b60006145e3602083614fb7565b91507f5374616b696e67506f6f6c733a202128676f76207c7c2073656e74696e656c296000830152602082019050919050565b6000614623601683614fb7565b91507f726566657272616c206e6f74207475726e6564206f6e000000000000000000006000830152602082019050919050565b6000614663602683614fb7565b91507f73746f7074526566657272616c426f6e75733a202128676f76207c7c2073656e60008301527f74696e656c2900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c9601d83614fb7565b91507f5374616b696e67506f6f6c733a206f6e6c7920676f7665726e616e63650000006000830152602082019050919050565b6000614709602183614fb7565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061476f602683614fb7565b91507f7374617274526566657272616c426f6e75733a202128676f76207c7c2073656e60008301527f74696e656c2900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147d5602d83614fb7565b91507f5374616b696e67506f6f6c733a2073656e74696e656c2061646472657373206360008301527f616e6e6f74206265203078302e000000000000000000000000000000000000006020830152604082019050919050565b600061483b601d83614fb7565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061487b602583614fb7565b91507f5374616b696e67506f6f6c733a206f6e6c792070656e64696e6720676f76657260008301527f6e616e63650000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148e1602583614fb7565b91507f5374616b696e67506f6f6c733a20656d657267656e637920706175736520656e60008301527f61626c65640000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614947602683614fb7565b91507f5374616b696e67506f6f6c733a20746f6b656e20616c7265616479206861732060008301527f6120706f6f6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149ad602a83614fb7565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a13601983614fb7565b91507f726566657272616c20626f6e757320616c7265616479206f6e000000000000006000830152602082019050919050565b6000614a53602583614fb7565b91507f5374616b696e67506f6f6c733a2077656967687473206c656e677468206d697360008301527f6d617463680000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ab9601f83614fb7565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b614af58161502a565b82525050565b6000614b07828461431c565b915081905092915050565b6000602082019050614b2760008301846142a0565b92915050565b6000606082019050614b426000830186614282565b614b4f6020830185614aec565b614b5c6040830184614aec565b949350505050565b6000604082019050614b7960008301856142a0565b614b866020830184614282565b9392505050565b6000606082019050614ba260008301866142a0565b614baf60208301856142a0565b614bbc6040830184614aec565b949350505050565b6000604082019050614bd960008301856142a0565b614be66020830184614aec565b9392505050565b60006020820190508181036000830152614c0781846142af565b905092915050565b6000602082019050614c24600083018461430d565b92915050565b6000602082019050614c3f600083018461434d565b92915050565b6000602082019050614c5a600083018461435c565b92915050565b60006020820190508181036000830152614c7a818461436b565b905092915050565b60006020820190508181036000830152614c9b816143a4565b9050919050565b60006020820190508181036000830152614cbb8161440a565b9050919050565b60006020820190508181036000830152614cdb8161444a565b9050919050565b60006020820190508181036000830152614cfb8161448a565b9050919050565b60006020820190508181036000830152614d1b816144f0565b9050919050565b60006020820190508181036000830152614d3b81614530565b9050919050565b60006020820190508181036000830152614d5b81614596565b9050919050565b60006020820190508181036000830152614d7b816145d6565b9050919050565b60006020820190508181036000830152614d9b81614616565b9050919050565b60006020820190508181036000830152614dbb81614656565b9050919050565b60006020820190508181036000830152614ddb816146bc565b9050919050565b60006020820190508181036000830152614dfb816146fc565b9050919050565b60006020820190508181036000830152614e1b81614762565b9050919050565b60006020820190508181036000830152614e3b816147c8565b9050919050565b60006020820190508181036000830152614e5b8161482e565b9050919050565b60006020820190508181036000830152614e7b8161486e565b9050919050565b60006020820190508181036000830152614e9b816148d4565b9050919050565b60006020820190508181036000830152614ebb8161493a565b9050919050565b60006020820190508181036000830152614edb816149a0565b9050919050565b60006020820190508181036000830152614efb81614a06565b9050919050565b60006020820190508181036000830152614f1b81614a46565b9050919050565b60006020820190508181036000830152614f3b81614aac565b9050919050565b6000602082019050614f576000830184614aec565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000614fd38261500a565b9050919050565b60008115159050919050565b6000614ff182614fc8565b9050919050565b600061500382614fc8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061503f8261508e565b9050919050565b600061505182615058565b9050919050565b60006150638261500a565b9050919050565b60006150758261507c565b9050919050565b60006150878261500a565b9050919050565b6000615099826150a0565b9050919050565b60006150ab8261500a565b9050919050565b60005b838110156150d05780820151818401526020810190506150b5565b838111156150df576000848401525b50505050565b6000601f19601f8301169050919050565b6150ff81614fc8565b811461510a57600080fd5b50565b61511681614fda565b811461512157600080fd5b50565b61512d81614fe6565b811461513857600080fd5b50565b61514481614ff8565b811461514f57600080fd5b50565b61515b8161502a565b811461516657600080fd5b5056fea2646970667358221220c9c43e211a001cb1df10b308940e349b4cdf7a1a54dd4085f1cb4dc036d6119d64736f6c634300060a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ff75ced57419bcaebe5f05254983b013b0646ef5000000000000000000000000121863db810cdafe1b431bccb20074bccccb6c3c000000000000000000000000121863db810cdafe1b431bccb20074bccccb6c3c000000000000000000000000e9c1d4422a5c777615d0805ecb637cb90863f7bb
-----Decoded View---------------
Arg [0] : _reward (address): 0xFF75CEd57419bcaEBe5F05254983b013B0646eF5
Arg [1] : _governance (address): 0x121863dB810cdafE1B431BCCB20074bcCCCb6C3c
Arg [2] : _sentinel (address): 0x121863dB810cdafE1B431BCCB20074bcCCCb6C3c
Arg [3] : _rewardVesting (address): 0xE9c1d4422a5c777615d0805ecb637cB90863f7Bb
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ff75ced57419bcaebe5f05254983b013b0646ef5
Arg [1] : 000000000000000000000000121863db810cdafe1b431bccb20074bccccb6c3c
Arg [2] : 000000000000000000000000121863db810cdafe1b431bccb20074bccccb6c3c
Arg [3] : 000000000000000000000000e9c1d4422a5c777615d0805ecb637cb90863f7bb
Deployed Bytecode Sourcemap
44892:21740:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51854:852;;;;;;;;;;;;;;;;:::i;:::-;;47737:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64672:229;;;;;;;;;;;;;;;;:::i;:::-;;49966:297;;;;;;;;;;;;;;;;:::i;:::-;;46214:20;;;:::i;:::-;;;;;;;;;;;;;;;;50269:275;;;:::i;:::-;;65743:338;;;;;;;;;;;;;;;;:::i;:::-;;47867:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;54880:261;;;;;;;;;;;;;;;;:::i;:::-;;46762:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47574:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;54030:638;;;;;;;;;;;;;;;;:::i;:::-;;57361:182;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46433:25;;;:::i;:::-;;;;;;;;;;;;;;;;57767:168;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;50941:774;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;66294:335;;;;;;;;;;;;;;;;:::i;:::-;;56995:172;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47419:65;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;56019:89;;;:::i;:::-;;;;;;;;;;;;;;;;55280:615;;;;;;;;;;;;;;;;:::i;:::-;;59049:238;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48181:17;;;:::i;:::-;;;;;;;;;;;;;;;;58131:173;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;52936:895;;;;;;;;;;;;;;;;:::i;:::-;;59564:281;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64269:293;;;;;;;;;;;;;;;;:::i;:::-;;50726:177;;;;;;;;;;;;;;;;:::i;:::-;;58536:201;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46284:35;;;:::i;:::-;;;;;;;;;;;;;;;;48051:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;65321:207;;;;;;;;;;;;;;;;:::i;:::-;;60514:148;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;56225:103;;;:::i;:::-;;;;;;;;;;;;;;;;60106:155;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;56648:153;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46465:32;;;:::i;:::-;;;;;;;;;;;;;;;;56421:88;;;:::i;:::-;;;;;;;;;;;;;;;;46582:23;;;:::i;:::-;;;;;;;;;;;;;;;;51854:852;48785:10;;;;;;;;;;;48771:24;;:10;:24;;;48763:66;;;;;;;;;;;;;;;;;;;;;;51979:15:::1;:6;:13;:15::i;:::-;51954:14;;:21;;:40;51946:90;;;;;;;;;;;;;;;;;;;;;;52045:14;:12;:14::i;:::-;52068:26;52097:4;:22;;;52068:51;;52131:15;52149:1:::0;52131:19:::1;;52126:523;52162:15;:6;:13;:15::i;:::-;52152:7;:25;52126:523;;;52199:23;52225:19;52236:7;52225:6;:10;;:19;;;;:::i;:::-;52199:45;;52255:28;52286:5;:18;;;52255:49;;52341:14;;52356:7;52341:23;;;;;;;;;;;;;52317:20;:47;52313:82;;;52377:8;;;;52313:82;52442:73;52491:14;;52506:7;52491:23;;;;;;;;;;;;;52442:44;52465:20;52442:18;:22;;:44;;;;:::i;:::-;:48;;:73;;;;:::i;:::-;52421:94;;52545:14;;52560:7;52545:23;;;;;;;;;;;;;52524:5;:18;;:44;;;;52608:7;52584:57;52617:14;;52632:7;52617:23;;;;;;;;;;;;;52584:57;;;;;;;;;;;;;;;52126:523;;;52179:9;;;;;;;52126:523;;;;52682:18;52657:4;:22;;:43;;;;48836:1;51854:852:::0;;:::o;47737:67::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64672:229::-;48785:10;;;;;;;;;;;48771:24;;:10;:24;;;48763:66;;;;;;;;;;;;;;;;;;;;;;64774:1:::1;64753:23;;:9;:23;;;;64745:81;;;;;;;;;;;;;;;;;;;;;;64846:9;64835:8;;:20;;;;;;;;;;;;;;;;;;64869:26;64885:9;64869:26;;;;;;;;;;;;;;;64672:229:::0;:::o;49966:297::-;48785:10;;;;;;;;;;;48771:24;;:10;:24;;;48763:66;;;;;;;;;;;;;;;;;;;;;;50093:1:::1;50063:32;;:18;:32;;;;50055:99;;;;;;;;;;;;;;;;;;;;;;50181:18;50161:17;;:38;;;;;;;;;;;;;;;;;;50213:44;50238:18;50213:44;;;;;;;;;;;;;;;49966:297:::0;:::o;46214:20::-;;;;;;;;;;;;;:::o;50269:275::-;50335:17;;;;;;;;;;;50321:31;;:10;:31;;;50313:81;;;;;;;;;;;;;;;;;;;;;;50403:26;50432:17;;;;;;;;;;;50403:46;;50469:18;50456:10;;:31;;;;;;;;;;;;;;;;;;50501:37;50519:18;50501:37;;;;;;;;;;;;;;;50269:275;:::o;65743:338::-;65828:10;;;;;;;;;;;65814:24;;:10;:24;;;:50;;;;65856:8;;;;;;;;;;;65842:22;;:10;:22;;;65814:50;65806:101;;;;;;;;;;;;;;;;;;;;;;65916:23;65942:19;65953:7;65942:6;:10;;:19;;;;:::i;:::-;65916:45;;66003:5;65978:30;;:5;:21;;;;;;;;;;;;:30;;;65970:68;;;;;;;;;;;;;;;;;;;;;;66071:4;66047:5;:21;;;:28;;;;;;;;;;;;;;;;;;65743:338;;:::o;47867:47::-;;;;;;;;;;;;;;;;;:::o;54880:261::-;7877:1;8483:7;;:19;;8475:63;;;;;;;;;;;;;;;;;;;;;;7877:1;8616:7;:18;;;;54941:23:::1;54967:19;54978:7;54967:6;:10;;:19;;;;:::i;:::-;54941:45;;54993:18;55006:4;54993:5;:12;;:18;;;;:::i;:::-;55020:25;55048:7;:19;55056:10;55048:19;;;;;;;;;;;;;;;:28;55068:7;55048:28;;;;;;;;;;;55020:56;;55085:26;55099:5;55106:4;55085:6;:13;;:26;;;;;:::i;:::-;55120:15;55127:7;55120:6;:15::i;:::-;8647:1;;7833::::0;8795:7;:22;;;;54880:261;:::o;46762:46::-;;;;;;;;;;;;;;;;;:::o;47574:67::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54030:638::-;7877:1;8483:7;;:19;;8475:63;;;;;;;;;;;;;;;;;;;;;;7877:1;8616:7;:18;;;;54119:23:::1;54145:19;54156:7;54145:6;:10;;:19;;;;:::i;:::-;54119:45;;54171:18;54184:4;54171:5;:12;;:18;;;;:::i;:::-;54198:25;54226:7;:19;54234:10;54226:19;;;;;;;;;;;;;;;:28;54246:7;54226:28;;;;;;;;;;;54198:56;;54261:26;54275:5;54282:4;54261:6;:13;;:26;;;;;:::i;:::-;54296:17;54316:5;:21;;;;;;;;;;;;:68;;54382:1;54316:68;;;54340:10;:22;54351:10;54340:22;;;;;;;;;;;;;;;:31;54363:7;54340:31;;;;;;;;;;;;;;;;;;;;;54316:68;54296:88;;54397:5;:21;;;;;;;;;;;;:48;;;;;54443:1;54422:23;;:9;:23;;;;54397:48;54393:193;;;54456:41;54500:15;:26;54516:9;54500:26;;;;;;;;;;;;;;;:35;54527:7;54500:35;;;;;;;;;;;54456:79;;54544:34;54566:5;54573:4;54544:14;:21;;:34;;;;;:::i;:::-;54393:193;;54594:15;54601:7;54594:6;:15::i;:::-;54616:46;54626:7;54635:15;54652:9;54616;:46::i;:::-;8647:1;;;7833::::0;8795:7;:22;;;;54030:638;;:::o;57361:182::-;57437:7;57453:23;57479:19;57490:7;57479:6;:10;;:19;;;;:::i;:::-;57453:45;;57512:5;:25;;;57505:32;;;57361:182;;;:::o;46433:25::-;;;;;;;;;;;;;:::o;57767:168::-;57836:7;57852:23;57878:19;57889:7;57878:6;:10;;:19;;;;:::i;:::-;57852:45;;57911:5;:18;;;57904:25;;;57767:168;;;:::o;50941:774::-;51052:7;48785:10;;;;;;;;;;;48771:24;;:10;:24;;;48763:66;;;;;;;;;;;;;;;;;;;;;;51100:1:::1;51076:12;:20;51089:6;51076:20;;;;;;;;;;;;;;;;:25;51068:76;;;;;;;;;;;;;;;;;;;;;;51153:15;51171;:6;:13;:15::i;:::-;51153:33;;51195:406;51207:393;;;;;;;;51233:6;51207:393;;;;;;51264:1;51207:393;;;;51288:1;51207:393;;;;51323:26;;;;;;;;51347:1;51323:26;;::::0;51207:393:::1;;;;51376:12;51207:393;;;;51410:12;51207:393;;;;;;51454:14;51207:393;;;;51494:5;51207:393;;;;;;51529:1;51207:393;;;;51566:26;;;;;;;;51590:1;51566:26;;::::0;51207:393:::1;;::::0;51195:6:::1;:11;;:406;;;;:::i;:::-;51643:1;51633:7;:11;51610:12;:20;51623:6;51610:20;;;;;;;;;;;;;;;:34;;;;51679:6;51658:28;;51670:7;51658:28;;;;;;;;;;51702:7;51695:14;;;50941:774:::0;;;;;:::o;66294:335::-;66379:10;;;;;;;;;;;66365:24;;:10;:24;;;:50;;;;66407:8;;;;;;;;;;;66393:22;;:10;:22;;;66365:50;66357:101;;;;;;;;;;;;;;;;;;;;;;66467:23;66493:19;66504:7;66493:6;:10;;:19;;;;:::i;:::-;66467:45;;66554:4;66529:29;;:5;:21;;;;;;;;;;;;:29;;;66521:64;;;;;;;;;;;;;;;;;;;;;;66618:5;66594;:21;;;:29;;;;;;;;;;;;;;;;;;66294:335;;:::o;56995:172::-;57066:7;57082:23;57108:19;57119:7;57108:6;:10;;:19;;;;:::i;:::-;57082:45;;57141:5;:20;;;57134:27;;;56995:172;;;:::o;47419:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56019:89::-;56064:7;56087:4;:15;;;56080:22;;56019:89;:::o;55280:615::-;7877:1;8483:7;;:19;;8475:63;;;;;;;;;;;;;;;;;;;;;;7877:1;8616:7;:18;;;;55340:23:::1;55366:19;55377:7;55366:6;:10;;:19;;;;:::i;:::-;55340:45;;55392:18;55405:4;55392:5;:12;;:18;;;;:::i;:::-;55419:25;55447:7;:19;55455:10;55447:19;;;;;;;;;;;;;;;:28;55467:7;55447:28;;;;;;;;;;;55419:56;;55482:26;55496:5;55503:4;55482:6;:13;;:26;;;;;:::i;:::-;55517:17;55537:5;:21;;;;;;;;;;;;:68;;55603:1;55537:68;;;55561:10;:22;55572:10;55561:22;;;;;;;;;;;;;;;:31;55584:7;55561:31;;;;;;;;;;;;;;;;;;;;;55537:68;55517:88;;55618:5;:21;;;;;;;;;;;;:48;;;;;55664:1;55643:23;;:9;:23;;;;55618:48;55614:193;;;55677:41;55721:15;:26;55737:9;55721:26;;;;;;;;;;;;;;;:35;55748:7;55721:35;;;;;;;;;;;55677:79;;55765:34;55787:5;55794:4;55765:14;:21;;:34;;;;;:::i;:::-;55614:193;;55815:15;55822:7;55815:6;:15::i;:::-;55837:52;55847:7;55856:6;:21;;;55879:9;55837;:52::i;:::-;8647:1;;;7833::::0;8795:7;:22;;;;55280:615;:::o;59049:238::-;59139:7;59155:25;59183:7;:17;59191:8;59183:17;;;;;;;;;;;;;;;:26;59201:7;59183:26;;;;;;;;;;;59155:54;;59223:58;59255:19;59266:7;59255:6;:10;;:19;;;;:::i;:::-;59276:4;59223:6;:31;;:58;;;;;:::i;:::-;59216:65;;;59049:238;;;;:::o;48181:17::-;;;;;;;;;;;;;:::o;58131:173::-;58198:7;58214:23;58240:19;58251:7;58240:6;:10;;:19;;;;:::i;:::-;58214:45;;58273:25;58293:4;58273:5;:19;;:25;;;;:::i;:::-;58266:32;;;58131:173;;;:::o;52936:895::-;7877:1;8483:7;;:19;;8475:63;;;;;;;;;;;;;;;;;;;;;;7877:1;8616:7;:18;;;;53053:7:::1;53062:8;49009:23;49035:15;49046:3;49035:6;:10;;:15;;;;:::i;:::-;49009:41;;49063:5;:21;;;;;;;;;;;;:47;;;;;49108:1;49088:22;;:8;:22;;;;49063:47;49059:713;;;49126:15;:25;49142:8;49126:25;;;;;;;;;;;;;;;:30;49152:3;49126:30;;;;;;;;;;;;;;;;;;;;;49121:247;;49210:8;49171:12;:17;49184:3;49171:17;;;;;;;;;;;:36;49189:12;:17;49202:3;49189:17;;;;;;;;;;;;49171:36;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;49264:4;49231:15;:25;49247:8;49231:25;;;;;;;;;;;;;;;:30;49257:3;49231:30;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;49281:12;:17;49294:3;49281:17;;;;;;;;;;;;:19;;;;;;;;;;;;;49320:38;49337:8;49347:10;49320:38;;;;;;;;;;;;;;;;49121:247;49430:10;49443:4;49430:17;;49456:19;49478:10;49456:32;;49497:27;49527:10;:15;49538:3;49527:15;;;;;;;;;;;:25;49543:8;49527:25;;;;;;;;;;;;;;;49497:55;;49566:9;49578:1:::0;49566:13:::1;;49561:136;49585:8;:15;;;;49581:1;:19;49561:136;;;49637:11;49622:26;;:8;49631:1;49622:11;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;49618:70;;;49671:5;49663:13;;49618:70;49602:3;;;;;;;49561:136;;;;49711:5;49707:58;;;49729:8;49743:11;49729:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49707:58;49059:713;;;;53079:23:::2;53105:19;53116:7;53105:6;:10;;:19;;;;:::i;:::-;53079:45;;53131:18;53144:4;53131:5;:12;;:18;;;;:::i;:::-;53158:25;53186:7;:19;53194:10;53186:19;;;;;;;;;;;;;;;:28;53206:7;53186:28;;;;;;;;;;;53158:56;;53221:26;53235:5;53242:4;53221:6;:13;;:26;;;;;:::i;:::-;53256:17;53276:10;:22;53287:10;53276:22;;;;;;;;;;;;;;;:31;53299:7;53276:31;;;;;;;;;;;;;;;;;;;;;53256:51;;53318:5;:21;;;;;;;;;;;;53314:459;;;53374:1;53354:22;;:8;:22;;;53350:180;;53419:1;53398:23;;:9;:23;;;:48;;;;53438:8;53425:21;;:9;:21;;;53398:48;53389:78;;;;;;;;;;;;;;;;;;;;;;53512:8;53478:10;:22;53489:10;53478:22;;;;;;;;;;;;;;;:31;53501:7;53478:31;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;53350:180;53552:10;:22;53563:10;53552:22;;;;;;;;;;;;;;;:31;53575:7;53552:31;;;;;;;;;;;;;;;;;;;;;53540:43;;53617:1;53596:23;;:9;:23;;;53592:174;;53632:41;53676:15;:26;53692:9;53676:26;;;;;;;;;;;;;;;:35;53703:7;53676:35;;;;;;;;;;;53632:79;;53722:34;53744:5;53751:4;53722:14;:21;;:34;;;;;:::i;:::-;53592:174;;53314:459;53781:44;53790:7;53799:14;53815:9;53781:8;:44::i;:::-;49781:1;;;8647::::1;;;7833::::0;8795:7;:22;;;;52936:895;;;:::o;59564:281::-;59660:7;59676:41;59720:15;:26;59736:9;59720:26;;;;;;;;;;;;;;;:35;59747:7;59720:35;;;;;;;;;;;59676:79;;59769:70;59813:19;59824:7;59813:6;:10;;:19;;;;:::i;:::-;59834:4;59769:14;:43;;:70;;;;;:::i;:::-;59762:77;;;59564:281;;;;:::o;64269:293::-;64350:5;;;;;;;;;;;:61;;;;;64374:10;;;;;;;;;;;64360:24;;:10;:24;;;:50;;;;64402:8;;;;;;;;;;;64388:22;;:10;:22;;;64360:50;64350:61;64342:129;;;;;;;;;;;;;;;;;;;;;;64494:14;64478:13;;:30;;;;;;;;;;;;;;;;;;64520:36;64541:14;64520:36;;;;;;;;;;;;;;;64269:293;:::o;50726:177::-;48785:10;;;;;;;;;;;48771:24;;:10;:24;;;48763:66;;;;;;;;;;;;;;;;;;;;;;50801:14:::1;:12;:14::i;:::-;50842:11;50824:4;:15;;:29;;;;50867:30;50885:11;50867:30;;;;;;;;;;;;;;;50726:177:::0;:::o;58536:201::-;58626:7;58642:25;58670:7;:17;58678:8;58670:17;;;;;;;;;;;;;;;:26;58688:7;58670:26;;;;;;;;;;;58642:54;;58710:6;:21;;;58703:28;;;58536:201;;;;:::o;46284:35::-;;;;;;;;;;;;;:::o;48051:67::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65321:207::-;65392:10;;;;;;;;;;;65378:24;;:10;:24;;;:50;;;;65420:8;;;;;;;;;;;65406:22;;:10;:22;;;65378:50;65370:95;;;;;;;;;;;;;;;;;;;;;;65482:6;65474:5;;:14;;;;;;;;;;;;;;;;;;65502:20;65515:6;65502:20;;;;;;;;;;;;;;;65321:207;:::o;60514:148::-;60595:16;60627:10;:19;60638:7;60627:19;;;;;;;;;;;:29;60647:8;60627:29;;;;;;;;;;;;;;;60620:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60514:148;;;;:::o;56225:103::-;56277:7;56300:4;:22;;;56293:29;;56225:103;:::o;60106:155::-;60195:7;60218:12;:21;60231:7;60218:21;;;;;;;;;;;:37;60240:14;60218:37;;;;;;;;;;;;;;;;;;;;;60211:44;;60106:155;;;;:::o;56648:153::-;56710:6;56725:23;56751:19;56762:7;56751:6;:10;;:19;;;;:::i;:::-;56725:45;;56784:5;:11;;;;;;;;;;;;56777:18;;;56648:153;;;:::o;46465:32::-;;;;;;;;;;;;;:::o;56421:88::-;56465:7;56488:15;:6;:13;:15::i;:::-;56481:22;;56421:88;:::o;46582:23::-;;;;;;;;;;;;;:::o;39589:109::-;39648:7;39671:5;:14;;:21;;;;39664:28;;39589:109;;;:::o;60706:198::-;60751:15;60769:1;60751:19;;60746:153;60782:15;:6;:13;:15::i;:::-;60772:7;:25;60746:153;;;60819:23;60845:19;60856:7;60845:6;:10;;:19;;;;:::i;:::-;60819:45;;60873:18;60886:4;60873:5;:12;;:18;;;;:::i;:::-;60746:153;60799:9;;;;;;;60746:153;;;;60706:198::o;38678:128::-;38750:12;38778:5;:14;;38793:6;38778:22;;;;;;;;;;;;;;;;;;38771:29;;38678:128;;;;:::o;12060:158::-;12118:7;12151:1;12146;:6;;12138:49;;;;;;;;;;;;;;;;;;;;;;12209:1;12205;:5;12198:12;;12060:158;;;;:::o;11598:179::-;11656:7;11676:9;11692:1;11688;:5;11676:17;;11717:1;11712;:6;;11704:46;;;;;;;;;;;;;;;;;;;;;;11768:1;11761:8;;;11598:179;;;;:::o;35638:336::-;35744:45;35784:4;35744:5;:39;;:45;;;;:::i;:::-;35712:5;:29;;:77;;;;;;;;;;;35802:5;:21;;;;;;;;;;;;35798:125;;;35868:47;35910:4;35868:5;:41;;:47;;;;:::i;:::-;35834:5;:31;;:81;;;;;;;;;;;35798:125;35956:12;35931:5;:22;;:37;;;;35638:336;;:::o;40796:258::-;40923:43;40954:5;40961:4;40923:5;:30;;:43;;;;;:::i;:::-;40900:5;:20;;:66;;;;41003:45;41043:4;41003:5;:39;;:45;;;;:::i;:::-;40973:5;:27;;:75;;;;;;;;;;;40796:258;;;:::o;63523:624::-;63581:5;;;;;;;;;;;63580:6;63572:56;;;;;;;;;;;;;;;;;;;;;;63637:23;63663:19;63674:7;63663:6;:10;;:19;;;;:::i;:::-;63637:45;;63689:25;63717:7;:19;63725:10;63717:19;;;;;;;;;;;;;;;:28;63737:7;63717:28;;;;;;;;;;;63689:56;;63754:20;63777:6;:21;;;63754:44;;63829:1;63805:6;:21;;:25;;;;63842:5;:17;;;;;;;;;;;;63839:241;;;63869:6;;;;;;;;;;;:14;;;63892:13;;;;;;;;;;;63912:2;63869:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63925:13;;;;;;;;;;;:24;;;63950:10;63962:12;63976:5;:27;;;63925:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63839:241;;;64027:45;64047:10;64059:12;64027:6;;;;;;;;;;;:19;;;;:45;;;;;:::i;:::-;63839:241;64119:7;64107:10;64093:48;;;64128:12;64093:48;;;;;;;;;;;;;;;63523:624;;;;:::o;42899:275::-;43030:47;43065:5;43072:4;43030:5;:34;;:47;;;;;:::i;:::-;43003:5;:24;;:74;;;;43121:47;43163:4;43121:5;:41;;:47;;;;:::i;:::-;43084:5;:34;;:84;;;;;;;;;;;42899:275;;;:::o;62415:817::-;62511:23;62537:19;62548:7;62537:6;:10;;:19;;;;:::i;:::-;62511:45;;62563:25;62591:7;:19;62599:10;62591:19;;;;;;;;;;;;;;;:28;62611:7;62591:28;;;;;;;;;;;62563:56;;62651:41;62676:15;62651:5;:20;;;:24;;:41;;;;:::i;:::-;62628:5;:20;;:64;;;;62723:42;62749:15;62723:6;:21;;;:25;;:42;;;;:::i;:::-;62699:6;:21;;:66;;;;62778:5;:21;;;;;;;;;;;;:48;;;;;62824:1;62803:23;;:9;:23;;;;62778:48;62774:324;;;62837:41;62881:15;:26;62897:9;62881:26;;;;;;;;;;;;;;;:35;62908:7;62881:35;;;;;;;;;;;62837:79;;62953:46;62983:15;62953:5;:25;;;:29;;:46;;;;:::i;:::-;62925:5;:25;;:74;;;;63040:50;63074:15;63040:14;:29;;;:33;;:50;;;;:::i;:::-;63008:14;:29;;:82;;;;62774:324;;63106:53;63131:10;63143:15;63106:5;:11;;;;;;;;;;;;:24;;;;:53;;;;;:::i;:::-;63201:7;63189:10;63173:53;;;63210:15;63173:53;;;;;;;;;;;;;;;62415:817;;;;;:::o;38413:107::-;38485:5;:14;;38505:8;38485:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38413:107;;:::o;41060:684::-;41199:7;41218:56;;:::i;:::-;41277:45;41317:4;41277:5;:39;;:45;;;;:::i;:::-;41218:104;;41329:53;;:::i;:::-;41385:5;:27;;41329:83;;;;;;;;;;;;;;;;;;;41482:1;41425:53;41455:22;41425:25;:29;;:53;;;;:::i;:::-;:58;41421:108;;;41501:5;:20;;;41494:27;;;;;;41421:108;41537:26;41566:112;:95;41640:5;:20;;;41566:61;41604:22;41566:25;:37;;:61;;;;:::i;:::-;:73;;:95;;;;:::i;:::-;:110;:112::i;:::-;41537:141;;41694:44;41719:18;41694:5;:20;;;:24;;:44;;;;:::i;:::-;41687:51;;;;;41060:684;;;;;;:::o;36175:197::-;36273:7;36299:67;36343:4;:22;;;36299:39;36319:5;:18;;;36299:4;:15;;;:19;;:39;;;;:::i;:::-;:43;;:67;;;;:::i;:::-;36292:74;;36175:197;;;;:::o;61213:828::-;61307:23;61333:19;61344:7;61333:6;:10;;:19;;;;:::i;:::-;61307:45;;61359:25;61387:7;:19;61395:10;61387:19;;;;;;;;;;;;;;;:28;61407:7;61387:28;;;;;;;;;;;61359:56;;61447:40;61472:14;61447:5;:20;;;:24;;:40;;;;:::i;:::-;61424:5;:20;;:63;;;;61518:41;61544:14;61518:6;:21;;;:25;;:41;;;;:::i;:::-;61494:6;:21;;:65;;;;61572:5;:21;;;;;;;;;;;;:48;;;;;61618:1;61597:23;;:9;:23;;;;61572:48;61568:322;;;61631:41;61675:15;:26;61691:9;61675:26;;;;;;;;;;;;;;;:35;61702:7;61675:35;;;;;;;;;;;61631:79;;61747:45;61777:14;61747:5;:25;;;:29;;:45;;;;:::i;:::-;61719:5;:25;;:73;;;;61833:49;61867:14;61833;:29;;;:33;;:49;;;;:::i;:::-;61801:14;:29;;:81;;;;61568:322;;61898:71;61927:10;61947:4;61954:14;61898:5;:11;;;;;;;;;;;;:28;;;;:71;;;;;;:::i;:::-;62011:7;61999:10;61983:52;;;62020:14;61983:52;;;;;;;;;;;;;;;61213:828;;;;;:::o;43180:744::-;43323:7;43342:63;;:::i;:::-;43408:47;43450:4;43408:5;:41;;:47;;;;:::i;:::-;43342:113;;43462:59;;:::i;:::-;43524:5;:34;;43462:96;;;;;;;;;;;;;;;;;;;43641:1;43571:66;43608:28;43571:32;:36;;:66;;;;:::i;:::-;:71;43567:125;;;43660:5;:24;;;43653:31;;;;;;43567:125;43700:26;43729:125;:108;43816:5;:20;;;43729:74;43774:28;43729:32;:44;;:74;;;;:::i;:::-;:86;;:108;;;;:::i;:::-;:123;:125::i;:::-;43700:154;;43870:48;43899:18;43870:5;:24;;;:28;;:48;;;;:::i;:::-;43863:55;;;;;43180:744;;;;;;:::o;36533:798::-;36651:30;;:::i;:::-;36721:1;36697:5;:20;;;:25;36693:84;;;36740:5;:29;;36733:36;;;;;;;;;;;;;;;;;;;;;36693:84;36785:20;36808:40;36825:5;:22;;;36808:12;:16;;:40;;;;:::i;:::-;36785:63;;36875:1;36859:12;:17;36855:76;;;36894:5;:29;;36887:36;;;;;;;;;;;;;;;;;;;;;;36855:76;36939:19;36961:25;36981:4;36961:5;:19;;:25;;;;:::i;:::-;36939:47;;36993:25;37021:29;37037:12;37021:11;:15;;:29;;;;:::i;:::-;36993:57;;37084:1;37063:17;:22;37059:81;;;37103:5;:29;;37096:36;;;;;;;;;;;;;;;;;;;;;;;;37059:81;37148:44;;:::i;:::-;37195:68;37242:5;:20;;;37195:42;37219:17;37195:23;:42::i;:::-;:46;;:68;;;;:::i;:::-;37148:115;;37277:48;37311:13;37277:5;:29;;:33;;;;;;;;;;;;;;;;;;;:48;;;;:::i;:::-;37270:55;;;;;;36533:798;;;;;:::o;37494:820::-;37614:30;;:::i;:::-;37689:1;37660:5;:25;;;:30;37656:93;;;37710:5;:31;;37703:38;;;;;;;;;;;;;;;;;;;;;37656:93;37757:20;37780:40;37797:5;:22;;;37780:12;:16;;:40;;;;:::i;:::-;37757:63;;37847:1;37831:12;:17;37827:78;;;37866:5;:31;;37859:38;;;;;;;;;;;;;;;;;;;;;;37827:78;37913:19;37935:25;37955:4;37935:5;:19;;:25;;;;:::i;:::-;37913:47;;37967:25;37995:29;38011:12;37995:11;:15;;:29;;;;:::i;:::-;37967:57;;38058:1;38037:17;:22;38033:83;;;38077:5;:31;;38070:38;;;;;;;;;;;;;;;;;;;;;;;;38033:83;38124:44;;:::i;:::-;38171:73;38218:5;:25;;;38171:42;38195:17;38171:23;:42::i;:::-;:46;;:73;;;;:::i;:::-;38124:120;;38258:50;38294:13;38258:5;:31;;:35;;;;;;;;;;;;;;;;;;;:50;;;;:::i;:::-;38251:57;;;;;;37494:820;;;;;:::o;24900:177::-;24983:86;25003:5;25033:23;;;25058:2;25062:5;25010:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24983:19;:86::i;:::-;24900:177;;;:::o;30162:221::-;30243:6;30271:5;:7;;;30262:4;:6;;;:16;30258:48;;;30296:2;30289:9;;;;30258:48;30327:5;:7;;;30318:4;:6;;;:16;30314:47;;;30352:1;30345:8;;;;30314:47;30376:1;30369:8;;30162:221;;;;;:::o;29444:193::-;29525:15;;:::i;:::-;29549:9;29599:4;:6;;;29587:5;:7;;;29578:4;:6;;;:16;29574:20;;;29573:32;;29565:41;;;;;;29620:11;;;;;;;;29629:1;29620:11;;;29613:18;;;29444:193;;;;:::o;29785:205::-;29858:15;;:::i;:::-;29882:9;29915:1;29906:5;:10;:52;;;;29952:4;:6;;;29943:5;29934;29925:4;:6;;;:14;29921:18;;;29920:28;;;;;;:38;29906:52;29898:61;;;;;;29973:11;;;;;;;;29982:1;29973:11;;;29966:18;;;29785:205;;;;:::o;30389:105::-;30450:7;28695:2;28735;:12;30473:4;:6;;;:15;;;;;;30466:22;;30389:105;;;:::o;12477:220::-;12535:7;12564:1;12559;:6;12555:20;;;12574:1;12567:8;;;;12555:20;12586:9;12602:1;12598;:5;12586:17;;12631:1;12626;12622;:5;;;;;;:10;12614:56;;;;;;;;;;;;;;;;;;;;;;12688:1;12681:8;;;12477:220;;;;;:::o;13175:153::-;13233:7;13265:1;13261;:5;13253:44;;;;;;;;;;;;;;;;;;;;;;13319:1;13315;:5;;;;;;13308:12;;13175:153;;;;:::o;25085:205::-;25186:96;25206:5;25236:27;;;25265:4;25271:2;25275:5;25213:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25186:19;:96::i;:::-;25085:205;;;;:::o;28798:188::-;28854:15;;:::i;:::-;28878:9;28911:1;28902:5;:10;:52;;;;28949:5;28695:2;28735;:12;28695:2;28735;:12;28921:5;:14;28917:18;;;28916:29;;;;;;:38;28902:52;28894:61;;;;;;28969:11;;;;;;;;28978:1;28969:11;;;28962:18;;;28798:188;;;:::o;29996:160::-;30069:15;;:::i;:::-;30110:1;30101:5;:10;;30093:19;;;;;;30126:24;;;;;;;;30144:5;30135:4;:6;;;:14;;;;;;30126:24;;;30119:31;;29996:160;;;;:::o;29103:193::-;29184:15;;:::i;:::-;29208:9;29258:4;:6;;;29246:5;:7;;;29237:4;:6;;;:16;29233:20;;;29232:32;;29224:41;;;;;;29279:11;;;;;;;;29288:1;29279:11;;;29272:18;;;29103:193;;;;:::o;27205:761::-;27629:23;27655:69;27683:4;27655:69;;;;;;;;;;;;;;;;;27663:5;27655:27;;;;:69;;;;;:::i;:::-;27629:95;;27759:1;27739:10;:17;:21;27735:224;;;27881:10;27870:30;;;;;;;;;;;;;;27862:85;;;;;;;;;;;;;;;;;;;;;;27735:224;27205:761;;;:::o;19926:195::-;20029:12;20061:52;20083:6;20091:4;20097:1;20100:12;20061:21;:52::i;:::-;20054:59;;19926:195;;;;;:::o;20978:530::-;21105:12;21163:5;21138:21;:30;;21130:81;;;;;;;;;;;;;;;;;;;;;;21230:18;21241:6;21230:10;:18::i;:::-;21222:60;;;;;;;;;;;;;;;;;;;;;;21356:12;21370:23;21397:6;:11;;21417:5;21425:4;21397:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21355:75;;;;21448:52;21466:7;21475:10;21487:12;21448:17;:52::i;:::-;21441:59;;;;20978:530;;;;;;:::o;17008:422::-;17068:4;17276:12;17387:7;17375:20;17367:28;;17421:1;17414:4;:8;17407:15;;;17008:422;;;:::o;23518:742::-;23633:12;23662:7;23658:595;;;23693:10;23686:17;;;;23658:595;23827:1;23807:10;:17;:21;23803:439;;;24070:10;24064:17;24131:15;24118:10;24114:2;24110:19;24103:44;24018:148;24213:12;24206:20;;;;;;;;;;;;;;;;;;;;23518:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;;;57:78;;;;;160:352;;;290:3;283:4;275:6;271:17;267:27;257:2;;308:1;305;298:12;257:2;341:6;328:20;318:30;;368:18;360:6;357:30;354:2;;;400:1;397;390:12;354:2;434:4;426:6;422:17;410:29;;485:3;477:4;469:6;465:17;455:8;451:32;448:41;445:2;;;502:1;499;492:12;445:2;250:262;;;;;;520:124;;597:6;584:20;575:29;;609:30;633:5;609:30;;;569:75;;;;;651:128;;732:6;726:13;717:22;;744:30;768:5;744:30;;;711:68;;;;;786:156;;879:6;866:20;857:29;;891:46;931:5;891:46;;;851:91;;;;;949:176;;1052:6;1039:20;1030:29;;1064:56;1114:5;1064:56;;;1024:101;;;;;1132:130;;1212:6;1199:20;1190:29;;1224:33;1251:5;1224:33;;;1184:78;;;;;1269:241;;1373:2;1361:9;1352:7;1348:23;1344:32;1341:2;;;1389:1;1386;1379:12;1341:2;1424:1;1441:53;1486:7;1477:6;1466:9;1462:22;1441:53;;;1431:63;;1403:97;1335:175;;;;;1517:366;;;1638:2;1626:9;1617:7;1613:23;1609:32;1606:2;;;1654:1;1651;1644:12;1606:2;1689:1;1706:53;1751:7;1742:6;1731:9;1727:22;1706:53;;;1696:63;;1668:97;1796:2;1814:53;1859:7;1850:6;1839:9;1835:22;1814:53;;;1804:63;;1775:98;1600:283;;;;;;1890:397;;;2029:2;2017:9;2008:7;2004:23;2000:32;1997:2;;;2045:1;2042;2035:12;1997:2;2108:1;2097:9;2093:17;2080:31;2131:18;2123:6;2120:30;2117:2;;;2163:1;2160;2153:12;2117:2;2191:80;2263:7;2254:6;2243:9;2239:22;2191:80;;;2181:90;;;;2059:218;1991:296;;;;;;2294:235;;2395:2;2383:9;2374:7;2370:23;2366:32;2363:2;;;2411:1;2408;2401:12;2363:2;2446:1;2463:50;2505:7;2496:6;2485:9;2481:22;2463:50;;;2453:60;;2425:94;2357:172;;;;;2536:257;;2648:2;2636:9;2627:7;2623:23;2619:32;2616:2;;;2664:1;2661;2654:12;2616:2;2699:1;2716:61;2769:7;2760:6;2749:9;2745:22;2716:61;;;2706:71;;2678:105;2610:183;;;;;2800:267;;2917:2;2905:9;2896:7;2892:23;2888:32;2885:2;;;2933:1;2930;2923:12;2885:2;2968:1;2985:66;3043:7;3034:6;3023:9;3019:22;2985:66;;;2975:76;;2947:110;2879:188;;;;;3074:511;;;;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3238:1;3235;3228:12;3190:2;3273:1;3290:66;3348:7;3339:6;3328:9;3324:22;3290:66;;;3280:76;;3252:110;3393:2;3411:50;3453:7;3444:6;3433:9;3429:22;3411:50;;;3401:60;;3372:95;3498:2;3516:53;3561:7;3552:6;3541:9;3537:22;3516:53;;;3506:63;;3477:98;3184:401;;;;;;3592:287;;3719:2;3707:9;3698:7;3694:23;3690:32;3687:2;;;3735:1;3732;3725:12;3687:2;3770:1;3787:76;3855:7;3846:6;3835:9;3831:22;3787:76;;;3777:86;;3749:120;3681:198;;;;;3886:241;;3990:2;3978:9;3969:7;3965:23;3961:32;3958:2;;;4006:1;4003;3996:12;3958:2;4041:1;4058:53;4103:7;4094:6;4083:9;4079:22;4058:53;;;4048:63;;4020:97;3952:175;;;;;4134:366;;;4255:2;4243:9;4234:7;4230:23;4226:32;4223:2;;;4271:1;4268;4261:12;4223:2;4306:1;4323:53;4368:7;4359:6;4348:9;4344:22;4323:53;;;4313:63;;4285:97;4413:2;4431:53;4476:7;4467:6;4456:9;4452:22;4431:53;;;4421:63;;4392:98;4217:283;;;;;;4507:491;;;;4645:2;4633:9;4624:7;4620:23;4616:32;4613:2;;;4661:1;4658;4651:12;4613:2;4696:1;4713:53;4758:7;4749:6;4738:9;4734:22;4713:53;;;4703:63;;4675:97;4803:2;4821:53;4866:7;4857:6;4846:9;4842:22;4821:53;;;4811:63;;4782:98;4911:2;4929:53;4974:7;4965:6;4954:9;4950:22;4929:53;;;4919:63;;4890:98;4607:391;;;;;;5005:366;;;5126:2;5114:9;5105:7;5101:23;5097:32;5094:2;;;5142:1;5139;5132:12;5094:2;5177:1;5194:53;5239:7;5230:6;5219:9;5215:22;5194:53;;;5184:63;;5156:97;5284:2;5302:53;5347:7;5338:6;5327:9;5323:22;5302:53;;;5292:63;;5263:98;5088:283;;;;;;5378:491;;;;5516:2;5504:9;5495:7;5491:23;5487:32;5484:2;;;5532:1;5529;5522:12;5484:2;5567:1;5584:53;5629:7;5620:6;5609:9;5605:22;5584:53;;;5574:63;;5546:97;5674:2;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;;;5682:63;;5653:98;5782:2;5800:53;5845:7;5836:6;5825:9;5821:22;5800:53;;;5790:63;;5761:98;5478:391;;;;;;5877:173;;5964:46;6006:3;5998:6;5964:46;;;6039:4;6034:3;6030:14;6016:28;;5957:93;;;;;6058:142;6149:45;6188:5;6149:45;;;6144:3;6137:58;6131:69;;;6207:103;6280:24;6298:5;6280:24;;;6275:3;6268:37;6262:48;;;6317:113;6400:24;6418:5;6400:24;;;6395:3;6388:37;6382:48;;;6468:690;;6613:54;6661:5;6613:54;;;6680:86;6759:6;6754:3;6680:86;;;6673:93;;6787:56;6837:5;6787:56;;;6863:7;6891:1;6876:260;6901:6;6898:1;6895:13;6876:260;;;6968:6;6962:13;6989:63;7048:3;7033:13;6989:63;;;6982:70;;7069:60;7122:6;7069:60;;;7059:70;;6933:203;6923:1;6920;6916:9;6911:14;;6876:260;;;6880:14;7149:3;7142:10;;6592:566;;;;;;;;7166:104;7243:21;7258:5;7243:21;;;7238:3;7231:34;7225:45;;;7277:356;;7405:38;7437:5;7405:38;;;7455:88;7536:6;7531:3;7455:88;;;7448:95;;7548:52;7593:6;7588:3;7581:4;7574:5;7570:16;7548:52;;;7621:6;7616:3;7612:16;7605:23;;7385:248;;;;;;7640:152;7736:50;7780:5;7736:50;;;7731:3;7724:63;7718:74;;;7799:172;7905:60;7959:5;7905:60;;;7900:3;7893:73;7887:84;;;7978:347;;8090:39;8123:5;8090:39;;;8141:71;8205:6;8200:3;8141:71;;;8134:78;;8217:52;8262:6;8257:3;8250:4;8243:5;8239:16;8217:52;;;8290:29;8312:6;8290:29;;;8285:3;8281:39;8274:46;;8070:255;;;;;;8333:391;;8493:67;8557:2;8552:3;8493:67;;;8486:74;;8593:34;8589:1;8584:3;8580:11;8573:55;8662:24;8657:2;8652:3;8648:12;8641:46;8715:2;8710:3;8706:12;8699:19;;8479:245;;;;8733:327;;8893:67;8957:2;8952:3;8893:67;;;8886:74;;8993:29;8989:1;8984:3;8980:11;8973:50;9051:2;9046:3;9042:12;9035:19;;8879:181;;;;9069:316;;9229:67;9293:2;9288:3;9229:67;;;9222:74;;9329:18;9325:1;9320:3;9316:11;9309:39;9376:2;9371:3;9367:12;9360:19;;9215:170;;;;9394:392;;9554:67;9618:2;9613:3;9554:67;;;9547:74;;9654:34;9650:1;9645:3;9641:11;9634:55;9723:25;9718:2;9713:3;9709:12;9702:47;9777:2;9772:3;9768:12;9761:19;;9540:246;;;;9795:330;;9955:67;10019:2;10014:3;9955:67;;;9948:74;;10055:32;10051:1;10046:3;10042:11;10035:53;10116:2;10111:3;10107:12;10100:19;;9941:184;;;;10134:375;;10294:67;10358:2;10353:3;10294:67;;;10287:74;;10394:34;10390:1;10385:3;10381:11;10374:55;10463:8;10458:2;10453:3;10449:12;10442:30;10500:2;10495:3;10491:12;10484:19;;10280:229;;;;10518:326;;10678:67;10742:2;10737:3;10678:67;;;10671:74;;10778:28;10774:1;10769:3;10765:11;10758:49;10835:2;10830:3;10826:12;10819:19;;10664:180;;;;10853:332;;11013:67;11077:2;11072:3;11013:67;;;11006:74;;11113:34;11109:1;11104:3;11100:11;11093:55;11176:2;11171:3;11167:12;11160:19;;10999:186;;;;11194:322;;11354:67;11418:2;11413:3;11354:67;;;11347:74;;11454:24;11450:1;11445:3;11441:11;11434:45;11507:2;11502:3;11498:12;11491:19;;11340:176;;;;11525:375;;11685:67;11749:2;11744:3;11685:67;;;11678:74;;11785:34;11781:1;11776:3;11772:11;11765:55;11854:8;11849:2;11844:3;11840:12;11833:30;11891:2;11886:3;11882:12;11875:19;;11671:229;;;;11909:329;;12069:67;12133:2;12128:3;12069:67;;;12062:74;;12169:31;12165:1;12160:3;12156:11;12149:52;12229:2;12224:3;12220:12;12213:19;;12055:183;;;;12247:370;;12407:67;12471:2;12466:3;12407:67;;;12400:74;;12507:34;12503:1;12498:3;12494:11;12487:55;12576:3;12571:2;12566:3;12562:12;12555:25;12608:2;12603:3;12599:12;12592:19;;12393:224;;;;12626:375;;12786:67;12850:2;12845:3;12786:67;;;12779:74;;12886:34;12882:1;12877:3;12873:11;12866:55;12955:8;12950:2;12945:3;12941:12;12934:30;12992:2;12987:3;12983:12;12976:19;;12772:229;;;;13010:382;;13170:67;13234:2;13229:3;13170:67;;;13163:74;;13270:34;13266:1;13261:3;13257:11;13250:55;13339:15;13334:2;13329:3;13325:12;13318:37;13383:2;13378:3;13374:12;13367:19;;13156:236;;;;13401:329;;13561:67;13625:2;13620:3;13561:67;;;13554:74;;13661:31;13657:1;13652:3;13648:11;13641:52;13721:2;13716:3;13712:12;13705:19;;13547:183;;;;13739:374;;13899:67;13963:2;13958:3;13899:67;;;13892:74;;13999:34;13995:1;13990:3;13986:11;13979:55;14068:7;14063:2;14058:3;14054:12;14047:29;14104:2;14099:3;14095:12;14088:19;;13885:228;;;;14122:374;;14282:67;14346:2;14341:3;14282:67;;;14275:74;;14382:34;14378:1;14373:3;14369:11;14362:55;14451:7;14446:2;14441:3;14437:12;14430:29;14487:2;14482:3;14478:12;14471:19;;14268:228;;;;14505:375;;14665:67;14729:2;14724:3;14665:67;;;14658:74;;14765:34;14761:1;14756:3;14752:11;14745:55;14834:8;14829:2;14824:3;14820:12;14813:30;14871:2;14866:3;14862:12;14855:19;;14651:229;;;;14889:379;;15049:67;15113:2;15108:3;15049:67;;;15042:74;;15149:34;15145:1;15140:3;15136:11;15129:55;15218:12;15213:2;15208:3;15204:12;15197:34;15259:2;15254:3;15250:12;15243:19;;15035:233;;;;15277:325;;15437:67;15501:2;15496:3;15437:67;;;15430:74;;15537:27;15533:1;15528:3;15524:11;15517:48;15593:2;15588:3;15584:12;15577:19;;15423:179;;;;15611:374;;15771:67;15835:2;15830:3;15771:67;;;15764:74;;15871:34;15867:1;15862:3;15858:11;15851:55;15940:7;15935:2;15930:3;15926:12;15919:29;15976:2;15971:3;15967:12;15960:19;;15757:228;;;;15994:331;;16154:67;16218:2;16213:3;16154:67;;;16147:74;;16254:33;16250:1;16245:3;16241:11;16234:54;16316:2;16311:3;16307:12;16300:19;;16140:185;;;;16333:113;16416:24;16434:5;16416:24;;;16411:3;16404:37;16398:48;;;16453:271;;16606:93;16695:3;16686:6;16606:93;;;16599:100;;16716:3;16709:10;;16587:137;;;;;16731:222;;16858:2;16847:9;16843:18;16835:26;;16872:71;16940:1;16929:9;16925:17;16916:6;16872:71;;;16829:124;;;;;16960:460;;17151:2;17140:9;17136:18;17128:26;;17165:79;17241:1;17230:9;17226:17;17217:6;17165:79;;;17255:72;17323:2;17312:9;17308:18;17299:6;17255:72;;;17338;17406:2;17395:9;17391:18;17382:6;17338:72;;;17122:298;;;;;;;17427:349;;17590:2;17579:9;17575:18;17567:26;;17604:71;17672:1;17661:9;17657:17;17648:6;17604:71;;;17686:80;17762:2;17751:9;17747:18;17738:6;17686:80;;;17561:215;;;;;;17783:444;;17966:2;17955:9;17951:18;17943:26;;17980:71;18048:1;18037:9;18033:17;18024:6;17980:71;;;18062:72;18130:2;18119:9;18115:18;18106:6;18062:72;;;18145;18213:2;18202:9;18198:18;18189:6;18145:72;;;17937:290;;;;;;;18234:333;;18389:2;18378:9;18374:18;18366:26;;18403:71;18471:1;18460:9;18456:17;18447:6;18403:71;;;18485:72;18553:2;18542:9;18538:18;18529:6;18485:72;;;18360:207;;;;;;18574:370;;18751:2;18740:9;18736:18;18728:26;;18801:9;18795:4;18791:20;18787:1;18776:9;18772:17;18765:47;18826:108;18929:4;18920:6;18826:108;;;18818:116;;18722:222;;;;;18951:210;;19072:2;19061:9;19057:18;19049:26;;19086:65;19148:1;19137:9;19133:17;19124:6;19086:65;;;19043:118;;;;;19168:248;;19308:2;19297:9;19293:18;19285:26;;19322:84;19403:1;19392:9;19388:17;19379:6;19322:84;;;19279:137;;;;;19423:268;;19573:2;19562:9;19558:18;19550:26;;19587:94;19678:1;19667:9;19663:17;19654:6;19587:94;;;19544:147;;;;;19698:310;;19845:2;19834:9;19830:18;19822:26;;19895:9;19889:4;19885:20;19881:1;19870:9;19866:17;19859:47;19920:78;19993:4;19984:6;19920:78;;;19912:86;;19816:192;;;;;20015:416;;20215:2;20204:9;20200:18;20192:26;;20265:9;20259:4;20255:20;20251:1;20240:9;20236:17;20229:47;20290:131;20416:4;20290:131;;;20282:139;;20186:245;;;;20438:416;;20638:2;20627:9;20623:18;20615:26;;20688:9;20682:4;20678:20;20674:1;20663:9;20659:17;20652:47;20713:131;20839:4;20713:131;;;20705:139;;20609:245;;;;20861:416;;21061:2;21050:9;21046:18;21038:26;;21111:9;21105:4;21101:20;21097:1;21086:9;21082:17;21075:47;21136:131;21262:4;21136:131;;;21128:139;;21032:245;;;;21284:416;;21484:2;21473:9;21469:18;21461:26;;21534:9;21528:4;21524:20;21520:1;21509:9;21505:17;21498:47;21559:131;21685:4;21559:131;;;21551:139;;21455:245;;;;21707:416;;21907:2;21896:9;21892:18;21884:26;;21957:9;21951:4;21947:20;21943:1;21932:9;21928:17;21921:47;21982:131;22108:4;21982:131;;;21974:139;;21878:245;;;;22130:416;;22330:2;22319:9;22315:18;22307:26;;22380:9;22374:4;22370:20;22366:1;22355:9;22351:17;22344:47;22405:131;22531:4;22405:131;;;22397:139;;22301:245;;;;22553:416;;22753:2;22742:9;22738:18;22730:26;;22803:9;22797:4;22793:20;22789:1;22778:9;22774:17;22767:47;22828:131;22954:4;22828:131;;;22820:139;;22724:245;;;;22976:416;;23176:2;23165:9;23161:18;23153:26;;23226:9;23220:4;23216:20;23212:1;23201:9;23197:17;23190:47;23251:131;23377:4;23251:131;;;23243:139;;23147:245;;;;23399:416;;23599:2;23588:9;23584:18;23576:26;;23649:9;23643:4;23639:20;23635:1;23624:9;23620:17;23613:47;23674:131;23800:4;23674:131;;;23666:139;;23570:245;;;;23822:416;;24022:2;24011:9;24007:18;23999:26;;24072:9;24066:4;24062:20;24058:1;24047:9;24043:17;24036:47;24097:131;24223:4;24097:131;;;24089:139;;23993:245;;;;24245:416;;24445:2;24434:9;24430:18;24422:26;;24495:9;24489:4;24485:20;24481:1;24470:9;24466:17;24459:47;24520:131;24646:4;24520:131;;;24512:139;;24416:245;;;;24668:416;;24868:2;24857:9;24853:18;24845:26;;24918:9;24912:4;24908:20;24904:1;24893:9;24889:17;24882:47;24943:131;25069:4;24943:131;;;24935:139;;24839:245;;;;25091:416;;25291:2;25280:9;25276:18;25268:26;;25341:9;25335:4;25331:20;25327:1;25316:9;25312:17;25305:47;25366:131;25492:4;25366:131;;;25358:139;;25262:245;;;;25514:416;;25714:2;25703:9;25699:18;25691:26;;25764:9;25758:4;25754:20;25750:1;25739:9;25735:17;25728:47;25789:131;25915:4;25789:131;;;25781:139;;25685:245;;;;25937:416;;26137:2;26126:9;26122:18;26114:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26212:131;26338:4;26212:131;;;26204:139;;26108:245;;;;26360:416;;26560:2;26549:9;26545:18;26537:26;;26610:9;26604:4;26600:20;26596:1;26585:9;26581:17;26574:47;26635:131;26761:4;26635:131;;;26627:139;;26531:245;;;;26783:416;;26983:2;26972:9;26968:18;26960:26;;27033:9;27027:4;27023:20;27019:1;27008:9;27004:17;26997:47;27058:131;27184:4;27058:131;;;27050:139;;26954:245;;;;27206:416;;27406:2;27395:9;27391:18;27383:26;;27456:9;27450:4;27446:20;27442:1;27431:9;27427:17;27420:47;27481:131;27607:4;27481:131;;;27473:139;;27377:245;;;;27629:416;;27829:2;27818:9;27814:18;27806:26;;27879:9;27873:4;27869:20;27865:1;27854:9;27850:17;27843:47;27904:131;28030:4;27904:131;;;27896:139;;27800:245;;;;28052:416;;28252:2;28241:9;28237:18;28229:26;;28302:9;28296:4;28292:20;28288:1;28277:9;28273:17;28266:47;28327:131;28453:4;28327:131;;;28319:139;;28223:245;;;;28475:416;;28675:2;28664:9;28660:18;28652:26;;28725:9;28719:4;28715:20;28711:1;28700:9;28696:17;28689:47;28750:131;28876:4;28750:131;;;28742:139;;28646:245;;;;28898:416;;29098:2;29087:9;29083:18;29075:26;;29148:9;29142:4;29138:20;29134:1;29123:9;29119:17;29112:47;29173:131;29299:4;29173:131;;;29165:139;;29069:245;;;;29321:222;;29448:2;29437:9;29433:18;29425:26;;29462:71;29530:1;29519:9;29515:17;29506:6;29462:71;;;29419:124;;;;;29550:151;;29636:3;29628:11;;29674:4;29669:3;29665:14;29657:22;;29622:79;;;;29708:137;;29817:5;29811:12;29801:22;;29782:63;;;;29852:121;;29945:5;29939:12;29929:22;;29910:63;;;;29980:122;;30074:5;30068:12;30058:22;;30039:63;;;;30109:108;;30207:4;30202:3;30198:14;30190:22;;30184:33;;;;30225:178;;30355:6;30350:3;30343:19;30392:4;30387:3;30383:14;30368:29;;30336:67;;;;;30412:144;;30547:3;30532:18;;30525:31;;;;;30565:163;;30680:6;30675:3;30668:19;30717:4;30712:3;30708:14;30693:29;;30661:67;;;;;30736:91;;30798:24;30816:5;30798:24;;;30787:35;;30781:46;;;;30834:85;;30907:5;30900:13;30893:21;30882:32;;30876:43;;;;30926:104;;31001:24;31019:5;31001:24;;;30990:35;;30984:46;;;;31037:114;;31122:24;31140:5;31122:24;;;31111:35;;31105:46;;;;31158:121;;31231:42;31224:5;31220:54;31209:65;;31203:76;;;;31286:72;;31348:5;31337:16;;31331:27;;;;31365:129;;31452:37;31483:5;31452:37;;;31439:50;;31433:61;;;;31501:147;;31593:50;31637:5;31593:50;;;31580:63;;31574:74;;;;31655:121;;31747:24;31765:5;31747:24;;;31734:37;;31728:48;;;;31783:167;;31885:60;31939:5;31885:60;;;31872:73;;31866:84;;;;31957:131;;32059:24;32077:5;32059:24;;;32046:37;;32040:48;;;;32095:121;;32174:37;32205:5;32174:37;;;32161:50;;32155:61;;;;32223:108;;32302:24;32320:5;32302:24;;;32289:37;;32283:48;;;;32339:268;32404:1;32411:101;32425:6;32422:1;32419:13;32411:101;;;32501:1;32496:3;32492:11;32486:18;32482:1;32477:3;32473:11;32466:39;32447:2;32444:1;32440:10;32435:15;;32411:101;;;32527:6;32524:1;32521:13;32518:2;;;32592:1;32583:6;32578:3;32574:16;32567:27;32518:2;32388:219;;;;;32615:97;;32703:2;32699:7;32694:2;32687:5;32683:14;32679:28;32669:38;;32663:49;;;;32720:117;32789:24;32807:5;32789:24;;;32782:5;32779:35;32769:2;;32828:1;32825;32818:12;32769:2;32763:74;;32844:111;32910:21;32925:5;32910:21;;;32903:5;32900:32;32890:2;;32946:1;32943;32936:12;32890:2;32884:71;;32962:143;33044:37;33075:5;33044:37;;;33037:5;33034:48;33024:2;;33096:1;33093;33086:12;33024:2;33018:87;;33112:163;33204:47;33245:5;33204:47;;;33197:5;33194:58;33184:2;;33266:1;33263;33256:12;33184:2;33178:97;;33282:117;33351:24;33369:5;33351:24;;;33344:5;33341:35;33331:2;;33390:1;33387;33380:12;33331:2;33325:74;
Swarm Source
ipfs://c9c43e211a001cb1df10b308940e349b4cdf7a1a54dd4085f1cb4dc036d6119d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.02801 | 9,773,901.8139 | $273,765.35 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.