Contract Overview
Balance:
0 MOVR
MOVR Value:
$0.00
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xf68151a467CE39fB55F938135Ab83BBc7F2b0B7D
Contract Name:
GrowthVaultLaunch
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2021-11-20 */ // Sources flattened with hardhat v2.4.3 https://hardhat.org // File contracts/IStrategy.sol pragma solidity ^0.6.0; interface IStrategy { function want() external view returns (address); function deposit() external; function withdraw(uint256) external; function balanceOf() external view returns (uint256); function harvest() external; function harvestFromVault() external; function retireStrat() external; function setBuybackStrat(address _address) external; function setStakingMode(bool _b) external; function setReferralMode(bool _b) external; function setSwapPathRegistry(address _a) external; function setMinToLiquify(uint256 n) external; function transferOwnership(address _a) external; } // File contracts/Buybackstrat.sol pragma solidity ^0.6.0; interface Buybackstrat{ function performanceFeeBps() external view returns(uint); function withdrawalFeesBps() external view returns(uint); function setBuybackStrat() external; } // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.6.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/math/[email protected] pragma solidity ^0.6.0; /** * @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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.6.2; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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] pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using 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 @openzeppelin/contracts/GSN/[email protected] pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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/token/ERC20/[email protected] pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 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] pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File contracts/GrowthVaultLaunch.sol pragma solidity ^0.6.0; interface ISnapshot{ function registerUser(address user) external; } /** * @dev Implementation of a vault to deposit funds for yield optimizing. * This is the contract that receives funds and that users interface with. * The yield optimizing strategy itself is implemented in a separate 'Strategy.sol' contract. */ contract GrowthVaultLaunch is ERC20, Ownable, Pausable { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; struct StratCandidate { address implementation; uint proposedTime; } // The last proposed strategy to switch to. StratCandidate public stratCandidate; // The strategy currently in use by the vault. address public strategy; address public buybackstrat; // DEFUALT NONE FIRST ISnapshot public snapshotter; // The token the vault accepts and looks to maximize. IERC20 public token; // The minimum time it has to pass before a strat candidate can be approved. uint256 public approvalDelay; bool public harvestBeforeDeposit = true; uint256 public constant FEE_CAP = 30 * 100; // max fee possible 30% event NewStratCandidate(address implementation); event UpgradeStrat(address implementation); event SetHarvestBeforeDeposit(bool b); event SetSnapshotter(address a); event SetStrategy(address s); event ChangeApprovalDelay(uint256 t); event SetBuybackStrat(address a); mapping (address => uint256) public blockAtZeroCapital; mapping (address => uint256) public withdrawn; mapping (address => uint256) public deposited; event CapitalZeroed(address indexed user); event Withdraw(address indexed user, uint256 amtSharesBurned, uint256 amtTokRedemmed); event Deposit(address indexed user, uint256 amtSharesMinted, uint256 amtTokSent); event PricePerShareUpdated(uint256 pricePerShare); /** * @dev Sets the value of {token} to the token that the vault will * hold as underlying value. It initializes the vault's own '11' token. * This token is minted when someone does a deposit. It is burned in order * to withdraw the corresponding portion of the underlying assets. */ constructor (string memory name, string memory symbol, address stakingToken) public ERC20(name,symbol) { token = IERC20(stakingToken); // token = IERC20(0x4A81704d8C16d9FB0d7f61B747D0B5a272badf14); } function setHarvestBeforeDeposit(bool _b) external onlyOwner{ harvestBeforeDeposit = _b; emit SetHarvestBeforeDeposit(_b); } function setSnapshotter(address _a) external onlyOwner{ snapshotter = ISnapshot(_a); emit SetSnapshotter(_a); } bool canDo = true; function setStrategy(address _strategy) external onlyOwner{ require(canDo == true, "can't do"); require(_strategy != address(0), "no zero address!"); strategy = _strategy; canDo = false; emit SetStrategy(_strategy); } function changeApprovalDelay(uint _time) public onlyOwner{ require(approvalDelay < 7 days, "too much time"); require(_time > approvalDelay, "approval delay can only increase"); approvalDelay = _time; emit ChangeApprovalDelay(_time); } function balance() public view returns (uint) { return token.balanceOf(address(this)).add(IStrategy(strategy).balanceOf()); } /** * @dev Custom logic in here for how much the vault allows to be borrowed. * We return 100% of tokens for now. Under certain conditions we might * want to keep some of the system funds at hand in the vault, instead * of putting them to work. */ function available() public view returns (uint256) { return token.balanceOf(address(this)); } /** * @dev Function for various UIs to display the current value of one of our yield tokens. * Returns an uint256 with 18 decimals of how much underlying asset one vault share represents. */ function getPricePerFullShare() public view returns (uint256) { if (totalSupply()==0){ return 0; } return balance().mul(1e18).div(totalSupply()); } /** * @dev A helper function to call deposit() with all the sender's funds. */ function depositAll() external { deposit(token.balanceOf(msg.sender)); } /** * @dev The entrypoint of funds into the system. People deposit with this function * into the vault. The vault is then in charge of sending funds into the strategy. */ function deposit(uint _amount) public { if (address(snapshotter) != address(0)){ snapshotter.registerUser(msg.sender); } if (harvestBeforeDeposit){ IStrategy(strategy).harvestFromVault(); // distribute rewards first to current stakers } uint256 _pool = balance(); token.safeTransferFrom(msg.sender, address(this), _amount); earn(); uint256 _poolAfter = balance(); _amount = _poolAfter.sub(_pool); // Additional check for deflationary tokens uint256 shares = 0; if (totalSupply() == 0) { shares = _amount; } else { shares = (_amount.mul(totalSupply())).div(_pool); } _mint(msg.sender, shares); emit Deposit(msg.sender, shares, _amount); } /** * @dev Function to send funds into the strategy and put them to work. It's primarily called * by the vault's deposit() function. */ function earn() public { uint _bal = available(); token.safeTransfer(strategy, _bal); IStrategy(strategy).deposit(); } /** * @dev A helper function to call withdraw() with all the sender's funds. */ function withdrawAll() external { withdraw(balanceOf(msg.sender)); } /** * @dev Function to exit the system. The vault will withdraw the required tokens * from the strategy and pay up the token holder. A proportional number of IOU * tokens are burned in the process. */ function withdraw(uint256 _shares) public { if (harvestBeforeDeposit){ IStrategy(strategy).harvestFromVault(); // distribute rewards first to current stakers } uint256 r = (balance().mul(_shares)).div(totalSupply()); _burn(msg.sender, _shares); uint b = token.balanceOf(address(this)); if (b < r) { uint _withdraw = r.sub(b); IStrategy(strategy).withdraw(_withdraw); uint _after = token.balanceOf(address(this)); uint _diff = _after.sub(b); if (_diff < _withdraw) { r = b.add(_diff); } } emit Withdraw(msg.sender, _shares, r); if (buybackstrat != address(0)){ uint256 fee = r.mul(getWithdrawFee()).div(10000); r = r.sub(fee); token.safeTransfer(buybackstrat, fee); } token.safeTransfer(msg.sender, r); uint256 left = balanceOf(msg.sender); if (left == 0){ blockAtZeroCapital[msg.sender] = block.number; emit CapitalZeroed(msg.sender); } } function getWithdrawFee() public view returns (uint) { uint256 fee = Buybackstrat(buybackstrat).withdrawalFeesBps(); if (fee > FEE_CAP) { fee = FEE_CAP; } return fee; } /** * @dev Sets the candidate for the new strat to use with this vault. * @param _implementation The address of the candidate strategy. */ function proposeStrat(address _implementation) public onlyOwner { stratCandidate = StratCandidate({ implementation: _implementation, proposedTime: block.timestamp }); emit NewStratCandidate(_implementation); } /** * @dev It switches the active strat for the strat candidate. After upgrading, the * candidate implementation is set to the 0x00 address, and proposedTime to a time * happening in +100 years for safety. */ function upgradeStrat() public onlyOwner { require(stratCandidate.implementation != address(0), "There is no candidate"); require(stratCandidate.implementation != strategy, "Cannot upgrade to same strategy!"); require(stratCandidate.proposedTime.add(approvalDelay) < block.timestamp, "Delay has not passed"); emit UpgradeStrat(stratCandidate.implementation); address oldStrategy = strategy; IStrategy(strategy).retireStrat(); strategy = stratCandidate.implementation; stratCandidate.implementation = address(0); stratCandidate.proposedTime = 5000000000; earn(); // return ownership to owner IStrategy(oldStrategy).transferOwnership(owner()); } function setBuybackStrat(address _address) public onlyOwner{ buybackstrat = _address; IStrategy(strategy).setBuybackStrat(_address); emit SetBuybackStrat(_address); } function setStakingMode(bool _b) external onlyOwner{ IStrategy(strategy).setStakingMode(_b); } function setReferralMode(bool _b) external onlyOwner{ IStrategy(strategy).setReferralMode(_b); } function setSwapPathRegistry(address _a) external onlyOwner{ IStrategy(strategy).setSwapPathRegistry(_a); } function setMinToLiquify(uint256 n) external onlyOwner{ IStrategy(strategy).setMinToLiquify(n); } function updatePricePerShare() public { emit PricePerShareUpdated(getPricePerFullShare()); } }
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"stakingToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"CapitalZeroed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"t","type":"uint256"}],"name":"ChangeApprovalDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amtSharesMinted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amtTokSent","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"NewStratCandidate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pricePerShare","type":"uint256"}],"name":"PricePerShareUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"a","type":"address"}],"name":"SetBuybackStrat","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"b","type":"bool"}],"name":"SetHarvestBeforeDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"a","type":"address"}],"name":"SetSnapshotter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"s","type":"address"}],"name":"SetStrategy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"UpgradeStrat","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amtSharesBurned","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amtTokRedemmed","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"approvalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blockAtZeroCapital","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackstrat","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"changeApprovalDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPricePerFullShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvestBeforeDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"name":"proposeStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setBuybackStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_b","type":"bool"}],"name":"setHarvestBeforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setMinToLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_b","type":"bool"}],"name":"setReferralMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setSnapshotter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_b","type":"bool"}],"name":"setStakingMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"setStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setSwapPathRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshotter","outputs":[{"internalType":"contract ISnapshot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stratCandidate","outputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"uint256","name":"proposedTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePricePerShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradeStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600d8054600160ff1991821681179092556011805490911690911790553480156200002e57600080fd5b5060405162002f4238038062002f42833981810160405260608110156200005457600080fd5b81019080805160405193929190846401000000008211156200007557600080fd5b9083019060208201858111156200008b57600080fd5b8251640100000000811182820188101715620000a657600080fd5b82525081516020918201929091019080838360005b83811015620000d5578181015183820152602001620000bb565b50505050905090810190601f168015620001035780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012757600080fd5b9083019060208201858111156200013d57600080fd5b82516401000000008111828201881017156200015857600080fd5b82525081516020918201929091019080838360005b83811015620001875781810151838201526020016200016d565b50505050905090810190601f168015620001b55780820380516001836020036101000a031916815260200191505b5060405260209081015185519093508592508491620001da916003918501906200029c565b508051620001f09060049060208401906200029c565b50506005805460ff191660121790555060006200020c62000298565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005805460ff60a81b19169055600b80546001600160a01b0319166001600160a01b039290921691909117905550620003389050565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002df57805160ff19168380011785556200030f565b828001600101855582156200030f579182015b828111156200030f578251825591602001919060010190620002f2565b506200031d92915062000321565b5090565b5b808211156200031d576000815560010162000322565b612bfa80620003486000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c8063853828b611610167578063d2cd9444116100ce578063e668524411610087578063e668524414610741578063ee6a253314610749578063f2fde38b14610751578063f3acbb0314610777578063f6b22a9b1461077f578063fc0c546a146107a557610295565b8063d2cd9444146106b6578063d389800f146106dc578063d8ad1e60146106e4578063dd62ed3e14610703578063de5f626814610731578063e2d1e75c1461073957610295565b8063a9059cbb11610120578063a9059cbb14610618578063b1e4605f14610644578063b69ef8a814610663578063b6b55f251461066b578063cb13cddb14610688578063cc4638c1146106ae57610295565b8063853828b6146105a65780638da5cb5b146105ae57806395d89b41146105b6578063a457c2d7146105be578063a7524f25146105ea578063a8c62e761461061057610295565b806340b862241161020b57806370a08231116101c457806370a0823114610500578063715018a61461052657806376dfabb81461052e57806377c7b8fc146105595780637c512622146105615780637d034b131461058757610295565b806340b862241461046357806348a0d754146104875780635b12ff9b1461048f5780635c975abb146104b55780636ef61092146104bd5780636fa9deaf146104e357610295565b806323b872dd1161025d57806323b872dd146103815780632650a613146103b75780632e1a7d4d146103d6578063313ce567146103f357806333a100ca14610411578063395093511461043757610295565b806306fdde031461029a578063095ea7b31461031757806314e048ba146103575780631540aa891461037157806318160ddd14610379575b600080fd5b6102a26107ad565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103436004803603604081101561032d57600080fd5b506001600160a01b038135169060200135610844565b604080519115158252519081900360200190f35b61035f610862565b60408051918252519081900360200190f35b61035f610868565b61035f6108fb565b6103436004803603606081101561039757600080fd5b506001600160a01b03813581169160208101359091169060400135610901565b6103d4600480360360208110156103cd57600080fd5b5035610988565b005b6103d4600480360360208110156103ec57600080fd5b5035610abf565b6103fb610df6565b6040805160ff9092168252519081900360200190f35b6103d46004803603602081101561042757600080fd5b50356001600160a01b0316610dff565b6103436004803603604081101561044d57600080fd5b506001600160a01b038135169060200135610f4f565b61046b610f9d565b604080516001600160a01b039092168252519081900360200190f35b61035f610fac565b6103d4600480360360208110156104a557600080fd5b50356001600160a01b0316611028565b6103436110ed565b61035f600480360360208110156104d357600080fd5b50356001600160a01b03166110fd565b6103d4600480360360208110156104f957600080fd5b503561110f565b61035f6004803603602081101561051657600080fd5b50356001600160a01b03166111d4565b6103d46111ef565b61053661129c565b604080516001600160a01b03909316835260208301919091528051918290030190f35b61035f6112b1565b6103d46004803603602081101561057757600080fd5b50356001600160a01b03166112e6565b6103d46004803603602081101561059d57600080fd5b503515156113fe565b6103d46114a9565b61046b6114bc565b6102a26114d0565b610343600480360360408110156105d457600080fd5b506001600160a01b038135169060200135611531565b6103d46004803603602081101561060057600080fd5b50356001600160a01b0316611599565b61046b61164a565b6103436004803603604081101561062e57600080fd5b506001600160a01b038135169060200135611659565b6103d46004803603602081101561065a57600080fd5b5035151561166d565b61035f611711565b6103d46004803603602081101561068157600080fd5b503561180d565b61035f6004803603602081101561069e57600080fd5b50356001600160a01b03166119b4565b6103d46119c6565b6103d4600480360360208110156106cc57600080fd5b50356001600160a01b0316611a02565b6103d4611aad565b6103d4600480360360208110156106fa57600080fd5b50351515611b27565b61035f6004803603604081101561071957600080fd5b506001600160a01b0381358116916020013516611bd2565b6103d4611bfd565b61035f611c7a565b6103d4611c80565b61046b611f1d565b6103d46004803603602081101561076757600080fd5b50356001600160a01b0316611f2c565b610343612035565b61035f6004803603602081101561079557600080fd5b50356001600160a01b031661203e565b61046b612050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b505050505090505b90565b600061085861085161205f565b8484612063565b5060015b92915050565b610bb881565b600080600960009054906101000a90046001600160a01b03166001600160a01b031663ec7502c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156108b957600080fd5b505afa1580156108cd573d6000803e3d6000fd5b505050506040513d60208110156108e357600080fd5b50519050610bb88111156108f65750610bb85b905090565b60025490565b600061090e84848461214f565b61097e8461091a61205f565b61097985604051806060016040528060288152602001612ac4602891396001600160a01b038a1660009081526001602052604081209061095861205f565b6001600160a01b0316815260208101919091526040016000205491906122aa565b612063565b5060019392505050565b61099061205f565b60055461010090046001600160a01b039081169116146109e5576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b62093a80600c5410610a2e576040805162461bcd60e51b815260206004820152600d60248201526c746f6f206d7563682074696d6560981b604482015290519081900360640190fd5b600c548111610a84576040805162461bcd60e51b815260206004820181905260248201527f617070726f76616c2064656c61792063616e206f6e6c7920696e637265617365604482015290519081900360640190fd5b600c8190556040805182815290517fc16ac66605b051a9a9c0584f975a40a3ab778ff24acea699014aa02a6ce5954e9181900360200190a150565b600d5460ff1615610b3357600860009054906101000a90046001600160a01b03166001600160a01b03166304f5606c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b1a57600080fd5b505af1158015610b2e573d6000803e3d6000fd5b505050505b6000610b58610b406108fb565b610b5284610b4c611711565b90612341565b906123a1565b9050610b6433836123e3565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610baf57600080fd5b505afa158015610bc3573d6000803e3d6000fd5b505050506040513d6020811015610bd957600080fd5b5051905081811015610cfb576000610bf183836124df565b60085460408051632e1a7d4d60e01b81526004810184905290519293506001600160a01b0390911691632e1a7d4d9160248082019260009290919082900301818387803b158015610c4157600080fd5b505af1158015610c55573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015610ca657600080fd5b505afa158015610cba573d6000803e3d6000fd5b505050506040513d6020811015610cd057600080fd5b505190506000610ce082856124df565b905082811015610cf757610cf48482612521565b94505b5050505b6040805184815260208101849052815133927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568928290030190a26009546001600160a01b031615610d8e576000610d60612710610b52610d59610868565b8690612341565b9050610d6c83826124df565b600954600b54919450610d8c916001600160a01b0390811691168361257b565b505b600b54610da5906001600160a01b0316338461257b565b6000610db0336111d4565b905080610df057336000818152600e6020526040808220439055517f60d5e92c09c5c3f8a812a1930dda6c70495693f27865e810bdaec04c8b0a718e9190a25b50505050565b60055460ff1690565b610e0761205f565b60055461010090046001600160a01b03908116911614610e5c576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b60115460ff161515600114610ea3576040805162461bcd60e51b815260206004820152600860248201526763616e277420646f60c01b604482015290519081900360640190fd5b6001600160a01b038116610ef1576040805162461bcd60e51b815260206004820152601060248201526f6e6f207a65726f20616464726573732160801b604482015290519081900360640190fd5b600880546001600160a01b0383166001600160a01b031990911681179091556011805460ff1916905560408051918252517f3412691e1ea2503d6eec15597247048016213c19646b73d4320a20c790b67ee29181900360200190a150565b6000610858610f5c61205f565b846109798560016000610f6d61205f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612521565b6009546001600160a01b031681565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610ff757600080fd5b505afa15801561100b573d6000803e3d6000fd5b505050506040513d602081101561102157600080fd5b5051905090565b61103061205f565b60055461010090046001600160a01b03908116911614611085576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b6040805180820182526001600160a01b038316808252426020928301819052600680546001600160a01b03191683179055600755825190815291517f1aae2ec5647db56da2d513de40528ba3565c6057525637050660c4323bbac7df9281900390910190a150565b600554600160a81b900460ff1690565b600f6020526000908152604090205481565b61111761205f565b60055461010090046001600160a01b0390811691161461116c576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b60085460408051636fa9deaf60e01b81526004810184905290516001600160a01b0390921691636fa9deaf9160248082019260009290919082900301818387803b1580156111b957600080fd5b505af11580156111cd573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b6111f761205f565b60055461010090046001600160a01b0390811691161461124c576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6006546007546001600160a01b039091169082565b60006112bb6108fb565b6112c757506000610841565b6108f66112d26108fb565b610b52670de0b6b3a7640000610b4c611711565b6112ee61205f565b60055461010090046001600160a01b03908116911614611343576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0383811691821790925560085460408051633e28931160e11b8152600481019390935251921691637c5126229160248082019260009290919082900301818387803b1580156113a657600080fd5b505af11580156113ba573d6000803e3d6000fd5b5050604080516001600160a01b038516815290517f12403b51931b693f55f41580223367d0078958e2b10a73ad94ec11cea0fa97fd9350908190036020019150a150565b61140661205f565b60055461010090046001600160a01b0390811691161461145b576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b60085460408051637d034b1360e01b8152831515600482015290516001600160a01b0390921691637d034b139160248082019260009290919082900301818387803b1580156111b957600080fd5b6114ba6114b5336111d4565b610abf565b565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b600061085861153e61205f565b8461097985604051806060016040528060258152602001612ba0602591396001600061156861205f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122aa565b6115a161205f565b60055461010090046001600160a01b039081169116146115f6576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b600a80546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f429153f0c9cd6f4427bd8681b5d85a06c92060fc280ba9663404473d366754d19181900360200190a150565b6008546001600160a01b031681565b600061085861166661205f565b848461214f565b61167561205f565b60055461010090046001600160a01b039081169116146116ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b600d805482151560ff19909116811790915560408051918252517f11b1c85adf225d07155ce13a15ded8ae0feab77a8a670e341eeb239580bdc56b9181900360200190a150565b60006108f6600860009054906101000a90046001600160a01b03166001600160a01b031663722713f76040518163ffffffff1660e01b815260040160206040518083038186803b15801561176457600080fd5b505afa158015611778573d6000803e3d6000fd5b505050506040513d602081101561178e57600080fd5b5051600b54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156117db57600080fd5b505afa1580156117ef573d6000803e3d6000fd5b505050506040513d602081101561180557600080fd5b505190612521565b600a546001600160a01b03161561188357600a5460408051632199d5cd60e01b815233600482015290516001600160a01b0390921691632199d5cd9160248082019260009290919082900301818387803b15801561186a57600080fd5b505af115801561187e573d6000803e3d6000fd5b505050505b600d5460ff16156118f757600860009054906101000a90046001600160a01b03166001600160a01b03166304f5606c6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156118de57600080fd5b505af11580156118f2573d6000803e3d6000fd5b505050505b6000611901611711565b600b5490915061191c906001600160a01b03163330856125d2565b611924611aad565b600061192e611711565b905061193a81836124df565b925060006119466108fb565b61195157508261196a565b61196783610b526119606108fb565b8790612341565b90505b611974338261262c565b6040805182815260208101869052815133927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15928290030190a250505050565b60106020526000908152604090205481565b7f0f21cdb2770ba48204923d42790cd5cdcc616596728f27176e89974e72f36cea6119ef6112b1565b60408051918252519081900360200190a1565b611a0a61205f565b60055461010090046001600160a01b03908116911614611a5f576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b600854604080516334b3651160e21b81526001600160a01b0384811660048301529151919092169163d2cd944491602480830192600092919082900301818387803b1580156111b957600080fd5b6000611ab7610fac565b600854600b54919250611ad7916001600160a01b0390811691168361257b565b600860009054906101000a90046001600160a01b03166001600160a01b031663d0e30db06040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111b957600080fd5b611b2f61205f565b60055461010090046001600160a01b03908116911614611b84576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b600854604080516306c568f360e51b8152831515600482015290516001600160a01b039092169163d8ad1e609160248082019260009290919082900301818387803b1580156111b957600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b54604080516370a0823160e01b815233600482015290516114ba926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c4957600080fd5b505afa158015611c5d573d6000803e3d6000fd5b505050506040513d6020811015611c7357600080fd5b505161180d565b600c5481565b611c8861205f565b60055461010090046001600160a01b03908116911614611cdd576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b6006546001600160a01b0316611d32576040805162461bcd60e51b81526020600482015260156024820152745468657265206973206e6f2063616e64696461746560581b604482015290519081900360640190fd5b6008546006546001600160a01b0390811691161415611d98576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f74207570677261646520746f2073616d6520737472617465677921604482015290519081900360640190fd5b600c546007544291611daa9190612521565b10611df3576040805162461bcd60e51b815260206004820152601460248201527311195b185e481a185cc81b9bdd081c185cdcd95960621b604482015290519081900360640190fd5b600654604080516001600160a01b039092168252517f7f37d440e85aba7fbf641c4bda5ca4ef669a80bffaacde2aa8d9feb1b048c82c9181900360200190a16008546040805163fb61778760e01b815290516001600160a01b0390921691829163fb61778791600480830192600092919082900301818387803b158015611e7957600080fd5b505af1158015611e8d573d6000803e3d6000fd5b505060068054600880546001600160a01b03199081166001600160a01b03841617909155169055505064012a05f200600755611ec7611aad565b806001600160a01b031663f2fde38b611ede6114bc565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156111b957600080fd5b600a546001600160a01b031681565b611f3461205f565b60055461010090046001600160a01b03908116911614611f89576040805162461bcd60e51b81526020600482018190526024820152600080516020612aec833981519152604482015290519081900360640190fd5b6001600160a01b038116611fce5760405162461bcd60e51b8152600401808060200182810382526026815260200180612a356026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d5460ff1681565b600e6020526000908152604090205481565b600b546001600160a01b031681565b3390565b6001600160a01b0383166120a85760405162461bcd60e51b8152600401808060200182810382526024815260200180612b526024913960400191505060405180910390fd5b6001600160a01b0382166120ed5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a5b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166121945760405162461bcd60e51b8152600401808060200182810382526025815260200180612b2d6025913960400191505060405180910390fd5b6001600160a01b0382166121d95760405162461bcd60e51b81526004018080602001828103825260238152602001806129f06023913960400191505060405180910390fd5b6121e48383836125cd565b61222181604051806060016040528060268152602001612a7d602691396001600160a01b03861660009081526020819052604090205491906122aa565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122509082612521565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156123395760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122fe5781810151838201526020016122e6565b50505050905090810190601f16801561232b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000826123505750600061085c565b8282028284828161235d57fe5b041461239a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612aa36021913960400191505060405180910390fd5b9392505050565b600061239a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061271c565b6001600160a01b0382166124285760405162461bcd60e51b8152600401808060200182810382526021815260200180612b0c6021913960400191505060405180910390fd5b612434826000836125cd565b61247181604051806060016040528060228152602001612a13602291396001600160a01b03851660009081526020819052604090205491906122aa565b6001600160a01b03831660009081526020819052604090205560025461249790826124df565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061239a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122aa565b60008282018381101561239a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526125cd908490612781565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610df0908590612781565b6001600160a01b038216612687576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612693600083836125cd565b6002546126a09082612521565b6002556001600160a01b0382166000908152602081905260409020546126c69082612521565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818361276b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122fe5781810151838201526020016122e6565b50600083858161277757fe5b0495945050505050565b60606127d6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128329092919063ffffffff16565b8051909150156125cd578080602001905160208110156127f557600080fd5b50516125cd5760405162461bcd60e51b815260040180806020018281038252602a815260200180612b76602a913960400191505060405180910390fd5b60606128418484600085612849565b949350505050565b6060612854856129b6565b6128a5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106128e45780518252601f1990920191602091820191016128c5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612946576040519150601f19603f3d011682016040523d82523d6000602084013e61294b565b606091505b5091509150811561295f5791506128419050565b80511561296f5780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156122fe5781810151838201526020016122e6565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061284157505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208e52a08fed498015a3a1b64424e1a2ada7e17243f0be227bf818b95d808d89ce64736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007eda899b3522683636746a2f3a7814e6ffca75e100000000000000000000000000000000000000000000000000000000000000184d4f4f4e4b4146452d534f4c41524d4f56522d534f4c4152000000000000000000000000000000000000000000000000000000000000000000000000000000184d4f4f4e4b4146452d534f4c41524d4f56522d534f4c41520000000000000000
Deployed ByteCode Sourcemap
36225:9682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22455:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24561:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24561:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;37024:42;;;:::i;:::-;;;;;;;;;;;;;;;;43414:222;;;:::i;23530:100::-;;;:::i;25204:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25204:321:0;;;;;;;;;;;;;;;;;:::i;39000:275::-;;;;;;;;;;;;;;;;-1:-1:-1;39000:275:0;;:::i;:::-;;42252:1152;;;;;;;;;;;;;;;;-1:-1:-1;42252:1152:0;;:::i;23382:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38725:267;;;;;;;;;;;;;;;;-1:-1:-1;38725:267:0;-1:-1:-1;;;;;38725:267:0;;:::i;25934:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25934:218:0;;;;;;;;:::i;36677:27::-;;;:::i;:::-;;;;-1:-1:-1;;;;;36677:27:0;;;;;;;;;;;;;;39724:107;;;:::i;43807:271::-;;;;;;;;;;;;;;;;-1:-1:-1;43807:271:0;-1:-1:-1;;;;;43807:271:0;;:::i;34648:78::-;;;:::i;37466:45::-;;;;;;;;;;;;;;;;-1:-1:-1;37466:45:0;-1:-1:-1;;;;;37466:45:0;;:::i;45679:111::-;;;;;;;;;;;;;;;;-1:-1:-1;45679:111:0;;:::i;23693:119::-;;;;;;;;;;;;;;;;-1:-1:-1;23693:119:0;-1:-1:-1;;;;;23693:119:0;;:::i;33016:148::-;;;:::i;36551:36::-;;;:::i;:::-;;;;-1:-1:-1;;;;;36551:36:0;;;;;;;;;;;;;;;;;;;;;40053:192;;;:::i;45118:198::-;;;;;;;;;;;;;;;;-1:-1:-1;45118:198:0;-1:-1:-1;;;;;45118:198:0;;:::i;45436:110::-;;;;;;;;;;;;;;;;-1:-1:-1;45436:110:0;;;;:::i;41932:82::-;;;:::i;32374:79::-;;;:::i;22657:87::-;;;:::i;26655:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26655:269:0;;;;;;;;:::i;38559:134::-;;;;;;;;;;;;;;;;-1:-1:-1;38559:134:0;-1:-1:-1;;;;;38559:134:0;;:::i;36647:23::-;;;:::i;24025:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24025:175:0;;;;;;;;:::i;38404:147::-;;;;;;;;;;;;;;;;-1:-1:-1;38404:147:0;;;;:::i;39287:139::-;;;:::i;40637:873::-;;;;;;;;;;;;;;;;-1:-1:-1;40637:873:0;;:::i;37518:45::-;;;;;;;;;;;;;;;;-1:-1:-1;37518:45:0;-1:-1:-1;;;;;37518:45:0;;:::i;45796:106::-;;;:::i;45552:121::-;;;;;;;;;;;;;;;;-1:-1:-1;45552:121:0;-1:-1:-1;;;;;45552:121:0;;:::i;41677:150::-;;;:::i;45322:108::-;;;;;;;;;;;;;;;;-1:-1:-1;45322:108:0;;;;:::i;24263:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24263:151:0;;;;;;;;;;:::i;40349:86::-;;;:::i;36941:28::-;;;:::i;44330:780::-;;;:::i;36733:28::-;;;:::i;33319:244::-;;;;;;;;;;;;;;;;-1:-1:-1;33319:244:0;-1:-1:-1;;;;;33319:244:0;;:::i;36978:39::-;;;:::i;37405:54::-;;;;;;;;;;;;;;;;-1:-1:-1;37405:54:0;-1:-1:-1;;;;;37405:54:0;;:::i;36833:19::-;;;:::i;22455:83::-;22525:5;22518:12;;;;;;;;-1:-1:-1;;22518:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22492:13;;22518:12;;22525:5;;22518:12;;22525:5;22518:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22455:83;;:::o;24561:169::-;24644:4;24661:39;24670:12;:10;:12::i;:::-;24684:7;24693:6;24661:8;:39::i;:::-;-1:-1:-1;24718:4:0;24561:169;;;;;:::o;37024:42::-;37058:8;37024:42;:::o;43414:222::-;43461:4;43478:11;43505:12;;;;;;;;;-1:-1:-1;;;;;43505:12:0;-1:-1:-1;;;;;43492:44:0;;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43492:46:0;;-1:-1:-1;37058:8:0;43553:13;;43549:59;;;-1:-1:-1;37058:8:0;43549:59;43625:3;-1:-1:-1;43414:222:0;:::o;23530:100::-;23610:12;;23530:100;:::o;25204:321::-;25310:4;25327:36;25337:6;25345:9;25356:6;25327:9;:36::i;:::-;25374:121;25383:6;25391:12;:10;:12::i;:::-;25405:89;25443:6;25405:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25405:19:0;;;;;;:11;:19;;;;;;25425:12;:10;:12::i;:::-;-1:-1:-1;;;;;25405:33:0;;;;;;;;;;;;-1:-1:-1;25405:33:0;;;:89;:37;:89::i;:::-;25374:8;:121::i;:::-;-1:-1:-1;25513:4:0;25204:321;;;;;:::o;39000:275::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;39092:6:::1;39076:13;;:22;39068:48;;;::::0;;-1:-1:-1;;;39068:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39068:48:0;;;;;;;;;;;;;::::1;;39143:13;;39135:5;:21;39127:66;;;::::0;;-1:-1:-1;;;39127:66:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39204:13;:21:::0;;;39241:26:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;39000:275:::0;:::o;42252:1152::-;42309:20;;;;42305:137;;;42355:8;;;;;;;;;-1:-1:-1;;;;;42355:8:0;-1:-1:-1;;;;;42345:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42305:137;42454:9;42466:43;42495:13;:11;:13::i;:::-;42467:22;42481:7;42467:9;:7;:9::i;:::-;:13;;:22::i;:::-;42466:28;;:43::i;:::-;42454:55;;42520:26;42526:10;42538:7;42520:5;:26::i;:::-;42568:5;;:30;;;-1:-1:-1;;;42568:30:0;;42592:4;42568:30;;;;;;42559:6;;-1:-1:-1;;;;;42568:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42568:30:0;;-1:-1:-1;42613:5:0;;;42609:305;;;42635:14;42652:8;:1;42658;42652:5;:8::i;:::-;42685;;42675:39;;;-1:-1:-1;;;42675:39:0;;;;;;;;;;42635:25;;-1:-1:-1;;;;;;42685:8:0;;;;42675:28;;:39;;;;;42685:8;;42675:39;;;;;;;;42685:8;;42675:39;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42743:5:0;;:30;;;-1:-1:-1;;;42743:30:0;;42767:4;42743:30;;;;;;42729:11;;-1:-1:-1;;;;;;42743:5:0;;;;-1:-1:-1;42743:15:0;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42743:30:0;;-1:-1:-1;42788:10:0;42801:13;42743:30;42812:1;42801:10;:13::i;:::-;42788:26;;42841:9;42833:5;:17;42829:74;;;42875:12;:1;42881:5;42875;:12::i;:::-;42871:16;;42829:74;42609:305;;;;42929:32;;;;;;;;;;;;;;42938:10;;42929:32;;;;;;;;42978:12;;-1:-1:-1;;;;;42978:12:0;:26;42974:187;;43020:11;43034:34;43062:5;43034:23;43040:16;:14;:16::i;:::-;43034:1;;:5;:23::i;:34::-;43020:48;-1:-1:-1;43087:10:0;:1;43020:48;43087:5;:10::i;:::-;43131:12;;43112:5;;43083:14;;-1:-1:-1;43112:37:0;;-1:-1:-1;;;;;43112:5:0;;;;43131:12;43145:3;43112:18;:37::i;:::-;42974:187;;43171:5;;:33;;-1:-1:-1;;;;;43171:5:0;43190:10;43202:1;43171:18;:33::i;:::-;43217:12;43232:21;43242:10;43232:9;:21::i;:::-;43217:36;-1:-1:-1;43268:9:0;43264:131;;43312:10;43293:30;;;;:18;:30;;;;;;43326:12;43293:45;;43358:25;;;43293:30;43358:25;43264:131;42252:1152;;;;:::o;23382:83::-;23448:9;;;;23382:83;:::o;38725:267::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;38802:5:::1;::::0;::::1;;:13;;:5:::0;:13:::1;38794:34;;;::::0;;-1:-1:-1;;;38794:34:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38794:34:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;38847:23:0;::::1;38839:52;;;::::0;;-1:-1:-1;;;38839:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38839:52:0;;;;;;;;;;;;;::::1;;38902:8;:20:::0;;-1:-1:-1;;;;;38902:20:0;::::1;-1:-1:-1::0;;;;;;38902:20:0;;::::1;::::0;::::1;::::0;;;38933:5:::1;:13:::0;;-1:-1:-1;;38933:13:0::1;::::0;;38962:22:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38725:267:::0;:::o;25934:218::-;26022:4;26039:83;26048:12;:10;:12::i;:::-;26062:7;26071:50;26110:10;26071:11;:25;26083:12;:10;:12::i;:::-;-1:-1:-1;;;;;26071:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26071:25:0;;;:34;;;;;;;;;;;:38;:50::i;36677:27::-;;;-1:-1:-1;;;;;36677:27:0;;:::o;39724:107::-;39793:5;;:30;;;-1:-1:-1;;;39793:30:0;;39817:4;39793:30;;;;;;39766:7;;-1:-1:-1;;;;;39793:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39793:30:0;;-1:-1:-1;39724:107:0;:::o;43807:271::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;43899:119:::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;43899:119:0;::::1;::::0;;;43990:15:::1;43899:119;::::0;;::::1;::::0;;;43882:14:::1;:136:::0;;-1:-1:-1;;;;;;43882:136:0::1;::::0;::::1;::::0;;;;44036:34;;;;;;;::::1;::::0;;;;;;;;::::1;43807:271:::0;:::o;34648:78::-;34711:7;;-1:-1:-1;;;34711:7:0;;;;;34648:78::o;37466:45::-;;;;;;;;;;;;;:::o;45679:111::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;45754:8:::1;::::0;45744:38:::1;::::0;;-1:-1:-1;;;45744:38:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;45754:8:0;;::::1;::::0;45744:35:::1;::::0;:38;;;;;45754:8:::1;::::0;45744:38;;;;;;;;45754:8;;45744:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45679:111:::0;:::o;23693:119::-;-1:-1:-1;;;;;23786:18:0;23759:7;23786:18;;;;;;;;;;;;23693:119::o;33016:148::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;33107:6:::1;::::0;33086:40:::1;::::0;33123:1:::1;::::0;33107:6:::1;::::0;::::1;-1:-1:-1::0;;;;;33107:6:0::1;::::0;33086:40:::1;::::0;33123:1;;33086:40:::1;33137:6;:19:::0;;-1:-1:-1;;;;;;33137:19:0::1;::::0;;33016:148::o;36551:36::-;;;;;-1:-1:-1;;;;;36551:36:0;;;;;:::o;40053:192::-;40106:7;40130:13;:11;:13::i;:::-;40126:56;;-1:-1:-1;40169:1:0;40162:8;;40126:56;40199:38;40223:13;:11;:13::i;:::-;40199:19;40213:4;40199:9;:7;:9::i;45118:198::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;45188:12:::1;:23:::0;;-1:-1:-1;;;;;;45188:23:0::1;-1:-1:-1::0;;;;;45188:23:0;;::::1;::::0;;::::1;::::0;;;45232:8:::1;::::0;45222:45:::1;::::0;;-1:-1:-1;;;45222:45:0;;::::1;::::0;::::1;::::0;;;;;45232:8;::::1;::::0;45222:35:::1;::::0;:45;;;;;-1:-1:-1;;45222:45:0;;;;;;;;-1:-1:-1;45232:8:0;45222:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;45283:25:0::1;::::0;;-1:-1:-1;;;;;45283:25:0;::::1;::::0;;;;::::1;::::0;-1:-1:-1;45283:25:0;;;;::::1;::::0;;-1:-1:-1;45283:25:0::1;45118:198:::0;:::o;45436:110::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;45509:8:::1;::::0;45499:39:::1;::::0;;-1:-1:-1;;;45499:39:0;;;::::1;;;::::0;::::1;::::0;;;-1:-1:-1;;;;;45509:8:0;;::::1;::::0;45499:35:::1;::::0;:39;;;;;45509:8:::1;::::0;45499:39;;;;;;;;45509:8;;45499:39;::::1;;::::0;::::1;;;;::::0;::::1;41932:82:::0;41975:31;41984:21;41994:10;41984:9;:21::i;:::-;41975:8;:31::i;:::-;41932:82::o;32374:79::-;32439:6;;;;;-1:-1:-1;;;;;32439:6:0;;32374:79::o;22657:87::-;22729:7;22722:14;;;;;;;;-1:-1:-1;;22722:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22696:13;;22722:14;;22729:7;;22722:14;;22729:7;22722:14;;;;;;;;;;;;;;;;;;;;;;;;26655:269;26748:4;26765:129;26774:12;:10;:12::i;:::-;26788:7;26797:96;26836:15;26797:96;;;;;;;;;;;;;;;;;:11;:25;26809:12;:10;:12::i;:::-;-1:-1:-1;;;;;26797:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26797:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;38559:134::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;38624:11:::1;:27:::0;;-1:-1:-1;;;;;38624:27:0;::::1;-1:-1:-1::0;;;;;;38624:27:0;;::::1;::::0;::::1;::::0;;;38667:18:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38559:134:::0;:::o;36647:23::-;;;-1:-1:-1;;;;;36647:23:0;;:::o;24025:175::-;24111:4;24128:42;24138:12;:10;:12::i;:::-;24152:9;24163:6;24128:9;:42::i;38404:147::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;38475:20:::1;:25:::0;;;::::1;;-1:-1:-1::0;;38475:25:0;;::::1;::::0;::::1;::::0;;;38516:27:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38404:147:::0;:::o;39287:139::-;39327:4;39351:67;39396:8;;;;;;;;;-1:-1:-1;;;;;39396:8:0;-1:-1:-1;;;;;39386:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39386:31:0;39351:5;;:30;;;-1:-1:-1;;;39351:30:0;;39375:4;39351:30;;;;;;-1:-1:-1;;;;;39351:5:0;;;;:15;;:30;;;;;39386:31;;39351:30;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39351:30:0;;:34;:67::i;40637:873::-;40698:11;;-1:-1:-1;;;;;40698:11:0;40690:34;40686:102;;40740:11;;:36;;;-1:-1:-1;;;40740:36:0;;40765:10;40740:36;;;;;;-1:-1:-1;;;;;40740:11:0;;;;:24;;:36;;;;;:11;;:36;;;;;;;;:11;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40686:102;40812:20;;;;40808:137;;;40858:8;;;;;;;;;-1:-1:-1;;;;;40858:8:0;-1:-1:-1;;;;;40848:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40808:137;40985:13;41001:9;:7;:9::i;:::-;41021:5;;40985:25;;-1:-1:-1;41021:58:0;;-1:-1:-1;;;;;41021:5:0;41044:10;41064:4;41071:7;41021:22;:58::i;:::-;41090:6;:4;:6::i;:::-;41107:18;41128:9;:7;:9::i;:::-;41107:30;-1:-1:-1;41158:21:0;41107:30;41173:5;41158:14;:21::i;:::-;41148:31;;41236:14;41269:13;:11;:13::i;:::-;41265:148;;-1:-1:-1;41313:7:0;41265:148;;;41362:39;41395:5;41363:26;41375:13;:11;:13::i;:::-;41363:7;;:11;:26::i;41362:39::-;41353:48;;41265:148;41423:25;41429:10;41441:6;41423:5;:25::i;:::-;41464:36;;;;;;;;;;;;;;41472:10;;41464:36;;;;;;;;40637:873;;;;:::o;37518:45::-;;;;;;;;;;;;;:::o;45796:106::-;45850:44;45871:22;:20;:22::i;:::-;45850:44;;;;;;;;;;;;;;;45796:106::o;45552:121::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;45632:8:::1;::::0;45622:43:::1;::::0;;-1:-1:-1;;;45622:43:0;;-1:-1:-1;;;;;45622:43:0;;::::1;;::::0;::::1;::::0;;;45632:8;;;::::1;::::0;45622:39:::1;::::0;:43;;;;;45632:8:::1;::::0;45622:43;;;;;;;45632:8;;45622:43;::::1;;::::0;::::1;;;;::::0;::::1;41677:150:::0;41711:9;41723:11;:9;:11::i;:::-;41764:8;;41745:5;;41711:23;;-1:-1:-1;41745:34:0;;-1:-1:-1;;;;;41745:5:0;;;;41764:8;41711:23;41745:18;:34::i;:::-;41800:8;;;;;;;;;-1:-1:-1;;;;;41800:8:0;-1:-1:-1;;;;;41790:27:0;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45322:108;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;45394:8:::1;::::0;45384:38:::1;::::0;;-1:-1:-1;;;45384:38:0;;;::::1;;;::::0;::::1;::::0;;;-1:-1:-1;;;;;45394:8:0;;::::1;::::0;45384:34:::1;::::0;:38;;;;;45394:8:::1;::::0;45384:38;;;;;;;;45394:8;;45384:38;::::1;;::::0;::::1;;;;::::0;::::1;24263:151:::0;-1:-1:-1;;;;;24379:18:0;;;24352:7;24379:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24263:151::o;40349:86::-;40399:5;;:27;;;-1:-1:-1;;;40399:27:0;;40415:10;40399:27;;;;;;40391:36;;-1:-1:-1;;;;;40399:5:0;;:15;;:27;;;;;;;;;;;;;;:5;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40399:27:0;40391:7;:36::i;36941:28::-;;;;:::o;44330:780::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;44390:14:::1;:29:::0;-1:-1:-1;;;;;44390:29:0::1;44382:77;;;::::0;;-1:-1:-1;;;44382:77:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44382:77:0;;;;;;;;;;;;;::::1;;44511:8;::::0;44478:14:::1;:29:::0;-1:-1:-1;;;;;44478:29:0;;::::1;44511:8:::0;::::1;44478:41;;44470:86;;;::::0;;-1:-1:-1;;;44470:86:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;44607:13;::::0;44575:27;;44624:15:::1;::::0;44575:46:::1;::::0;:27;:31:::1;:46::i;:::-;:64;44567:97;;;::::0;;-1:-1:-1;;;44567:97:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44567:97:0;;;;;;;;;;;;;::::1;;44703:14;:29:::0;44690:43:::1;::::0;;-1:-1:-1;;;;;44703:29:0;;::::1;44690:43:::0;;;::::1;::::0;;;;::::1;::::0;;::::1;44766:8;::::0;44787:33:::1;::::0;;-1:-1:-1;;;44787:33:0;;;;-1:-1:-1;;;;;44766:8:0;;::::1;::::0;;;44787:31:::1;::::0;:33:::1;::::0;;::::1;::::0;44744:19:::1;::::0;44787:33;;;;;;;44744:19;44766:8;44787:33;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;44842:14:0::1;:29:::0;;44831:8:::1;:40:::0;;-1:-1:-1;;;;;;44831:40:0;;::::1;-1:-1:-1::0;;;;;44842:29:0;::::1;44831:40;::::0;;;44882:42:::1;::::0;;-1:-1:-1;;44965:10:0::1;44935:27:::0;:40;44996:6:::1;:4;:6::i;:::-;45063:11;-1:-1:-1::0;;;;;45053:40:0::1;;45094:7;:5;:7::i;:::-;45053:49;;;;;;;;;;;;;-1:-1:-1::0;;;;;45053:49:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;36733:28:::0;;;-1:-1:-1;;;;;36733:28:0;;:::o;33319:244::-;32596:12;:10;:12::i;:::-;32586:6;;;;;-1:-1:-1;;;;;32586:6:0;;;:22;;;32578:67;;;;;-1:-1:-1;;;32578:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32578:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33408:22:0;::::1;33400:73;;;;-1:-1:-1::0;;;33400:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33510:6;::::0;33489:38:::1;::::0;-1:-1:-1;;;;;33489:38:0;;::::1;::::0;33510:6:::1;::::0;::::1;;::::0;33489:38:::1;::::0;;;::::1;33538:6;:17:::0;;-1:-1:-1;;;;;33538:17:0;;::::1;;;-1:-1:-1::0;;;;;;33538:17:0;;::::1;::::0;;;::::1;::::0;;33319:244::o;36978:39::-;;;;;;:::o;37405:54::-;;;;;;;;;;;;;:::o;36833:19::-;;;-1:-1:-1;;;;;36833:19:0;;:::o;19905:106::-;19993:10;19905:106;:::o;29802:346::-;-1:-1:-1;;;;;29904:19:0;;29896:68;;;;-1:-1:-1;;;29896:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29983:21:0;;29975:68;;;;-1:-1:-1;;;29975:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30056:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30108:32;;;;;;;;;;;;;;;;;29802:346;;;:::o;27414:539::-;-1:-1:-1;;;;;27520:20:0;;27512:70;;;;-1:-1:-1;;;27512:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27601:23:0;;27593:71;;;;-1:-1:-1;;;27593:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27677:47;27698:6;27706:9;27717:6;27677:20;:47::i;:::-;27757:71;27779:6;27757:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27757:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;27737:17:0;;;:9;:17;;;;;;;;;;;:91;;;;27862:20;;;;;;;:32;;27887:6;27862:24;:32::i;:::-;-1:-1:-1;;;;;27839:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27910:35;;;;;;;27839:20;;27910:35;;;;;;;;;;;;;27414:539;;;:::o;5725:192::-;5811:7;5847:12;5839:6;;;;5831:29;;;;-1:-1:-1;;;5831:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5883:5:0;;;5725:192::o;6176:471::-;6234:7;6479:6;6475:47;;-1:-1:-1;6509:1:0;6502:8;;6475:47;6546:5;;;6550:1;6546;:5;:1;6570:5;;;;;:10;6562:56;;;;-1:-1:-1;;;6562:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6638:1;6176:471;-1:-1:-1;;;6176:471:0:o;7123:132::-;7181:7;7208:39;7212:1;7215;7208:39;;;;;;;;;;;;;;;;;:3;:39::i;28944:418::-;-1:-1:-1;;;;;29028:21:0;;29020:67;;;;-1:-1:-1;;;29020:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29100:49;29121:7;29138:1;29142:6;29100:20;:49::i;:::-;29183:68;29206:6;29183:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29183:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;29162:18:0;;:9;:18;;;;;;;;;;:89;29277:12;;:24;;29294:6;29277:16;:24::i;:::-;29262:12;:39;29317:37;;;;;;;;29343:1;;-1:-1:-1;;;;;29317:37:0;;;;;;;;;;;;28944:418;;:::o;5286:136::-;5344:7;5371:43;5375:1;5378;5371:43;;;;;;;;;;;;;;;;;:3;:43::i;4822:181::-;4880:7;4912:5;;;4936:6;;;;4928:46;;;;;-1:-1:-1;;;4928:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16198:177;16308:58;;;-1:-1:-1;;;;;16308:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16308:58:0;-1:-1:-1;;;16308:58:0;;;16281:86;;16301:5;;16281:19;:86::i;:::-;16198:177;;;:::o;16383:205::-;16511:68;;;-1:-1:-1;;;;;16511:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16511:68:0;-1:-1:-1;;;16511:68:0;;;16484:96;;16504:5;;16484:19;:96::i;28234:378::-;-1:-1:-1;;;;;28318:21:0;;28310:65;;;;;-1:-1:-1;;;28310:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28388:49;28417:1;28421:7;28430:6;28388:20;:49::i;:::-;28465:12;;:24;;28482:6;28465:16;:24::i;:::-;28450:12;:39;-1:-1:-1;;;;;28521:18:0;;:9;:18;;;;;;;;;;;:30;;28544:6;28521:22;:30::i;:::-;-1:-1:-1;;;;;28500:18:0;;:9;:18;;;;;;;;;;;:51;;;;28567:37;;;;;;;28500:18;;:9;;28567:37;;;;;;;;;;28234:378;;:::o;7751:278::-;7837:7;7872:12;7865:5;7857:28;;;;-1:-1:-1;;;7857:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7896:9;7912:1;7908;:5;;;;;;;7751:278;-1:-1:-1;;;;;7751:278:0:o;18503:761::-;18927:23;18953:69;18981:4;18953:69;;;;;;;;;;;;;;;;;18961:5;-1:-1:-1;;;;;18953:27:0;;;:69;;;;;:::i;:::-;19037:17;;18927:95;;-1:-1:-1;19037:21:0;19033:224;;19179:10;19168:30;;;;;;;;;;;;;;;-1:-1:-1;19168:30:0;19160:85;;;;-1:-1:-1;;;19160:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13171:196;13274:12;13306:53;13329:6;13337:4;13343:1;13346:12;13306:22;:53::i;:::-;13299:60;13171:196;-1:-1:-1;;;;13171:196:0:o;14548:979::-;14678:12;14711:18;14722:6;14711:10;:18::i;:::-;14703:60;;;;;-1:-1:-1;;;14703:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14837:12;14851:23;14878:6;-1:-1:-1;;;;;14878:11:0;14898:8;14909:4;14878:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14878:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14836:78;;;;14929:7;14925:595;;;14960:10;-1:-1:-1;14953:17:0;;-1:-1:-1;14953:17:0;14925:595;15074:17;;:21;15070:439;;15337:10;15331:17;15398:15;15385:10;15381:2;15377:19;15370:44;15285:148;15473:20;;-1:-1:-1;;;15473:20:0;;;;;;;;;;;;;;;;;15480:12;;15473:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10056:619;10116:4;10584:20;;10427:66;10624:23;;;;;;:42;;-1:-1:-1;;10651:15:0;;;10616:51;-1:-1:-1;;10056:619:0:o
Swarm Source
ipfs://8e52a08fed498015a3a1b64424e1a2ada7e17243f0be227bf818b95d808d89ce
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.