Contract
0x697ac228808cab8db149c8c43d5086d9a698cc58
1
Contract Overview
Balance:
0 ETH
ETH Value:
$0.00
My Name Tag:
Not Available
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xe2f2b8cb1eb4cdd1211ead71a301eab23a34634e168b9049b8097a9185dcb472 | 0x60806040 | 19205946 | 190 days 11 hrs ago | 0x010da5ff62b6e45f89fa7b2d8ced5a8b5754ec1b | IN | Create: BeefyFeeBatchV3 | 0 ETH | 0.003779625624 ETH |
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
BeefyFeeBatchV3
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan on 2022-08-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } } // File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} uint256[45] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable 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( IERC20Upgradeable 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' 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( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20Upgradeable 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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts/BIFI/infra/BeefyFeeBatchV3.sol pragma solidity ^0.8.0; interface IRewardPool { function notifyRewardAmount(uint256 amount) external; function transferOwnership(address owner) external; } interface IWrappedNative is IERC20Upgradeable { function deposit() external payable; function withdraw(uint wad) external; } interface IUniswapRouter { function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); } contract BeefyFeeBatchV3 is Initializable, OwnableUpgradeable { using SafeERC20Upgradeable for IERC20Upgradeable; IERC20Upgradeable public wNative; IERC20Upgradeable public bifi; IERC20Upgradeable public stable; address public treasury; address public rewardPool; address public unirouter; address public harvester; // Fee constants uint constant public DIVISOR = 1000; uint public treasuryFee; uint public harvesterGas; uint public harvesterMax; uint public splitRatio; address[] public wNativeToBifiRoute; address[] public wNativeToStableRoute; bool public splitTreasury; bool public sendHarvesterGas; event Harvest(uint256 totalHarvested, uint256 stablesHarvested, uint256 bifiHarvested, uint256 nativeNotified, uint256 time); event NewRewardPool(address oldRewardPool, address newRewardPool); event NewTreasury(address oldTreasury, address newTreasury); event NewUnirouter(address oldUnirouter, address newUnirouter); event NewTreasuryFee(uint oldFee, uint newFee); event NewBifiRoute(address[] oldRoute, address[] newRoute); event NewStableRoute(address[] oldRoute, address[] newRoute); event TransferedRewardPoolOwnership(address newOwner); event SetTreasurySplit(bool split, uint splitRatio); event HarvesterConfigUpdate(address harvester, uint harvesterGas, uint harvesterMax, bool sendHarvesterGas); function initialize( address _bifi, address _wNative, address _stable, address _treasury, address _rewardPool, address _unirouter, address[] memory _bifiRoute, address[] memory _stableRoute, bool _splitTreasury, uint256 _treasuryFee ) public initializer { __Ownable_init(); bifi = IERC20Upgradeable(_bifi); wNative = IERC20Upgradeable(_wNative); stable = IERC20Upgradeable(_stable); treasury = _treasury; rewardPool = _rewardPool; splitTreasury = _splitTreasury; treasuryFee = _treasuryFee; unirouter = _unirouter; wNative.safeApprove(_unirouter, type(uint).max); wNativeToBifiRoute = _bifiRoute; wNativeToStableRoute = _stableRoute; } // Main function. Divides Beefy's profits. function harvest() public { uint256 wNativeBal = wNative.balanceOf(address(this)); if (sendHarvesterGas) { uint256 harvesterGasBal = harvester.balance + wNative.balanceOf(harvester); if (harvesterGasBal <= harvesterMax) { uint256 gas = wNativeBal * harvesterGas / DIVISOR; IWrappedNative(address(wNative)).withdraw(gas); (bool sent, ) = harvester.call{value: gas}(""); require(sent, "Failed to send Ether"); } wNativeBal = wNative.balanceOf(address(this)); } uint256 stableAmt; uint256 bifiAmt; if (splitTreasury) { uint256 nativeAvailable = wNativeBal * treasuryFee / DIVISOR; stableAmt = nativeAvailable * splitRatio / DIVISOR; bifiAmt = nativeAvailable - stableAmt; IUniswapRouter(unirouter).swapExactTokensForTokens(stableAmt, 0, wNativeToStableRoute, treasury, block.timestamp); IUniswapRouter(unirouter).swapExactTokensForTokens(bifiAmt, 0, wNativeToBifiRoute, treasury, block.timestamp); } else { stableAmt = wNativeBal * treasuryFee / DIVISOR; IUniswapRouter(unirouter).swapExactTokensForTokens(stableAmt, 0, wNativeToStableRoute, treasury, block.timestamp); } uint256 rewardPoolAmount = wNative.balanceOf(address(this)); wNative.safeTransfer(rewardPool, rewardPoolAmount); IRewardPool(rewardPool).notifyRewardAmount(rewardPoolAmount); emit Harvest(wNativeBal, stableAmt, bifiAmt, rewardPoolAmount, block.timestamp); } function setRewardPool(address _rewardPool) external onlyOwner { emit NewRewardPool(rewardPool, _rewardPool); rewardPool = _rewardPool; } function setTreasury(address _treasury) external onlyOwner { emit NewTreasury(treasury, _treasury); treasury = _treasury; } function setHarvesterConfig(address _harvester, uint256 _harvesterGas, uint256 _harvesterMax, bool _sendHarvesterGas) external onlyOwner { emit HarvesterConfigUpdate(_harvester, _harvesterGas, _harvesterMax, _sendHarvesterGas); harvester = _harvester; harvesterGas = _harvesterGas; sendHarvesterGas = _sendHarvesterGas; harvesterMax = _harvesterMax; } function setTreasurySplit(bool _split, uint _splitRatio) external onlyOwner { emit SetTreasurySplit(_split, _splitRatio); splitTreasury = _split; splitRatio = _splitRatio; } function setUnirouter(address _unirouter) external onlyOwner { emit NewUnirouter(unirouter, _unirouter); wNative.safeApprove(_unirouter, type(uint).max); wNative.safeApprove(unirouter, 0); unirouter = _unirouter; } function setRoute(address[] calldata _route, bool _stableRoute) external onlyOwner { require(_route[0] == address(wNative), "!wNative"); if(_stableRoute) { require(_route[_route.length - 1] == address(stable), "!stable"); emit NewStableRoute(wNativeToStableRoute, _route); wNativeToStableRoute = _route; } else { require(_route[_route.length - 1] == address(bifi), "!bifi"); emit NewBifiRoute(wNativeToBifiRoute, _route); wNativeToBifiRoute = _route; } } function setTreasuryFee(uint256 _fee) public onlyOwner { require(_fee <= DIVISOR, "!cap"); emit NewTreasuryFee(treasuryFee, _fee); treasuryFee = _fee; } // Rescue locked funds sent by mistake function inCaseTokensGetStuck(address _token, address _recipient) external onlyOwner { require(_token != address(wNative), "!safe"); uint256 amount = IERC20Upgradeable(_token).balanceOf(address(this)); IERC20Upgradeable(_token).safeTransfer(_recipient, amount); } function transferRewardPoolOwnership(address _newOwner) external onlyOwner { emit TransferedRewardPoolOwnership(_newOwner); IRewardPool(rewardPool).transferOwnership(_newOwner); } receive() external payable {} }
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stablesHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bifiHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nativeNotified","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"Harvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"harvesterGas","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"harvesterMax","type":"uint256"},{"indexed":false,"internalType":"bool","name":"sendHarvesterGas","type":"bool"}],"name":"HarvesterConfigUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"oldRoute","type":"address[]"},{"indexed":false,"internalType":"address[]","name":"newRoute","type":"address[]"}],"name":"NewBifiRoute","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRewardPool","type":"address"},{"indexed":false,"internalType":"address","name":"newRewardPool","type":"address"}],"name":"NewRewardPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"oldRoute","type":"address[]"},{"indexed":false,"internalType":"address[]","name":"newRoute","type":"address[]"}],"name":"NewStableRoute","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTreasury","type":"address"},{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"NewTreasury","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"NewTreasuryFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldUnirouter","type":"address"},{"indexed":false,"internalType":"address","name":"newUnirouter","type":"address"}],"name":"NewUnirouter","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":"bool","name":"split","type":"bool"},{"indexed":false,"internalType":"uint256","name":"splitRatio","type":"uint256"}],"name":"SetTreasurySplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"TransferedRewardPoolOwnership","type":"event"},{"inputs":[],"name":"DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bifi","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvester","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvesterGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvesterMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"inCaseTokensGetStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bifi","type":"address"},{"internalType":"address","name":"_wNative","type":"address"},{"internalType":"address","name":"_stable","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_rewardPool","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address[]","name":"_bifiRoute","type":"address[]"},{"internalType":"address[]","name":"_stableRoute","type":"address[]"},{"internalType":"bool","name":"_splitTreasury","type":"bool"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendHarvesterGas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_harvester","type":"address"},{"internalType":"uint256","name":"_harvesterGas","type":"uint256"},{"internalType":"uint256","name":"_harvesterMax","type":"uint256"},{"internalType":"bool","name":"_sendHarvesterGas","type":"bool"}],"name":"setHarvesterConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardPool","type":"address"}],"name":"setRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_route","type":"address[]"},{"internalType":"bool","name":"_stableRoute","type":"bool"}],"name":"setRoute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_split","type":"bool"},{"internalType":"uint256","name":"_splitRatio","type":"uint256"}],"name":"setTreasurySplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"splitRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"splitTreasury","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stable","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferRewardPoolOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wNative","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wNativeToBifiRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wNativeToStableRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b506121ff806100206000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063906cd40b11610095578063eafe2c2011610064578063eafe2c2014610509578063f0f4426014610529578063f2fde38b14610549578063f45a1b4e1461056957600080fd5b8063906cd40b14610493578063cc32d176146104b3578063d92f3d73146104c9578063e7f82d18146104e957600080fd5b806383d133b9116100d157806383d133b91461042f57806388079abc146104455780638aa9b55a1461045f5780638da5cb5b1461047557600080fd5b8063715018a6146103da57806377e741c7146103ef57806378238c371461040f57600080fd5b806335fdc70c1161016f5780634bdaeac11161013e5780634bdaeac1146103645780635c59f3bb1461038457806361d027b31461039a57806366666aa9146103ba57600080fd5b806335fdc70c146102ef5780634458020b1461030f5780634641257d1461032f5780634708dd5e1461034457600080fd5b8063257ae0de116101ab578063257ae0de1461026b5780632d68efc91461028b57806331ecbe05146102ab5780633410fe6e146102cb57600080fd5b80631939bbc1146101dd5780631e4f3d91146101ff57806322be3de11461023357600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b55565b610589565b005b34801561020b57600080fd5b5060725461021e90610100900460ff1681565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50606754610253906001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b34801561027757600080fd5b50606a54610253906001600160a01b031681565b34801561029757600080fd5b50606554610253906001600160a01b031681565b3480156102b757600080fd5b506101fd6102c6366004611ba1565b610688565b3480156102d757600080fd5b506102e16103e881565b60405190815260200161022a565b3480156102fb57600080fd5b506101fd61030a366004611c27565b6108b9565b34801561031b57600080fd5b50606654610253906001600160a01b031681565b34801561033b57600080fd5b506101fd610935565b34801561035057600080fd5b506101fd61035f366004611c53565b610f25565b34801561037057600080fd5b50606b54610253906001600160a01b031681565b34801561039057600080fd5b506102e1606f5481565b3480156103a657600080fd5b50606854610253906001600160a01b031681565b3480156103c657600080fd5b50606954610253906001600160a01b031681565b3480156103e657600080fd5b506101fd610fed565b3480156103fb57600080fd5b506101fd61040a366004611c6e565b611023565b34801561041b57600080fd5b506101fd61042a366004611c53565b6110c9565b34801561043b57600080fd5b506102e1606d5481565b34801561045157600080fd5b5060725461021e9060ff1681565b34801561046b57600080fd5b506102e1606e5481565b34801561048157600080fd5b506033546001600160a01b0316610253565b34801561049f57600080fd5b506102536104ae366004611c6e565b61115c565b3480156104bf57600080fd5b506102e1606c5481565b3480156104d557600080fd5b506101fd6104e4366004611c53565b611186565b3480156104f557600080fd5b506101fd610504366004611c87565b611250565b34801561051557600080fd5b50610253610524366004611c6e565b611312565b34801561053557600080fd5b506101fd610544366004611c53565b611322565b34801561055557600080fd5b506101fd610564366004611c53565b6113b5565b34801561057557600080fd5b506101fd610584366004611dac565b611450565b6033546001600160a01b031633146105bc5760405162461bcd60e51b81526004016105b390611e90565b60405180910390fd5b6065546001600160a01b03908116908316036106025760405162461bcd60e51b8152602060048201526005602482015264217361666560d81b60448201526064016105b3565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610649573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066d9190611ec5565b90506106836001600160a01b03841683836115c8565b505050565b6033546001600160a01b031633146106b25760405162461bcd60e51b81526004016105b390611e90565b6065546001600160a01b031683836000816106cf576106cf611ede565b90506020020160208101906106e49190611c53565b6001600160a01b0316146107255760405162461bcd60e51b815260206004820152600860248201526721774e617469766560c01b60448201526064016105b3565b80156107f6576067546001600160a01b03168383610744600182611f0a565b81811061075357610753611ede565b90506020020160208101906107689190611c53565b6001600160a01b0316146107a85760405162461bcd60e51b815260206004820152600760248201526621737461626c6560c81b60448201526064016105b3565b7fe2b590758c3991d9c5e5b34dcbe6645d0293b6d6b1f6872d409b906b95ae93e5607184846040516107dc93929190611f6a565b60405180910390a16107f060718484611a6c565b50505050565b6066546001600160a01b0316838361080f600182611f0a565b81811061081e5761081e611ede565b90506020020160208101906108339190611c53565b6001600160a01b0316146108715760405162461bcd60e51b8152602060048201526005602482015264216269666960d81b60448201526064016105b3565b7f87c6f79e7abb284656dc44f1ef4767a74344ec68149ef892ce9cc73fe80103c7607084846040516108a593929190611f6a565b60405180910390a16107f060708484611a6c565b6033546001600160a01b031633146108e35760405162461bcd60e51b81526004016105b390611e90565b604080518315158152602081018390527f109a28d86b06ac6e1b4dd6fe48a63c2dddef8e925994f34264574f7532dad64c910160405180910390a16072805460ff191692151592909217909155606f55565b6065546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561097e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a29190611ec5565b607254909150610100900460ff1615610bd757606554606b546040516370a0823160e01b81526001600160a01b03918216600482015260009291909116906370a0823190602401602060405180830381865afa158015610a06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2a9190611ec5565b606b54610a4191906001600160a01b031631611fcb565b9050606e548111610b675760006103e8606d5484610a5f9190611fe3565b610a699190612002565b606554604051632e1a7d4d60e01b8152600481018390529192506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b158015610ab057600080fd5b505af1158015610ac4573d6000803e3d6000fd5b5050606b54604051600093506001600160a01b03909116915083908381818185875af1925050503d8060008114610b17576040519150601f19603f3d011682016040523d82523d6000602084013e610b1c565b606091505b5050905080610b645760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064016105b3565b50505b6065546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610baf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd39190611ec5565b9150505b607254600090819060ff1615610d415760006103e8606c5485610bfa9190611fe3565b610c049190612002565b90506103e8606f5482610c179190611fe3565b610c219190612002565b9250610c2d8382611f0a565b606a546068546040516338ed173960e01b81529294506001600160a01b03918216926338ed173992610c6d92889260009260719216904290600401612024565b6000604051808303816000875af1158015610c8c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610cb49190810190612060565b50606a546068546040516338ed173960e01b81526001600160a01b03928316926338ed173992610cf39287926000926070929116904290600401612024565b6000604051808303816000875af1158015610d12573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d3a9190810190612060565b5050610de5565b6103e8606c5484610d529190611fe3565b610d5c9190612002565b606a546068546040516338ed173960e01b81529294506001600160a01b03918216926338ed173992610d9c92879260009260719216904290600401612024565b6000604051808303816000875af1158015610dbb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610de39190810190612060565b505b6065546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610e2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e529190611ec5565b606954606554919250610e72916001600160a01b039081169116836115c8565b606954604051633c6b16ab60e01b8152600481018390526001600160a01b0390911690633c6b16ab90602401600060405180830381600087803b158015610eb857600080fd5b505af1158015610ecc573d6000803e3d6000fd5b50506040805187815260208101879052908101859052606081018490524260808201527f8f54e9a5e99de001015931045d11034670730d338028e661dbd6694088f6f3bb925060a001905060405180910390a150505050565b6033546001600160a01b03163314610f4f5760405162461bcd60e51b81526004016105b390611e90565b6040516001600160a01b03821681527feb8f82164773ec893693b18ff5d797783034e59b245e43d7837468f097a891d69060200160405180910390a160695460405163f2fde38b60e01b81526001600160a01b0383811660048301529091169063f2fde38b90602401600060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b5050505050565b6033546001600160a01b031633146110175760405162461bcd60e51b81526004016105b390611e90565b611021600061162b565b565b6033546001600160a01b0316331461104d5760405162461bcd60e51b81526004016105b390611e90565b6103e88111156110885760405162461bcd60e51b81526004016105b3906020808252600490820152630216361760e41b604082015260600190565b606c5460408051918252602082018390527fb1c4ee38d35556741133da7ff9b6f7ab0fa88d0406133126ff128f635490a857910160405180910390a1606c55565b6033546001600160a01b031633146110f35760405162461bcd60e51b81526004016105b390611e90565b606954604080516001600160a01b03928316815291831660208301527fe3d88fc63ce6f40e089447cea2116e10d00cd00302225a3d4d57db7d456933b3910160405180910390a1606980546001600160a01b0319166001600160a01b0392909216919091179055565b6070818154811061116c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6033546001600160a01b031633146111b05760405162461bcd60e51b81526004016105b390611e90565b606a54604080516001600160a01b03928316815291831660208301527f826424c54f0e53618740c75270163dc0ce89545f38164b0e4b3a265cf7314453910160405180910390a1606554611210906001600160a01b03168260001961167d565b606a5460655461122e916001600160a01b039182169116600061167d565b606a80546001600160a01b0319166001600160a01b0392909216919091179055565b6033546001600160a01b0316331461127a5760405162461bcd60e51b81526004016105b390611e90565b604080516001600160a01b03861681526020810185905290810183905281151560608201527f22b608a4f9ec66a65514bc913be2e2ed407e29ef945516e8bcdfc76f4fb31b289060800160405180910390a1606b80546001600160a01b039095166001600160a01b031990951694909417909355606d91909155607280549215156101000261ff001990931692909217909155606e55565b6071818154811061116c57600080fd5b6033546001600160a01b0316331461134c5760405162461bcd60e51b81526004016105b390611e90565b606854604080516001600160a01b03928316815291831660208301527f567657fa3f286518b318f4a29870674f433f622fdfc819691acb13105b228225910160405180910390a1606880546001600160a01b0319166001600160a01b0392909216919091179055565b6033546001600160a01b031633146113df5760405162461bcd60e51b81526004016105b390611e90565b6001600160a01b0381166114445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b3565b61144d8161162b565b50565b600054610100900460ff1661146b5760005460ff161561146f565b303b155b6114d25760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105b3565b600054610100900460ff161580156114f4576000805461ffff19166101011790555b6114fc611792565b606680546001600160a01b03199081166001600160a01b038e8116919091179092556065805482168d84169081179091556067805483168d85161790556068805483168c85161790556069805483168b85161790556072805460ff1916871515179055606c859055606a8054909216928916929092179055611581908760001961167d565b8451611594906070906020880190611acf565b5083516115a8906071906020870190611acf565b5080156115bb576000805461ff00191690555b5050505050505050505050565b6040516001600160a01b03831660248201526044810182905261068390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526117c9565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8015806116f75750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156116d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f59190611ec5565b155b6117625760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016105b3565b6040516001600160a01b03831660248201526044810182905261068390849063095ea7b360e01b906064016115f4565b600054610100900460ff166117b95760405162461bcd60e51b81526004016105b3906120e6565b6117c161189b565b6110216118c2565b600061181e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118f29092919063ffffffff16565b805190915015610683578080602001905181019061183c9190612131565b6106835760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105b3565b600054610100900460ff166110215760405162461bcd60e51b81526004016105b3906120e6565b600054610100900460ff166118e95760405162461bcd60e51b81526004016105b3906120e6565b6110213361162b565b6060611901848460008561190b565b90505b9392505050565b60608247101561196c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016105b3565b843b6119ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105b3565b600080866001600160a01b031685876040516119d6919061217a565b60006040518083038185875af1925050503d8060008114611a13576040519150601f19603f3d011682016040523d82523d6000602084013e611a18565b606091505b5091509150611a28828286611a33565b979650505050505050565b60608315611a42575081611904565b825115611a525782518084602001fd5b8160405162461bcd60e51b81526004016105b39190612196565b828054828255906000526020600020908101928215611abf579160200282015b82811115611abf5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611a8c565b50611acb929150611b24565b5090565b828054828255906000526020600020908101928215611abf579160200282015b82811115611abf57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611aef565b5b80821115611acb5760008155600101611b25565b80356001600160a01b0381168114611b5057600080fd5b919050565b60008060408385031215611b6857600080fd5b611b7183611b39565b9150611b7f60208401611b39565b90509250929050565b801515811461144d57600080fd5b8035611b5081611b88565b600080600060408486031215611bb657600080fd5b833567ffffffffffffffff80821115611bce57600080fd5b818601915086601f830112611be257600080fd5b813581811115611bf157600080fd5b8760208260051b8501011115611c0657600080fd5b60209283019550935050840135611c1c81611b88565b809150509250925092565b60008060408385031215611c3a57600080fd5b8235611c4581611b88565b946020939093013593505050565b600060208284031215611c6557600080fd5b61190482611b39565b600060208284031215611c8057600080fd5b5035919050565b60008060008060808587031215611c9d57600080fd5b611ca685611b39565b935060208501359250604085013591506060850135611cc481611b88565b939692955090935050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d0e57611d0e611ccf565b604052919050565b600067ffffffffffffffff821115611d3057611d30611ccf565b5060051b60200190565b600082601f830112611d4b57600080fd5b81356020611d60611d5b83611d16565b611ce5565b82815260059290921b84018101918181019086841115611d7f57600080fd5b8286015b84811015611da157611d9481611b39565b8352918301918301611d83565b509695505050505050565b6000806000806000806000806000806101408b8d031215611dcc57600080fd5b611dd58b611b39565b9950611de360208c01611b39565b9850611df160408c01611b39565b9750611dff60608c01611b39565b9650611e0d60808c01611b39565b9550611e1b60a08c01611b39565b945060c08b013567ffffffffffffffff80821115611e3857600080fd5b611e448e838f01611d3a565b955060e08d0135915080821115611e5a57600080fd5b50611e678d828e01611d3a565b935050611e776101008c01611b96565b91506101208b013590509295989b9194979a5092959850565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611ed757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015611f1c57611f1c611ef4565b500390565b6000815480845260208085019450836000528060002060005b83811015611f5f5781546001600160a01b031687529582019560019182019101611f3a565b509495945050505050565b604081526000611f7d6040830186611f21565b8281036020848101919091528482528591810160005b86811015611fbf576001600160a01b03611fac85611b39565b1682529282019290820190600101611f93565b50979650505050505050565b60008219821115611fde57611fde611ef4565b500190565b6000816000190483118215151615611ffd57611ffd611ef4565b500290565b60008261201f57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a06040820152600061204360a0830186611f21565b6001600160a01b0394909416606083015250608001529392505050565b6000602080838503121561207357600080fd5b825167ffffffffffffffff81111561208a57600080fd5b8301601f8101851361209b57600080fd5b80516120a9611d5b82611d16565b81815260059190911b820183019083810190878311156120c857600080fd5b928401925b82841015611a28578351825292840192908401906120cd565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60006020828403121561214357600080fd5b815161190481611b88565b60005b83811015612169578181015183820152602001612151565b838111156107f05750506000910152565b6000825161218c81846020870161214e565b9190910192915050565b60208152600082518060208401526121b581604085016020870161214e565b601f01601f1916919091016040019291505056fea26469706673582212203a45747b8213ef5ec7181dcac9ac7f21aeca6902f4a065e94877d8e4c779849564736f6c634300080f0033
Deployed ByteCode Sourcemap
35293:6637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41383:297;;;;;;;;;;-1:-1:-1;41383:297:0;;;;;:::i;:::-;;:::i;:::-;;35965:28;;;;;;;;;;-1:-1:-1;35965:28:0;;;;;;;;;;;;;;622:14:1;;615:22;597:41;;585:2;570:18;35965:28:0;;;;;;;;35494:31;;;;;;;;;;-1:-1:-1;35494:31:0;;;;-1:-1:-1;;;;;35494:31:0;;;;;;-1:-1:-1;;;;;838:32:1;;;820:51;;808:2;793:18;35494:31:0;649:228:1;35594:24:0;;;;;;;;;;-1:-1:-1;35594:24:0;;;;-1:-1:-1;;;;;35594:24:0;;;35419:32;;;;;;;;;;-1:-1:-1;35419:32:0;;;;-1:-1:-1;;;;;35419:32:0;;;40557:577;;;;;;;;;;-1:-1:-1;40557:577:0;;;;;:::i;:::-;;:::i;35680:35::-;;;;;;;;;;;;35711:4;35680:35;;;;;2247:25:1;;;2235:2;2220:18;35680:35:0;2101:177:1;40069:205:0;;;;;;;;;;-1:-1:-1;40069:205:0;;;;;:::i;:::-;;:::i;35458:29::-;;;;;;;;;;-1:-1:-1;35458:29:0;;;;-1:-1:-1;;;;;35458:29:0;;;37672:1658;;;;;;;;;;;;;:::i;41688:202::-;;;;;;;;;;-1:-1:-1;41688:202:0;;;;;:::i;:::-;;:::i;35625:24::-;;;;;;;;;;-1:-1:-1;35625:24:0;;;;-1:-1:-1;;;;;35625:24:0;;;35814:22;;;;;;;;;;;;;;;;35532:23;;;;;;;;;;-1:-1:-1;35532:23:0;;;;-1:-1:-1;;;;;35532:23:0;;;35562:25;;;;;;;;;;-1:-1:-1;35562:25:0;;;;-1:-1:-1;;;;;35562:25:0;;;13575:103;;;;;;;;;;;;;:::i;41142:185::-;;;;;;;;;;-1:-1:-1;41142:185:0;;;;;:::i;:::-;;:::i;39338:160::-;;;;;;;;;;-1:-1:-1;39338:160:0;;;;;:::i;:::-;;:::i;35752:24::-;;;;;;;;;;;;;;;;35933:25;;;;;;;;;;-1:-1:-1;35933:25:0;;;;;;;;35783:24;;;;;;;;;;;;;;;;12924:87;;;;;;;;;;-1:-1:-1;12997:6:0;;-1:-1:-1;;;;;12997:6:0;12924:87;;35845:35;;;;;;;;;;-1:-1:-1;35845:35:0;;;;;:::i;:::-;;:::i;35722:23::-;;;;;;;;;;;;;;;;40282:267;;;;;;;;;;-1:-1:-1;40282:267:0;;;;;:::i;:::-;;:::i;39660:401::-;;;;;;;;;;-1:-1:-1;39660:401:0;;;;;:::i;:::-;;:::i;35887:37::-;;;;;;;;;;-1:-1:-1;35887:37:0;;;;;:::i;:::-;;:::i;39506:146::-;;;;;;;;;;-1:-1:-1;39506:146:0;;;;;:::i;:::-;;:::i;13833:201::-;;;;;;;;;;-1:-1:-1;13833:201:0;;;;;:::i;:::-;;:::i;36759:857::-;;;;;;;;;;-1:-1:-1;36759:857:0;;;;;:::i;:::-;;:::i;41383:297::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;;;;;;;;;41505:7:::1;::::0;-1:-1:-1;;;;;41505:7:0;;::::1;41487:26:::0;;::::1;::::0;41479:44:::1;;;::::0;-1:-1:-1;;;41479:44:0;;6453:2:1;41479:44:0::1;::::0;::::1;6435:21:1::0;6492:1;6472:18;;;6465:29;-1:-1:-1;;;6510:18:1;;;6503:35;6555:18;;41479:44:0::1;6251:328:1::0;41479:44:0::1;41553:50;::::0;-1:-1:-1;;;41553:50:0;;41597:4:::1;41553:50;::::0;::::1;820:51:1::0;41536:14:0::1;::::0;-1:-1:-1;;;;;41553:35:0;::::1;::::0;::::1;::::0;793:18:1;;41553:50:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41536:67:::0;-1:-1:-1;41614:58:0::1;-1:-1:-1::0;;;;;41614:38:0;::::1;41653:10:::0;41536:67;41614:38:::1;:58::i;:::-;41468:212;41383:297:::0;;:::o;40557:577::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;40680:7:::1;::::0;-1:-1:-1;;;;;40680:7:0::1;40659:6:::0;;40680:7:::1;40659:9:::0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40659:29:0::1;;40651:50;;;::::0;-1:-1:-1;;;40651:50:0;;7107:2:1;40651:50:0::1;::::0;::::1;7089:21:1::0;7146:1;7126:18;;;7119:29;-1:-1:-1;;;7164:18:1;;;7157:38;7212:18;;40651:50:0::1;6905:331:1::0;40651:50:0::1;40715:12;40712:415;;;40789:6;::::0;-1:-1:-1;;;;;40789:6:0::1;40752::::0;;40759:17:::1;40789:6:::0;40752;40759:17:::1;:::i;:::-;40752:25;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40752:44:0::1;;40744:64;;;::::0;-1:-1:-1;;;40744:64:0;;7705:2:1;40744:64:0::1;::::0;::::1;7687:21:1::0;7744:1;7724:18;;;7717:29;-1:-1:-1;;;7762:18:1;;;7755:37;7809:18;;40744:64:0::1;7503:330:1::0;40744:64:0::1;40830:44;40845:20;40867:6;;40830:44;;;;;;;;:::i;:::-;;;;;;;;40889:29;:20;40912:6:::0;;40889:29:::1;:::i;:::-;;41468:212;41383:297:::0;;:::o;40712:415::-:1;40996:4;::::0;-1:-1:-1;;;;;40996:4:0::1;40959:6:::0;;40966:17:::1;40996:4:::0;40959:6;40966:17:::1;:::i;:::-;40959:25;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40959:42:0::1;;40951:60;;;::::0;-1:-1:-1;;;40951:60:0;;9358:2:1;40951:60:0::1;::::0;::::1;9340:21:1::0;9397:1;9377:18;;;9370:29;-1:-1:-1;;;9415:18:1;;;9408:35;9460:18;;40951:60:0::1;9156:328:1::0;40951:60:0::1;41033:40;41046:18;41066:6;;41033:40;;;;;;;;:::i;:::-;;;;;;;;41088:27;:18;41109:6:::0;;41088:27:::1;:::i;40069:205::-:0;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;40161:37:::1;::::0;;9682:14:1;;9675:22;9657:41;;9729:2;9714:18;;9707:34;;;40161:37:0::1;::::0;9630:18:1;40161:37:0::1;;;;;;;40209:13;:22:::0;;-1:-1:-1;;40209:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;40242:10:::1;:24:::0;40069:205::o;37672:1658::-;37730:7;;:32;;-1:-1:-1;;;37730:32:0;;37756:4;37730:32;;;820:51:1;37709:18:0;;-1:-1:-1;;;;;37730:7:0;;:17;;793:18:1;;37730:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37779:16;;37709:53;;-1:-1:-1;37779:16:0;;;;;37775:504;;;37858:7;;37876:9;;37858:28;;-1:-1:-1;;;37858:28:0;;-1:-1:-1;;;;;37876:9:0;;;37858:28;;;820:51:1;37812:23:0;;37858:7;;;;;:17;;793:18:1;;37858:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37838:9;;:48;;;-1:-1:-1;;;;;37838:9:0;:17;:48;:::i;:::-;37812:74;;37924:12;;37905:15;:31;37901:307;;37957:11;35711:4;37984:12;;37971:10;:25;;;;:::i;:::-;:35;;;;:::i;:::-;38048:7;;38025:46;;-1:-1:-1;;;38025:46:0;;;;;2247:25:1;;;37957:49:0;;-1:-1:-1;;;;;;38048:7:0;;38025:41;;2220:18:1;;38025:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38106:9:0;;:30;;38091:9;;-1:-1:-1;;;;;;38106:9:0;;;;-1:-1:-1;38128:3:0;;38091:9;38106:30;38091:9;38106:30;38128:3;38106:9;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38090:46;;;38163:4;38155:37;;;;-1:-1:-1;;;38155:37:0;;10692:2:1;38155:37:0;;;10674:21:1;10731:2;10711:18;;;10704:30;-1:-1:-1;;;10750:18:1;;;10743:50;10810:18;;38155:37:0;10490:344:1;38155:37:0;37938:270;;37901:307;38235:7;;:32;;-1:-1:-1;;;38235:32:0;;38261:4;38235:32;;;820:51:1;-1:-1:-1;;;;;38235:7:0;;;;:17;;793:18:1;;38235:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38222:45;;37797:482;37775:504;38349:13;;38291:17;;;;38349:13;;38345:682;;;38379:23;35711:4;38418:11;;38405:10;:24;;;;:::i;:::-;:34;;;;:::i;:::-;38379:60;;35711:4;38484:10;;38466:15;:28;;;;:::i;:::-;:38;;;;:::i;:::-;38454:50;-1:-1:-1;38529:27:0;38454:50;38529:15;:27;:::i;:::-;38586:9;;38658:8;;38571:113;;-1:-1:-1;;;38571:113:0;;38519:37;;-1:-1:-1;;;;;;38586:9:0;;;;38571:50;;:113;;38622:9;;38586;;38636:20;;38658:8;;38668:15;;38571:113;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38571:113:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;38714:9:0;;38782:8;;38699:109;;-1:-1:-1;;;38699:109:0;;-1:-1:-1;;;;;38714:9:0;;;;38699:50;;:109;;38750:7;;38714:9;;38762:18;;38782:8;;;38792:15;;38699:109;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38699:109:0;;;;;;;;;;;;:::i;:::-;;38364:456;38345:682;;;35711:4;38866:11;;38853:10;:24;;;;:::i;:::-;:34;;;;:::i;:::-;38917:9;;38989:8;;38902:113;;-1:-1:-1;;;38902:113:0;;38841:46;;-1:-1:-1;;;;;;38917:9:0;;;;38902:50;;:113;;38841:46;;38917:9;;38967:20;;38989:8;;38999:15;;38902:113;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38902:113:0;;;;;;;;;;;;:::i;:::-;;38345:682;39066:7;;:32;;-1:-1:-1;;;39066:32:0;;39092:4;39066:32;;;820:51:1;39039:24:0;;-1:-1:-1;;;;;39066:7:0;;:17;;793:18:1;;39066:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39130:10;;39109:7;;39039:59;;-1:-1:-1;39109:50:0;;-1:-1:-1;;;;;39109:7:0;;;;39130:10;39039:59;39109:20;:50::i;:::-;39182:10;;39170:60;;-1:-1:-1;;;39170:60:0;;;;;2247:25:1;;;-1:-1:-1;;;;;39182:10:0;;;;39170:42;;2220:18:1;;39170:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39248:74:0;;;12576:25:1;;;12632:2;12617:18;;12610:34;;;12660:18;;;12653:34;;;12718:2;12703:18;;12696:34;;;39306:15:0;12761:3:1;12746:19;;12739:35;39248:74:0;;-1:-1:-1;12563:3:1;12548:19;;-1:-1:-1;39248:74:0;;;;;;;37698:1632;;;;37672:1658::o;41688:202::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;41779:40:::1;::::0;-1:-1:-1;;;;;838:32:1;;820:51;;41779:40:0::1;::::0;808:2:1;793:18;41779:40:0::1;;;;;;;41842:10;::::0;41830:52:::1;::::0;-1:-1:-1;;;41830:52:0;;-1:-1:-1;;;;;838:32:1;;;41830:52:0::1;::::0;::::1;820:51:1::0;41842:10:0;;::::1;::::0;41830:41:::1;::::0;793:18:1;;41830:52:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;41688:202:::0;:::o;13575:103::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;13640:30:::1;13667:1;13640:18;:30::i;:::-;13575:103::o:0;41142:185::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;35711:4:::1;41216;:15;;41208:32;;;;-1:-1:-1::0;;;41208:32:0::1;;;;;;12987:2:1::0;12969:21;;;13026:1;13006:18;;;12999:29;-1:-1:-1;;;13059:2:1;13044:18;;13037:34;13103:2;13088:18;;12785:327;41208:32:0::1;41271:11;::::0;41256:33:::1;::::0;;13291:25:1;;;13347:2;13332:18;;13325:34;;;41256:33:0::1;::::0;13264:18:1;41256:33:0::1;;;;;;;41300:11;:18:::0;41142:185::o;39338:160::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;39431:10:::1;::::0;39417:38:::1;::::0;;-1:-1:-1;;;;;39431:10:0;;::::1;13582:34:1::0;;13652:15;;;13647:2;13632:18;;13625:43;39417:38:0::1;::::0;13517:18:1;39417:38:0::1;;;;;;;39466:10;:24:::0;;-1:-1:-1;;;;;;39466:24:0::1;-1:-1:-1::0;;;;;39466:24:0;;;::::1;::::0;;;::::1;::::0;;39338:160::o;35845:35::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35845:35:0;;-1:-1:-1;35845:35:0;:::o;40282:267::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;40372:9:::1;::::0;40359:35:::1;::::0;;-1:-1:-1;;;;;40372:9:0;;::::1;13582:34:1::0;;13652:15;;;13647:2;13632:18;;13625:43;40359:35:0::1;::::0;13517:18:1;40359:35:0::1;;;;;;;40407:7;::::0;:47:::1;::::0;-1:-1:-1;;;;;40407:7:0::1;40427:10:::0;-1:-1:-1;;40407:19:0::1;:47::i;:::-;40485:9;::::0;40465:7:::1;::::0;:33:::1;::::0;-1:-1:-1;;;;;40465:7:0;;::::1;::::0;40485:9:::1;;40465:19;:33::i;:::-;40519:9;:22:::0;;-1:-1:-1;;;;;;40519:22:0::1;-1:-1:-1::0;;;;;40519:22:0;;;::::1;::::0;;;::::1;::::0;;40282:267::o;39660:401::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;39813:82:::1;::::0;;-1:-1:-1;;;;;13922:32:1;;13904:51;;13986:2;13971:18;;13964:34;;;14014:18;;;14007:34;;;14084:14;;14077:22;14072:2;14057:18;;14050:50;39813:82:0::1;::::0;13891:3:1;13876:19;39813:82:0::1;;;;;;;39906:9;:22:::0;;-1:-1:-1;;;;;39906:22:0;;::::1;-1:-1:-1::0;;;;;;39906:22:0;;::::1;::::0;;;::::1;::::0;;;39939:12:::1;:28:::0;;;;39978:16:::1;:36:::0;;;::::1;;39906:22;39978:36;-1:-1:-1::0;;39978:36:0;;::::1;::::0;;;::::1;::::0;;;40025:12:::1;:28:::0;39660:401::o;35887:37::-;;;;;;;;;;;;39506:146;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;39593:8:::1;::::0;39581:32:::1;::::0;;-1:-1:-1;;;;;39593:8:0;;::::1;13582:34:1::0;;13652:15;;;13647:2;13632:18;;13625:43;39581:32:0::1;::::0;13517:18:1;39581:32:0::1;;;;;;;39624:8;:20:::0;;-1:-1:-1;;;;;;39624:20:0::1;-1:-1:-1::0;;;;;39624:20:0;;;::::1;::::0;;;::::1;::::0;;39506:146::o;13833:201::-;12997:6;;-1:-1:-1;;;;;12997:6:0;11448:10;13144:23;13136:68;;;;-1:-1:-1;;;13136:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13922:22:0;::::1;13914:73;;;::::0;-1:-1:-1;;;13914:73:0;;14313:2:1;13914:73:0::1;::::0;::::1;14295:21:1::0;14352:2;14332:18;;;14325:30;14391:34;14371:18;;;14364:62;-1:-1:-1;;;14442:18:1;;;14435:36;14488:19;;13914:73:0::1;14111:402:1::0;13914:73:0::1;13998:28;14017:8;13998:18;:28::i;:::-;13833:201:::0;:::o;36759:857::-;9635:13;;;;;;;:48;;9671:12;;;;9670:13;9635:48;;;10438:4;1208:20;1256:8;9651:16;9627:107;;;;-1:-1:-1;;;9627:107:0;;14720:2:1;9627:107:0;;;14702:21:1;14759:2;14739:18;;;14732:30;14798:34;14778:18;;;14771:62;-1:-1:-1;;;14849:18:1;;;14842:44;14903:19;;9627:107:0;14518:410:1;9627:107:0;9747:19;9770:13;;;;;;9769:14;9794:101;;;;9829:13;:20;;-1:-1:-1;;9864:19:0;;;;;9794:101;37124:16:::1;:14;:16::i;:::-;37153:4;:31:::0;;-1:-1:-1;;;;;;37153:31:0;;::::1;-1:-1:-1::0;;;;;37153:31:0;;::::1;::::0;;;::::1;::::0;;;37195:7:::1;:38:::0;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;37244:6:::1;:35:::0;;;::::1;::::0;;::::1;;::::0;;37290:8:::1;:20:::0;;;::::1;::::0;;::::1;;::::0;;37321:10:::1;:24:::0;;;::::1;::::0;;::::1;;::::0;;37358:13:::1;:30:::0;;-1:-1:-1;;37358:30:0::1;::::0;::::1;;;::::0;;37399:11:::1;:26:::0;;;37438:9:::1;:22:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;37471:47:::1;::::0;37438:22;-1:-1:-1;;37471:19:0::1;:47::i;:::-;37531:31:::0;;::::1;::::0;:18:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;37573:35:0;;::::1;::::0;:20:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;:::-;;9925:14:::0;9921:68;;;9972:5;9956:21;;-1:-1:-1;;9956:21:0;;;9921:68;9342:654;36759:857;;;;;;;;;;:::o;31310:222::-;31465:58;;-1:-1:-1;;;;;15125:32:1;;31465:58:0;;;15107:51:1;15174:18;;;15167:34;;;31438:86:0;;31458:5;;-1:-1:-1;;;31488:23:0;15080:18:1;;31465:58:0;;;;-1:-1:-1;;31465:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;31465:58:0;-1:-1:-1;;;;;;31465:58:0;;;;;;;;;;31438:19;:86::i;14194:191::-;14287:6;;;-1:-1:-1;;;;;14304:17:0;;;-1:-1:-1;;;;;;14304:17:0;;;;;;;14337:40;;14287:6;;;14304:17;14287:6;;14337:40;;14268:16;;14337:40;14257:128;14194:191;:::o;32068:627::-;32443:10;;;32442:62;;-1:-1:-1;32459:39:0;;-1:-1:-1;;;32459:39:0;;32483:4;32459:39;;;13582:34:1;-1:-1:-1;;;;;13652:15:1;;;13632:18;;;13625:43;32459:15:0;;;;;13517:18:1;;32459:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;32442:62;32420:166;;;;-1:-1:-1;;;32420:166:0;;15414:2:1;32420:166:0;;;15396:21:1;15453:2;15433:18;;;15426:30;15492:34;15472:18;;;15465:62;-1:-1:-1;;;15543:18:1;;;15536:52;15605:19;;32420:166:0;15212:418:1;32420:166:0;32624:62;;-1:-1:-1;;;;;15125:32:1;;32624:62:0;;;15107:51:1;15174:18;;;15167:34;;;32597:90:0;;32617:5;;-1:-1:-1;;;32647:22:0;15080:18:1;;32624:62:0;14933:274:1;12588:134:0;10238:13;;;;;;;10230:69;;;;-1:-1:-1;;;10230:69:0;;;;;;;:::i;:::-;12651:26:::1;:24;:26::i;:::-;12688;:24;:26::i;33938:727::-:0;34373:23;34399:69;34427:4;34399:69;;;;;;;;;;;;;;;;;34407:5;-1:-1:-1;;;;;34399:27:0;;;:69;;;;;:::i;:::-;34483:17;;34373:95;;-1:-1:-1;34483:21:0;34479:179;;34580:10;34569:30;;;;;;;;;;;;:::i;:::-;34561:85;;;;-1:-1:-1;;;34561:85:0;;16499:2:1;34561:85:0;;;16481:21:1;16538:2;16518:18;;;16511:30;16577:34;16557:18;;;16550:62;-1:-1:-1;;;16628:18:1;;;16621:40;16678:19;;34561:85:0;16297:406:1;11292:70:0;10238:13;;;;;;;10230:69;;;;-1:-1:-1;;;10230:69:0;;;;;;;:::i;12730:113::-;10238:13;;;;;;;10230:69;;;;-1:-1:-1;;;10230:69:0;;;;;;;:::i;:::-;12803:32:::1;11448:10:::0;12803:18:::1;:32::i;3691:229::-:0;3828:12;3860:52;3882:6;3890:4;3896:1;3899:12;3860:21;:52::i;:::-;3853:59;;3691:229;;;;;;:::o;4811:510::-;4981:12;5039:5;5014:21;:30;;5006:81;;;;-1:-1:-1;;;5006:81:0;;16910:2:1;5006:81:0;;;16892:21:1;16949:2;16929:18;;;16922:30;16988:34;16968:18;;;16961:62;-1:-1:-1;;;17039:18:1;;;17032:36;17085:19;;5006:81:0;16708:402:1;5006:81:0;1208:20;;5098:60;;;;-1:-1:-1;;;5098:60:0;;17317:2:1;5098:60:0;;;17299:21:1;17356:2;17336:18;;;17329:30;17395:31;17375:18;;;17368:59;17444:18;;5098:60:0;17115:353:1;5098:60:0;5172:12;5186:23;5213:6;-1:-1:-1;;;;;5213:11:0;5232:5;5239:4;5213:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5171:73;;;;5262:51;5279:7;5288:10;5300:12;5262:16;:51::i;:::-;5255:58;4811:510;-1:-1:-1;;;;;;;4811:510:0:o;6520:712::-;6670:12;6699:7;6695:530;;;-1:-1:-1;6730:10:0;6723:17;;6695:530;6844:17;;:21;6840:374;;7042:10;7036:17;7103:15;7090:10;7086:2;7082:19;7075:44;6840:374;7185:12;7178:20;;-1:-1:-1;;;7178:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:260::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;;408:38;442:2;431:9;427:18;408:38;:::i;:::-;398:48;;192:260;;;;;:::o;1090:118::-;1176:5;1169:13;1162:21;1155:5;1152:32;1142:60;;1198:1;1195;1188:12;1213:128;1278:20;;1307:28;1278:20;1307:28;:::i;1346:750::-;1438:6;1446;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;1563:9;1550:23;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1794:2;1781:16;1820:2;1812:6;1809:14;1806:34;;;1836:1;1833;1826:12;1806:34;1891:7;1884:4;1874:6;1871:1;1867:14;1863:2;1859:23;1855:34;1852:47;1849:67;;;1912:1;1909;1902:12;1849:67;1943:4;1935:13;;;;-1:-1:-1;1967:6:1;-1:-1:-1;;2008:20:1;;1995:34;2038:28;1995:34;2038:28;:::i;:::-;2085:5;2075:15;;;1346:750;;;;;:::o;2283:309::-;2348:6;2356;2409:2;2397:9;2388:7;2384:23;2380:32;2377:52;;;2425:1;2422;2415:12;2377:52;2464:9;2451:23;2483:28;2505:5;2483:28;:::i;:::-;2530:5;2582:2;2567:18;;;;2554:32;;-1:-1:-1;;;2283:309:1:o;2597:186::-;2656:6;2709:2;2697:9;2688:7;2684:23;2680:32;2677:52;;;2725:1;2722;2715:12;2677:52;2748:29;2767:9;2748:29;:::i;2788:180::-;2847:6;2900:2;2888:9;2879:7;2875:23;2871:32;2868:52;;;2916:1;2913;2906:12;2868:52;-1:-1:-1;2939:23:1;;2788:180;-1:-1:-1;2788:180:1:o;2973:452::-;3056:6;3064;3072;3080;3133:3;3121:9;3112:7;3108:23;3104:33;3101:53;;;3150:1;3147;3140:12;3101:53;3173:29;3192:9;3173:29;:::i;:::-;3163:39;;3249:2;3238:9;3234:18;3221:32;3211:42;;3300:2;3289:9;3285:18;3272:32;3262:42;;3354:2;3343:9;3339:18;3326:32;3367:28;3389:5;3367:28;:::i;:::-;2973:452;;;;-1:-1:-1;2973:452:1;;-1:-1:-1;;2973:452:1:o;3430:127::-;3491:10;3486:3;3482:20;3479:1;3472:31;3522:4;3519:1;3512:15;3546:4;3543:1;3536:15;3562:275;3633:2;3627:9;3698:2;3679:13;;-1:-1:-1;;3675:27:1;3663:40;;3733:18;3718:34;;3754:22;;;3715:62;3712:88;;;3780:18;;:::i;:::-;3816:2;3809:22;3562:275;;-1:-1:-1;3562:275:1:o;3842:183::-;3902:4;3935:18;3927:6;3924:30;3921:56;;;3957:18;;:::i;:::-;-1:-1:-1;4002:1:1;3998:14;4014:4;3994:25;;3842:183::o;4030:668::-;4084:5;4137:3;4130:4;4122:6;4118:17;4114:27;4104:55;;4155:1;4152;4145:12;4104:55;4191:6;4178:20;4217:4;4241:60;4257:43;4297:2;4257:43;:::i;:::-;4241:60;:::i;:::-;4335:15;;;4421:1;4417:10;;;;4405:23;;4401:32;;;4366:12;;;;4445:15;;;4442:35;;;4473:1;4470;4463:12;4442:35;4509:2;4501:6;4497:15;4521:148;4537:6;4532:3;4529:15;4521:148;;;4603:23;4622:3;4603:23;:::i;:::-;4591:36;;4647:12;;;;4554;;4521:148;;;-1:-1:-1;4687:5:1;4030:668;-1:-1:-1;;;;;;4030:668:1:o;4703:1182::-;4890:6;4898;4906;4914;4922;4930;4938;4946;4954;4962;5015:3;5003:9;4994:7;4990:23;4986:33;4983:53;;;5032:1;5029;5022:12;4983:53;5055:29;5074:9;5055:29;:::i;:::-;5045:39;;5103:38;5137:2;5126:9;5122:18;5103:38;:::i;:::-;5093:48;;5160:38;5194:2;5183:9;5179:18;5160:38;:::i;:::-;5150:48;;5217:38;5251:2;5240:9;5236:18;5217:38;:::i;:::-;5207:48;;5274:39;5308:3;5297:9;5293:19;5274:39;:::i;:::-;5264:49;;5332:39;5366:3;5355:9;5351:19;5332:39;:::i;:::-;5322:49;;5422:3;5411:9;5407:19;5394:33;5446:18;5487:2;5479:6;5476:14;5473:34;;;5503:1;5500;5493:12;5473:34;5526:61;5579:7;5570:6;5559:9;5555:22;5526:61;:::i;:::-;5516:71;;5640:3;5629:9;5625:19;5612:33;5596:49;;5670:2;5660:8;5657:16;5654:36;;;5686:1;5683;5676:12;5654:36;;5709:63;5764:7;5753:8;5742:9;5738:24;5709:63;:::i;:::-;5699:73;;;5791:36;5822:3;5811:9;5807:19;5791:36;:::i;:::-;5781:46;;5874:3;5863:9;5859:19;5846:33;5836:43;;4703:1182;;;;;;;;;;;;;:::o;5890:356::-;6092:2;6074:21;;;6111:18;;;6104:30;6170:34;6165:2;6150:18;;6143:62;6237:2;6222:18;;5890:356::o;6584:184::-;6654:6;6707:2;6695:9;6686:7;6682:23;6678:32;6675:52;;;6723:1;6720;6713:12;6675:52;-1:-1:-1;6746:16:1;;6584:184;-1:-1:-1;6584:184:1:o;6773:127::-;6834:10;6829:3;6825:20;6822:1;6815:31;6865:4;6862:1;6855:15;6889:4;6886:1;6879:15;7241:127;7302:10;7297:3;7293:20;7290:1;7283:31;7333:4;7330:1;7323:15;7357:4;7354:1;7347:15;7373:125;7413:4;7441:1;7438;7435:8;7432:34;;;7446:18;;:::i;:::-;-1:-1:-1;7483:9:1;;7373:125::o;7838:495::-;7899:3;7937:5;7931:12;7964:6;7959:3;7952:19;7990:4;8019:2;8014:3;8010:12;8003:19;;8041:5;8038:1;8031:16;8083:2;8080:1;8070:16;8104:1;8114:194;8128:6;8125:1;8122:13;8114:194;;;8193:13;;-1:-1:-1;;;;;8189:39:1;8177:52;;8249:12;;;;8225:1;8284:14;;;;8143:9;8114:194;;;-1:-1:-1;8324:3:1;;7838:495;-1:-1:-1;;;;;7838:495:1:o;8338:813::-;8602:2;8591:9;8584:21;8565:4;8628:64;8688:2;8677:9;8673:18;8665:6;8628:64;:::i;:::-;8749:22;;;8711:2;8729:18;;;8722:50;;;;8807:22;;;8883:6;;8845:15;;8907:1;8917:208;8931:6;8928:1;8925:13;8917:208;;;-1:-1:-1;;;;;8996:26:1;9015:6;8996:26;:::i;:::-;8992:52;8980:65;;9100:15;;;;9065:12;;;;8953:1;8946:9;8917:208;;;-1:-1:-1;9142:3:1;8338:813;-1:-1:-1;;;;;;;8338:813:1:o;9752:128::-;9792:3;9823:1;9819:6;9816:1;9813:13;9810:39;;;9829:18;;:::i;:::-;-1:-1:-1;9865:9:1;;9752:128::o;9885:168::-;9925:7;9991:1;9987;9983:6;9979:14;9976:1;9973:21;9968:1;9961:9;9954:17;9950:45;9947:71;;;9998:18;;:::i;:::-;-1:-1:-1;10038:9:1;;9885:168::o;10058:217::-;10098:1;10124;10114:132;;10168:10;10163:3;10159:20;10156:1;10149:31;10203:4;10200:1;10193:15;10231:4;10228:1;10221:15;10114:132;-1:-1:-1;10260:9:1;;10058:217::o;10839:587::-;11135:6;11124:9;11117:25;11178:6;11173:2;11162:9;11158:18;11151:34;11221:3;11216:2;11205:9;11201:18;11194:31;11098:4;11242:65;11302:3;11291:9;11287:19;11279:6;11242:65;:::i;:::-;-1:-1:-1;;;;;11343:32:1;;;;11338:2;11323:18;;11316:60;-1:-1:-1;11407:3:1;11392:19;11385:35;11234:73;10839:587;-1:-1:-1;;;10839:587:1:o;11431:881::-;11526:6;11557:2;11600;11588:9;11579:7;11575:23;11571:32;11568:52;;;11616:1;11613;11606:12;11568:52;11649:9;11643:16;11682:18;11674:6;11671:30;11668:50;;;11714:1;11711;11704:12;11668:50;11737:22;;11790:4;11782:13;;11778:27;-1:-1:-1;11768:55:1;;11819:1;11816;11809:12;11768:55;11848:2;11842:9;11871:60;11887:43;11927:2;11887:43;:::i;11871:60::-;11965:15;;;12047:1;12043:10;;;;12035:19;;12031:28;;;11996:12;;;;12071:19;;;12068:39;;;12103:1;12100;12093:12;12068:39;12127:11;;;;12147:135;12163:6;12158:3;12155:15;12147:135;;;12229:10;;12217:23;;12180:12;;;;12260;;;;12147:135;;15635:407;15837:2;15819:21;;;15876:2;15856:18;;;15849:30;15915:34;15910:2;15895:18;;15888:62;-1:-1:-1;;;15981:2:1;15966:18;;15959:41;16032:3;16017:19;;15635:407::o;16047:245::-;16114:6;16167:2;16155:9;16146:7;16142:23;16138:32;16135:52;;;16183:1;16180;16173:12;16135:52;16215:9;16209:16;16234:28;16256:5;16234:28;:::i;17473:258::-;17545:1;17555:113;17569:6;17566:1;17563:13;17555:113;;;17645:11;;;17639:18;17626:11;;;17619:39;17591:2;17584:10;17555:113;;;17686:6;17683:1;17680:13;17677:48;;;-1:-1:-1;;17721:1:1;17703:16;;17696:27;17473:258::o;17736:274::-;17865:3;17903:6;17897:13;17919:53;17965:6;17960:3;17953:4;17945:6;17941:17;17919:53;:::i;:::-;17988:16;;;;;17736:274;-1:-1:-1;;17736:274:1:o;18015:383::-;18164:2;18153:9;18146:21;18127:4;18196:6;18190:13;18239:6;18234:2;18223:9;18219:18;18212:34;18255:66;18314:6;18309:2;18298:9;18294:18;18289:2;18281:6;18277:15;18255:66;:::i;:::-;18382:2;18361:15;-1:-1:-1;;18357:29:1;18342:45;;;;18389:2;18338:54;;18015:383;-1:-1:-1;;18015:383:1:o
Metadata Hash
3a45747b8213ef5ec7181dcac9ac7f21aeca6902f4a065e94877d8e4c7798495
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.