ERC-20
Overview
Max Total Supply
0.000000296913661176 mLINK
Holders
51
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000009277978196 mLINKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MMVault
Compiler Version
v0.6.7+commit.b8d736ae
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-30 */ /** *Submitted for verification at Etherscan.io on 2021-01-23 */ pragma solidity ^0.6.7; // SPDX-License-Identifier: MIT interface IController { function vaults(address) external view returns (address); function rewards() external view returns (address); function devfund() external view returns (address); function treasury() external view returns (address); function balanceOf(address) external view returns (uint256); function withdraw(address, uint256) external; function earn(address, uint256) external; } // SPDX-License-Identifier: MIT /** * @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; } } // SPDX-License-Identifier: MIT /* * @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: contracts/GSN/Context.sol // SPDX-License-Identifier: MIT // File: contracts/token/ERC20/IERC20.sol /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/utils/Address.sol /** * @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: contracts/token/ERC20/ERC20.sol /** * @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 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 { } } /** * @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"); } } } // SPDX-License-Identifier: GPL-3.0-or-later // Code adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/ /** * @dev Interface of the ERC2612 standard as defined in the EIP. * * Adds the {permit} method, which can be used to change one's * {IERC20-allowance} without having to send a transaction, by signing a * message. This allows users to spend tokens without having to hold Ether. * * See https://eips.ethereum.org/EIPS/eip-2612. */ interface IERC2612 { /** * @dev Sets `amount` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; /** * @dev Returns the current ERC2612 nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); } // SPDX-License-Identifier: GPL-3.0-or-later // Adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/53516bc555a454862470e7860a9b5254db4d00f5/contracts/token/ERC20/ERC20Permit.sol /** * @author Georgios Konstantopoulos * @dev Extension of {ERC20} that allows token holders to use their tokens * without sending any transactions by setting {IERC20-allowance} with a * signature using the {permit} method, and then spend them via * {IERC20-transferFrom}. * * The {permit} signature mechanism conforms to the {IERC2612} interface. */ abstract contract ERC20Permit is ERC20, IERC2612 { mapping (address => uint256) public override nonces; bytes32 public immutable PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public immutable DOMAIN_SEPARATOR; constructor(string memory name_, string memory symbol_) internal ERC20(name_, symbol_) { uint256 chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name_)), keccak256(bytes("1")), chainId, address(this) ) ); } /** * @dev See {IERC2612-permit}. * * In cases where the free option is not a concern, deadline can simply be * set to uint(-1), so it should be seen as an optional parameter */ function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override { require(deadline >= block.timestamp, "ERC20Permit: expired deadline"); bytes32 hashStruct = keccak256( abi.encode( PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline ) ); bytes32 hash = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, hashStruct ) ); address signer = ecrecover(hash, v, r, s); require( signer != address(0) && signer == owner, "ERC20Permit: invalid signature" ); _approve(owner, spender, amount); } } // SPDX-License-Identifier: MIT /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 constant _NOT_ENTERED = 1; uint256 constant _ENTERED = 2; uint256 _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @title IFlashLoanReceiver interface * @notice Interface for the Mushrooms fee IFlashLoanReceiver. * @author Mushrooms * @dev implement this interface to develop a flashloan-compatible flashLoanReceiver contract **/ interface IFlashLoanReceiver { /** * @dev execute caller's logic after borrowed tokens * @param _token the address of the reserve in which the flashloan is happening * @param _amount amount of the flashloan tokens * @param _loanFee flashloan fee of this transaction * @param _data the data from caller **/ function mushroomsFlashloan(address _token, uint256 _amount, uint256 _loanFee, bytes calldata _data) external; } interface IChiToken { function freeFromUpTo(address from, uint256 value) external returns (uint256 freed); function balanceOf(address account) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); } // SPDX-License-Identifier: MIT interface IMasterchef { function BONUS_MULTIPLIER() external view returns (uint256); function add( uint256 _allocPoint, address _lpToken, bool _withUpdate ) external; function bonusEndBlock() external view returns (uint256); function deposit(uint256 _pid, uint256 _amount) external; function dev(address _devaddr) external; function devFundDivRate() external view returns (uint256); function devaddr() external view returns (address); function emergencyWithdraw(uint256 _pid) external; function getMultiplier(uint256 _from, uint256 _to) external view returns (uint256); function massUpdatePools() external; function owner() external view returns (address); function pendingMM(uint256 _pid, address _user) external view returns (uint256); function mm() external view returns (address); function mmPerBlock() external view returns (uint256); function poolInfo(uint256) external view returns ( address lpToken, uint256 allocPoint, uint256 lastRewardBlock, uint256 accMMPerShare ); function poolLength() external view returns (uint256); function renounceOwnership() external; function set( uint256 _pid, uint256 _allocPoint, bool _withUpdate ) external; function setBonusEndBlock(uint256 _bonusEndBlock) external; function setDevFundDivRate(uint256 _devFundDivRate) external; function setMMPerBlock(uint256 _mmPerBlock) external; function startBlock() external view returns (uint256); function totalAllocPoint() external view returns (uint256); function transferOwnership(address newOwner) external; function updatePool(uint256 _pid) external; function userInfo(uint256, address) external view returns (uint256 amount, uint256 rewardDebt); function withdraw(uint256 _pid, uint256 _amount) external; function notifyBuybackReward(uint256 _amount) external; } // https://github.com/iearn-finance/vaults/blob/master/contracts/vaults/yVault.sol contract MMVault is ReentrancyGuard, ERC20Permit { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; IERC20 public token; IChiToken public constant chi = IChiToken(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c); uint256 public min = 9500; uint256 public constant max = 10000; uint256 public loanFee = 1; uint256 public loanFeeMax = 10000; bool public loanEnabled = true; address public governance; address public timelock; address public controller; mapping(address => bool) public keepers; mapping(address => bool) public reentrancyWhitelist; uint256 public DAY_SECONDS = 86400; uint256 public lockWindowBuffer = DAY_SECONDS/4; uint256 public lockStartTime; uint256 public lockWindow; uint256 public withdrawWindow; uint256 public earnedTimestamp; bool public lockEnabled = false; bool public earnOnceEnabled = false; event FlashLoan(address _token, address _receiver, uint256 _amount, uint256 _loanFee); modifier discountCHI() { uint256 gasStart = gasleft(); _; uint256 gasSpent = 21000 + gasStart - gasleft() + 16 * msg.data.length; if(chi.balanceOf(msg.sender) > 0) { chi.freeFromUpTo(msg.sender, (gasSpent + 14154) / 41947); } } modifier onlyKeepers { require( keepers[msg.sender] || msg.sender == governance, "!keepers" ); _; } modifier onlyGovernance(){ require(msg.sender == governance, "!governance"); _; } modifier canEarn { if(lockEnabled){ require( block.timestamp > lockStartTime, "!earnTime" ); if(earnOnceEnabled){ require( block.timestamp.sub(earnedTimestamp) > lockWindow, "!earnTwice"); if(earnedTimestamp != 0){ lockStartTime = getLockCycleEndTime(); } earnedTimestamp = block.timestamp; } } _; } modifier canWithdraw(uint256 _shares) { if(lockEnabled){ //withdraw locker not work when withdraw amount less than available balance if(!withdrawableWithoutLock(_shares)){ uint256 withdrawStartTimestamp = lockStartTime.add(lockWindow); require( block.timestamp > withdrawStartTimestamp && block.timestamp < withdrawStartTimestamp.add(withdrawWindow), "!withdrawTime" ); } } _; } modifier nonReentrantWithWhitelist() { // only check if NOT in whitelist if (!reentrancyWhitelist[msg.sender]){ // On the first call to nonReentrantWithWhitelist, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrantWithWhitelist after this point will fail _status = _ENTERED; } _; if (!reentrancyWhitelist[msg.sender]){ // By storing the original value once again, a refund is triggered (see https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } constructor(address _token, address _governance, address _timelock, address _controller) public ERC20Permit( string(abi.encodePacked("mushrooming ", ERC20(_token).name())), string(abi.encodePacked("m", ERC20(_token).symbol())) ) { _setupDecimals(ERC20(_token).decimals()); token = IERC20(_token); governance = _governance; timelock = _timelock; controller = _controller; //time line: [lockStartTime]|----lockWindow----|----withdrawWindow----|[lockStartTime]|----lockWindow---|........ lockWindow = (14 * DAY_SECONDS) + lockWindowBuffer; withdrawWindow = DAY_SECONDS/2; lockStartTime = block.timestamp.add(withdrawWindow); } function getName() public pure returns(string memory){ return "mmVaultV2"; } function balance() public view returns (uint256) { return token.balanceOf(address(this)).add(IController(controller).balanceOf(address(token))); } function setMin(uint256 _min) external onlyGovernance{ min = _min; } function setGovernance(address _governance) public onlyGovernance{ governance = _governance; } function setTimelock(address _timelock) public { require(msg.sender == timelock, "!timelock"); timelock = _timelock; } function setController(address _controller) public { require(msg.sender == timelock, "!timelock"); controller = _controller; } function setLoanFee(uint256 _loanFee) public onlyGovernance{ loanFee = _loanFee; } function setLoanEnabled(bool _loanEnabled) public onlyGovernance{ loanEnabled = _loanEnabled; } function addKeeper(address _keeper) public onlyGovernance{ keepers[_keeper] = true; } function removeKeeper(address _keeper) public onlyGovernance{ keepers[_keeper] = false; } function addReentrancyWhitelist(address _whitelist) public onlyGovernance{ reentrancyWhitelist[_whitelist] = true; } function removeReentrancyWhitelist(address _whitelist) public onlyGovernance{ reentrancyWhitelist[_whitelist] = false; } function setLockWindow(uint256 _lockWindow) public onlyGovernance { lockWindow = _lockWindow.add(lockWindowBuffer); } function setWithdrawWindow(uint256 _withdrawWindow) public onlyGovernance { withdrawWindow = _withdrawWindow; } function setLockEnabled(bool _enabled) public onlyGovernance { lockEnabled = _enabled; } function setEarnOnceEnabled(bool _earnOnce) public onlyGovernance { earnOnceEnabled = _earnOnce; } function resetLockStartTime(uint256 _lockStartTime) public onlyGovernance{ require(lockEnabled, "!lockEnabled"); uint256 withdrawEndTime = getLockCycleEndTime(); require(block.timestamp >= withdrawEndTime, "Last lock cycle not end"); require(_lockStartTime > block.timestamp, "!_lockStartTime"); lockStartTime = _lockStartTime; } function getLockCycleEndTime() public view returns (uint256){ return lockStartTime.add(lockWindow).add(withdrawWindow); } function withdrawableWithoutLock(uint256 _shares) public view returns(bool){ uint256 _withdrawAmount = (balance().mul(_shares)).div(totalSupply()); return _withdrawAmount <= token.balanceOf(address(this)); } // Custom logic in here for how much the vaults allows to be borrowed // Sets minimum required on-hand to keep small withdrawals cheap function available() public view returns (uint256) { return token.balanceOf(address(this)).mul(min).div(max); } function earn() public nonReentrant onlyKeepers canEarn { uint256 _bal = available(); token.safeTransfer(controller, _bal); IController(controller).earn(address(token), _bal); } function depositAll() external { deposit(token.balanceOf(msg.sender)); } function deposit(uint256 _approveAmount, uint256 _amount, uint256 _deadline, uint8 v, bytes32 r, bytes32 s) public { require(_approveAmount >= _amount, "!_approveAmount"); IERC2612(address(token)).permit(msg.sender, address(this), _approveAmount, _deadline, v, r, s); deposit(_amount); } function deposit(uint256 _amount) public nonReentrant { uint256 _pool = balance(); uint256 _before = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), _amount); uint256 _after = token.balanceOf(address(this)); _amount = _after.sub(_before); // Additional check for deflationary tokens uint256 shares = 0; if (totalSupply() == 0) { shares = _amount; } else { shares = (_amount.mul(totalSupply())).div(_pool); } _mint(msg.sender, shares); } function withdrawAll() external { withdraw(balanceOf(msg.sender)); } // Used to swap any borrowed reserve over the debt limit to liquidate to 'token' function harvest(address reserve, uint256 amount) external nonReentrant { require(msg.sender == controller, "!controller"); require(reserve != address(token), "token"); IERC20(reserve).safeTransfer(controller, amount); } // No rebalance implementation for lower fees and faster swaps function withdraw(uint256 _shares) public nonReentrant canWithdraw(_shares) { uint256 r = (balance().mul(_shares)).div(totalSupply()); _burn(msg.sender, _shares); // Check balance uint256 b = token.balanceOf(address(this)); if (b < r) { uint256 _withdraw = r.sub(b); IController(controller).withdraw(address(token), _withdraw); uint256 _after = token.balanceOf(address(this)); uint256 _diff = _after.sub(b); if (_diff < _withdraw) { r = b.add(_diff); } } token.safeTransfer(msg.sender, r); } function getRatio() public view returns (uint256) { return balance().mul(1e18).div(totalSupply()); } function flashLoan(address _receiver, uint256 _amount, bytes memory _data) public nonReentrantWithWhitelist discountCHI{ require(loanEnabled == true, "!loanEnabled"); require(_amount > 0, "amount too small!"); uint256 beforeBalance = token.balanceOf(address(this)); require(beforeBalance > _amount, "balance not enough!"); //loanFee uint256 _fee = _amount.mul(loanFee).div(loanFeeMax); require(_fee > 0, "fee too small"); //transfer token to _receiver token.safeTransfer(_receiver, _amount); //execute user's logic IFlashLoanReceiver(_receiver).mushroomsFlashloan(address(token), _amount, _fee, _data); uint256 afterBalance = token.balanceOf(address(this)); require(afterBalance == beforeBalance.add(_fee), "payback amount incorrect!"); emit FlashLoan(address(token), _receiver, _amount, _fee); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_timelock","type":"address"},{"internalType":"address","name":"_controller","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":false,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"address","name":"_receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_loanFee","type":"uint256"}],"name":"FlashLoan","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"},{"inputs":[],"name":"DAY_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"addKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"addReentrancyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"chi","outputs":[{"internalType":"contract IChiToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_approveAmount","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earnOnceEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earnedTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"flashLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLockCycleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loanEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loanFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loanFeeMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockWindowBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reentrancyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"removeKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"removeReentrancyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockStartTime","type":"uint256"}],"name":"resetLockStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_earnOnce","type":"bool"}],"name":"setEarnOnceEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_loanEnabled","type":"bool"}],"name":"setLoanEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_loanFee","type":"uint256"}],"name":"setLoanFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setLockEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockWindow","type":"uint256"}],"name":"setLockWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_timelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawWindow","type":"uint256"}],"name":"setWithdrawWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdrawableWithoutLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c0604081905280605262003ce482396040519081900360520190206080525061251c6009556001600a819055612710600b55600c805460ff19169091179055620151806011556154606012556017805461ffff191690553480156200006457600080fd5b5060405162003d8838038062003d88833981810160405260808110156200008a57600080fd5b508051602082015160408084015160609094015181516306fdde0360e01b815291519394929390916001600160a01b038616916306fdde0391600480820192600092909190829003018186803b158015620000e457600080fd5b505afa158015620000f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200012357600080fd5b81019080805160405193929190846401000000008211156200014457600080fd5b9083019060208201858111156200015a57600080fd5b82516401000000008111828201881017156200017557600080fd5b82525081516020918201929091019080838360005b83811015620001a45781810151838201526020016200018a565b50505050905090810190601f168015620001d25780820380516001836020036101000a031916815260200191505b5060405250505060405160200180806b036bab9b43937b7b6b4b733960a51b815250600c0182805190602001908083835b60208310620002245780518252601f19909201916020918201910162000203565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052846001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015620002d157600080fd5b8101908080516040519392919084640100000000821115620002f257600080fd5b9083019060208201858111156200030857600080fd5b82516401000000008111828201881017156200032357600080fd5b82525081516020918201929091019080838360005b838110156200035257818101518382015260200162000338565b50505050905090810190601f168015620003805780820380516001836020036101000a031916815260200191505b506040525050506040516020018080606d60f81b81525060010182805190602001908083835b60208310620003c75780518252601f199092019160209182019101620003a6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528181600160008190555081600490805190602001906200041d9291906200066f565b508051620004339060059060208401906200066f565b50506006805460ff1916601217905550604051469080605262003d368239604080519182900360520182208651602097880120838301835260018452603160f81b93880193909352815180880191909152808201929092527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606083015260808201939093523060a08083019190915283518083038201815260c0830180865281519188019190912090915263313ce56760e01b905291516200055f946001600160a01b038a16945063313ce5679360c4808201945091929190829003018186803b1580156200052257600080fd5b505afa15801562000537573d6000803e3d6000fd5b505050506040513d60208110156200054e57600080fd5b50516001600160e01b03620005f716565b600880546001600160a01b03199081166001600160a01b0387811691909117909255600c8054610100600160a81b03191661010087851602179055600d80548216858416179055600e80549091169183169190911781556012546011549182020160145560029004601581905550620005e9601554426200060d60201b62002a561790919060201c565b601355506200071492505050565b6006805460ff191660ff92909216919091179055565b60008282018381101562000668576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b257805160ff1916838001178555620006e2565b82800160010185558215620006e2579182015b82811115620006e2578251825591602001919060010190620006c5565b50620006f0929150620006f4565b5090565b6200071191905b80821115620006f05760008155600101620006fb565b90565b60805160a0516135a2620007426000398061122b5280611fd252508061116e5280611f6552506135a26000f3fe608060405234801561001057600080fd5b50600436106103d05760003560e01c806392eefe9b116101ff578063cd98f7f01161011a578063e0232b42116100ad578063f1941abe1161007c578063f1941abe14610ae0578063f77c479114610afd578063f889794514610b05578063fc0c546a14610b0d576103d0565b8063e0232b42146109f8578063ec1ebd7a14610ab3578063edcb208b14610abb578063f15bd9d514610ad8576103d0565b8063d9207fd9116100e9578063d9207fd91461095e578063db55118714610984578063dd62ed3e146109c2578063de5f6268146109f0576103d0565b8063cd98f7f0146108f5578063d33219b4146108fd578063d389800f14610905578063d505accf1461090d576103d0565b8063b69ef8a811610192578063bdacb30311610161578063bdacb303146108b7578063c5e68f5b146108dd578063c92aecc4146108e5578063cb028a83146108ed576103d0565b8063b69ef8a81461084d578063b6b55f2514610855578063bb10cbb514610872578063bc0ee69014610891576103d0565b8063a457c2d7116101ce578063a457c2d7146107c7578063a9059cbb146107f3578063ab033ea91461081f578063b32f2ea314610845576103d0565b806392eefe9b1461077457806395d89b411461079a5780639bc1d87c146107a25780639bcb5572146107bf576103d0565b80633644e515116102ef57806362c7fa761161028257806370a082311161025157806370a08231146107185780637ecebe001461073e57806384f3131314610764578063853828b61461076c576103d0565b806362c7fa76146106cc578063658f99b6146106d45780636aa4439f146106f15780636ac5db1914610710576103d0565b806345dc3dd8116102be57806345dc3dd81461067b57806348a0d7541461069857806358e6d53c146106a05780635aa6e675146106a8576103d0565b80633644e515146105fb57806339509351146106035780633bbd64bc1461062f5780634032b72b14610655576103d0565b8063287a0f77116103675780633166b848116103365780633166b848146105a6578063316c71ed146105ae5780633376f53a146105d4578063337e5024146105dc576103d0565b8063287a0f771461055b5780632e1a7d4d1461056357806330adf81f14610580578063313ce56714610588576103d0565b806314ae9f2e116103a357806314ae9f2e146104dd57806317d7de7c1461050357806318160ddd1461050b57806323b872dd14610525576103d0565b8063018ee9b7146103d557806302950d311461040357806306fdde0314610420578063095ea7b31461049d575b600080fd5b610401600480360360408110156103eb57600080fd5b506001600160a01b038135169060200135610b15565b005b6104016004803603602081101561041957600080fd5b5035610c21565b610428610c8d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561046257818101518382015260200161044a565b50505050905090810190601f16801561048f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104c9600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610d23565b604080519115158252519081900360200190f35b610401600480360360208110156104f357600080fd5b50356001600160a01b0316610d41565b610428610db4565b610513610dd7565b60408051918252519081900360200190f35b6104c96004803603606081101561053b57600080fd5b506001600160a01b03813581169160208101359091169060400135610ddd565b610513610e6a565b6104016004803603602081101561057957600080fd5b5035610e70565b61051361116c565b610590611190565b6040805160ff9092168252519081900360200190f35b6104c9611199565b6104c9600480360360208110156105c457600080fd5b50356001600160a01b03166111a2565b6105136111b7565b610401600480360360208110156105f257600080fd5b503515156111bd565b610513611229565b6104c96004803603604081101561061957600080fd5b506001600160a01b03813516906020013561124d565b6104c96004803603602081101561064557600080fd5b50356001600160a01b03166112a1565b6104016004803603602081101561066b57600080fd5b50356001600160a01b03166112b6565b6104016004803603602081101561069157600080fd5b503561132c565b610513611383565b61051361141d565b6106b0611423565b604080516001600160a01b039092168252519081900360200190f35b610513611437565b610401600480360360208110156106ea57600080fd5b503561143d565b6104016004803603602081101561070757600080fd5b50351515611494565b6105136114f9565b6105136004803603602081101561072e57600080fd5b50356001600160a01b03166114ff565b6105136004803603602081101561075457600080fd5b50356001600160a01b031661151a565b6104c961152c565b610401611535565b6104016004803603602081101561078a57600080fd5b50356001600160a01b0316611548565b6104286115b5565b610401600480360360208110156107b857600080fd5b5035611616565b61051361175b565b6104c9600480360360408110156107dd57600080fd5b506001600160a01b038135169060200135611761565b6104c96004803603604081101561080957600080fd5b506001600160a01b0381351690602001356117cf565b6104016004803603602081101561083557600080fd5b50356001600160a01b03166117e3565b61051361185d565b610513611863565b6104016004803603602081101561086b57600080fd5b5035611966565b6104016004803603602081101561088857600080fd5b50351515611b2e565b610401600480360360208110156108a757600080fd5b50356001600160a01b0316611b93565b610401600480360360208110156108cd57600080fd5b50356001600160a01b0316611c06565b610513611c73565b6106b0611c9e565b610513611cb0565b610513611cb6565b6106b0611cbc565b610401611ccb565b610401600480360360e081101561092357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611ee6565b6104016004803603602081101561097457600080fd5b50356001600160a01b0316612114565b610401600480360360c081101561099a57600080fd5b5080359060208101359060408101359060ff6060820135169060808101359060a0013561218a565b610513600480360360408110156109d857600080fd5b506001600160a01b0381358116916020013516612271565b61040161229c565b61040160048036036060811015610a0e57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135640100000000811115610a3e57600080fd5b820183602082011115610a5057600080fd5b80359060200191846001830284011164010000000083111715610a7257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612319945050505050565b6105136128ca565b61040160048036036020811015610ad157600080fd5b50356128eb565b6104c9612942565b6104c960048036036020811015610af657600080fd5b5035612950565b6106b06129e0565b6105136129ef565b6106b06129f5565b60026000541415610b5b576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b6002600055600e546001600160a01b03163314610bad576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6008546001600160a01b0383811691161415610bf8576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b600e54610c18906001600160a01b0384811691168363ffffffff612a0416565b50506001600055565b600c5461010090046001600160a01b03163314610c73576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601254610c8790829063ffffffff612a5616565b60145550565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b5050505050905090565b6000610d37610d30612ab7565b8484612abb565b5060015b92915050565b600c5461010090046001600160a01b03163314610d93576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600f60205260409020805460ff19169055565b60408051808201909152600981526836b6ab30bab63a2b1960b91b602082015290565b60035490565b6000610dea848484612ba7565b610e6084610df6612ab7565b610e5b8560405180606001604052806028815260200161348c602891396001600160a01b038a16600090815260026020526040812090610e34612ab7565b6001600160a01b03168152602081019190915260400160002054919063ffffffff612d1016565b612abb565b5060019392505050565b600b5481565b60026000541415610eb6576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b6002600055601754819060ff1615610f5457610ed181612950565b610f54576000610eee601454601354612a5690919063ffffffff16565b90508042118015610f115750601554610f0e90829063ffffffff612a5616565b42105b610f52576040805162461bcd60e51b815260206004820152600d60248201526c21776974686472617754696d6560981b604482015290519081900360640190fd5b505b6000610f85610f61610dd7565b610f7985610f6d611863565b9063ffffffff612da716565b9063ffffffff612e0016565b9050610f913384612e42565b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d602081101561100657600080fd5b5051905081811015611144576000611024838363ffffffff612f4a16565b600e546008546040805163f3fef3a360e01b81526001600160a01b03928316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b15801561107e57600080fd5b505af1158015611092573d6000803e3d6000fd5b5050600854604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156110e357600080fd5b505afa1580156110f7573d6000803e3d6000fd5b505050506040513d602081101561110d57600080fd5b505190506000611123828563ffffffff612f4a16565b9050828110156111405761113d848263ffffffff612a5616565b94505b5050505b600854611161906001600160a01b0316338463ffffffff612a0416565b505060016000555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60065460ff1690565b60175460ff1681565b60106020526000908152604090205460ff1681565b60145481565b600c5461010090046001600160a01b0316331461120f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601780549115156101000261ff0019909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d3761125a612ab7565b84610e5b856002600061126b612ab7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a5616565b600f6020526000908152604090205460ff1681565b600c5461010090046001600160a01b03163314611308576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b600c5461010090046001600160a01b0316331461137e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600955565b600954600854604080516370a0823160e01b815230600482015290516000936114189361271093610f79936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156113e057600080fd5b505afa1580156113f4573d6000803e3d6000fd5b505050506040513d602081101561140a57600080fd5b50519063ffffffff612da716565b905090565b60115481565b600c5461010090046001600160a01b031681565b60135481565b600c5461010090046001600160a01b0316331461148f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a55565b600c5461010090046001600160a01b031633146114e6576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6017805460ff1916911515919091179055565b61271081565b6001600160a01b031660009081526001602052604090205490565b60076020526000908152604090205481565b600c5460ff1681565b611546611541336114ff565b610e70565b565b600d546001600160a01b03163314611593576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d195780601f10610cee57610100808354040283529160200191610d19565b600c5461010090046001600160a01b03163314611668576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b60175460ff166116ae576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd8dad15b98589b195960a21b604482015290519081900360640190fd5b60006116b8611c73565b90508042101561170f576040805162461bcd60e51b815260206004820152601760248201527f4c617374206c6f636b206379636c65206e6f7420656e64000000000000000000604482015290519081900360640190fd5b428211611755576040805162461bcd60e51b815260206004820152600f60248201526e215f6c6f636b537461727454696d6560881b604482015290519081900360640190fd5b50601355565b600a5481565b6000610d3761176e612ab7565b84610e5b856040518060600160405280602581526020016135486025913960026000611798612ab7565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff612d1016565b6000610d376117dc612ab7565b8484612ba7565b600c5461010090046001600160a01b03163314611835576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60125481565b600e54600854604080516370a0823160e01b81526001600160a01b03928316600482015290516000936114189316916370a08231916024808301926020929190829003018186803b1580156118b757600080fd5b505afa1580156118cb573d6000803e3d6000fd5b505050506040513d60208110156118e157600080fd5b5051600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561192e57600080fd5b505afa158015611942573d6000803e3d6000fd5b505050506040513d602081101561195857600080fd5b50519063ffffffff612a5616565b600260005414156119ac576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b600260009081556119bb611863565b600854604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611a0c57600080fd5b505afa158015611a20573d6000803e3d6000fd5b505050506040513d6020811015611a3657600080fd5b5051600854909150611a59906001600160a01b031633308663ffffffff612f8c16565b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611aa457600080fd5b505afa158015611ab8573d6000803e3d6000fd5b505050506040513d6020811015611ace57600080fd5b50519050611ae2818363ffffffff612f4a16565b93506000611aee610dd7565b611af9575083611b18565b611b1584610f79611b08610dd7565b889063ffffffff612da716565b90505b611b223382612fec565b50506001600055505050565b600c5461010090046001600160a01b03163314611b80576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b600c5461010090046001600160a01b03163314611be5576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152601060205260409020805460ff19169055565b600d546001600160a01b03163314611c51576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611418601554611c92601454601354612a5690919063ffffffff16565b9063ffffffff612a5616565b6d4946c0e9f43f4dee607b0ef1fa1c81565b60155481565b60165481565b600d546001600160a01b031681565b60026000541415611d11576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b60026000908155338152600f602052604090205460ff1680611d425750600c5461010090046001600160a01b031633145b611d7e576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b60175460ff1615611e4a576013544211611dcb576040805162461bcd60e51b8152602060048201526009602482015268216561726e54696d6560b81b604482015290519081900360640190fd5b601754610100900460ff1615611e4a57601454601654611df290429063ffffffff612f4a16565b11611e31576040805162461bcd60e51b815260206004820152600a602482015269216561726e547769636560b01b604482015290519081900360640190fd5b60165415611e4557611e41611c73565b6013555b426016555b6000611e54611383565b600e54600854919250611e7a916001600160a01b0390811691168363ffffffff612a0416565b600e546008546040805163b02bf4b960e01b81526001600160a01b039283166004820152602481018590529051919092169163b02bf4b991604480830192600092919082900301818387803b158015611ed257600080fd5b505af1158015611b22573d6000803e3d6000fd5b42841015611f3b576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6001600160a01b0380881660008181526007602090815260408083208054600180820190925582517f00000000000000000000000000000000000000000000000000000000000000008186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015612076573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906120ac5750896001600160a01b0316816001600160a01b0316145b6120fd576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6121088a8a8a612abb565b50505050505050505050565b600c5461010090046001600160a01b03163314612166576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b848610156121d1576040805162461bcd60e51b815260206004820152600f60248201526e0857d85c1c1c9bdd99505b5bdd5b9d608a1b604482015290519081900360640190fd5b6008546040805163d505accf60e01b8152336004820152306024820152604481018990526064810187905260ff8616608482015260a4810185905260c4810184905290516001600160a01b039092169163d505accf9160e48082019260009290919082900301818387803b15801561224857600080fd5b505af115801561225c573d6000803e3d6000fd5b5050505061226985611966565b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600854604080516370a0823160e01b81523360048201529051611546926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156122e857600080fd5b505afa1580156122fc573d6000803e3d6000fd5b505050506040513d602081101561231257600080fd5b5051611966565b3360009081526010602052604090205460ff1661237c5760026000541415612376576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b60026000555b60005a600c5490915060ff1615156001146123cd576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd85b915b98589b195960a21b604482015290519081900360640190fd5b60008311612416576040805162461bcd60e51b8152602060048201526011602482015270616d6f756e7420746f6f20736d616c6c2160781b604482015290519081900360640190fd5b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561246157600080fd5b505afa158015612475573d6000803e3d6000fd5b505050506040513d602081101561248b57600080fd5b505190508381116124d9576040805162461bcd60e51b815260206004820152601360248201527262616c616e6365206e6f7420656e6f7567682160681b604482015290519081900360640190fd5b60006124f6600b54610f79600a5488612da790919063ffffffff16565b90506000811161253d576040805162461bcd60e51b815260206004820152600d60248201526c199959481d1bdbc81cdb585b1b609a1b604482015290519081900360640190fd5b60085461255a906001600160a01b0316878763ffffffff612a0416565b60085460405163cd04f09560e01b81526001600160a01b03918216600482018181526024830189905260448301859052608060648401908152885160848501528851948b169463cd04f095948b9388938c939192909160a490910190602085019080838360005b838110156125d95781810151838201526020016125c1565b50505050905090810190601f1680156126065780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b5050600854604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561268d57600080fd5b505afa1580156126a1573d6000803e3d6000fd5b505050506040513d60208110156126b757600080fd5b505190506126cb838363ffffffff612a5616565b811461271e576040805162461bcd60e51b815260206004820152601960248201527f7061796261636b20616d6f756e7420696e636f72726563742100000000000000604482015290519081900360640190fd5b600854604080516001600160a01b039283168152918916602083015281810188905260608201849052517f0d7d75e01ab95780d3cd1c8ec0dd6c2ce19e3a20427eec8bf53283b6fb8e95f09181900360800190a1506000915050601036025a83615208010301905060006d4946c0e9f43f4dee607b0ef1fa1c6001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156127ec57600080fd5b505afa158015612800573d6000803e3d6000fd5b505050506040513d602081101561281657600080fd5b505111156128a6576040805163079d229f60e01b815233600482015261a3db61374a840104602482015290516d4946c0e9f43f4dee607b0ef1fa1c9163079d229f9160448083019260209291908290030181600087803b15801561287957600080fd5b505af115801561288d573d6000803e3d6000fd5b505050506040513d60208110156128a357600080fd5b50505b50503360009081526010602052604090205460ff166128c55760016000555b505050565b60006114186128d7610dd7565b610f79670de0b6b3a7640000610f6d611863565b600c5461010090046001600160a01b0316331461293d576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601555565b601754610100900460ff1681565b60008061295e610f61610dd7565b600854604080516370a0823160e01b815230600482015290519293506001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156129ac57600080fd5b505afa1580156129c0573d6000803e3d6000fd5b505050506040513d60208110156129d657600080fd5b5051101592915050565b600e546001600160a01b031681565b60095481565b6008546001600160a01b031681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526128c59084906130ea565b600082820183811015612ab0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316612b005760405162461bcd60e51b81526004018080602001828103825260248152602001806134fa6024913960400191505060405180910390fd5b6001600160a01b038216612b455760405162461bcd60e51b81526004018080602001828103825260228152602001806134236022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612bec5760405162461bcd60e51b81526004018080602001828103825260258152602001806134d56025913960400191505060405180910390fd5b6001600160a01b038216612c315760405162461bcd60e51b81526004018080602001828103825260238152602001806133be6023913960400191505060405180910390fd5b612c3c8383836128c5565b612c7f81604051806060016040528060268152602001613445602691396001600160a01b038616600090815260016020526040902054919063ffffffff612d1016565b6001600160a01b038085166000908152600160205260408082209390935590841681522054612cb4908263ffffffff612a5616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612d9f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d64578181015183820152602001612d4c565b50505050905090810190601f168015612d915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082612db657506000610d3b565b82820282848281612dc357fe5b0414612ab05760405162461bcd60e51b815260040180806020018281038252602181526020018061346b6021913960400191505060405180910390fd5b6000612ab083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061319b565b6001600160a01b038216612e875760405162461bcd60e51b81526004018080602001828103825260218152602001806134b46021913960400191505060405180910390fd5b612e93826000836128c5565b612ed681604051806060016040528060228152602001613401602291396001600160a01b038516600090815260016020526040902054919063ffffffff612d1016565b6001600160a01b038316600090815260016020526040902055600354612f02908263ffffffff612f4a16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000612ab083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d10565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612fe69085906130ea565b50505050565b6001600160a01b038216613047576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b613053600083836128c5565b600354613066908263ffffffff612a5616565b6003556001600160a01b038216600090815260016020526040902054613092908263ffffffff612a5616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b606061313f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132009092919063ffffffff16565b8051909150156128c55780806020019051602081101561315e57600080fd5b50516128c55760405162461bcd60e51b815260040180806020018281038252602a81526020018061351e602a913960400191505060405180910390fd5b600081836131ea5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d64578181015183820152602001612d4c565b5060008385816131f657fe5b0495945050505050565b606061320f8484600085613217565b949350505050565b606061322285613384565b613273576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106132b25780518252601f199092019160209182019101613293565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613314576040519150601f19603f3d011682016040523d82523d6000602084013e613319565b606091505b5091509150811561332d57915061320f9050565b80511561333d5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612d64578181015183820152602001612d4c565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061320f57505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206deb19d22d05ed3da3b7a28d321d908ed2e13291ae5e4ca8a8ca812a668e301b64736f6c634300060700335065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000043229759e12efbe3e2a0fb0510b15e516d0464420000000000000000000000005dae9b27313670663b34ac8bffd18825bb9df7360000000000000000000000004bf5059065541a2b176500928e91fbfd0b121d07
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103d05760003560e01c806392eefe9b116101ff578063cd98f7f01161011a578063e0232b42116100ad578063f1941abe1161007c578063f1941abe14610ae0578063f77c479114610afd578063f889794514610b05578063fc0c546a14610b0d576103d0565b8063e0232b42146109f8578063ec1ebd7a14610ab3578063edcb208b14610abb578063f15bd9d514610ad8576103d0565b8063d9207fd9116100e9578063d9207fd91461095e578063db55118714610984578063dd62ed3e146109c2578063de5f6268146109f0576103d0565b8063cd98f7f0146108f5578063d33219b4146108fd578063d389800f14610905578063d505accf1461090d576103d0565b8063b69ef8a811610192578063bdacb30311610161578063bdacb303146108b7578063c5e68f5b146108dd578063c92aecc4146108e5578063cb028a83146108ed576103d0565b8063b69ef8a81461084d578063b6b55f2514610855578063bb10cbb514610872578063bc0ee69014610891576103d0565b8063a457c2d7116101ce578063a457c2d7146107c7578063a9059cbb146107f3578063ab033ea91461081f578063b32f2ea314610845576103d0565b806392eefe9b1461077457806395d89b411461079a5780639bc1d87c146107a25780639bcb5572146107bf576103d0565b80633644e515116102ef57806362c7fa761161028257806370a082311161025157806370a08231146107185780637ecebe001461073e57806384f3131314610764578063853828b61461076c576103d0565b806362c7fa76146106cc578063658f99b6146106d45780636aa4439f146106f15780636ac5db1914610710576103d0565b806345dc3dd8116102be57806345dc3dd81461067b57806348a0d7541461069857806358e6d53c146106a05780635aa6e675146106a8576103d0565b80633644e515146105fb57806339509351146106035780633bbd64bc1461062f5780634032b72b14610655576103d0565b8063287a0f77116103675780633166b848116103365780633166b848146105a6578063316c71ed146105ae5780633376f53a146105d4578063337e5024146105dc576103d0565b8063287a0f771461055b5780632e1a7d4d1461056357806330adf81f14610580578063313ce56714610588576103d0565b806314ae9f2e116103a357806314ae9f2e146104dd57806317d7de7c1461050357806318160ddd1461050b57806323b872dd14610525576103d0565b8063018ee9b7146103d557806302950d311461040357806306fdde0314610420578063095ea7b31461049d575b600080fd5b610401600480360360408110156103eb57600080fd5b506001600160a01b038135169060200135610b15565b005b6104016004803603602081101561041957600080fd5b5035610c21565b610428610c8d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561046257818101518382015260200161044a565b50505050905090810190601f16801561048f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104c9600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610d23565b604080519115158252519081900360200190f35b610401600480360360208110156104f357600080fd5b50356001600160a01b0316610d41565b610428610db4565b610513610dd7565b60408051918252519081900360200190f35b6104c96004803603606081101561053b57600080fd5b506001600160a01b03813581169160208101359091169060400135610ddd565b610513610e6a565b6104016004803603602081101561057957600080fd5b5035610e70565b61051361116c565b610590611190565b6040805160ff9092168252519081900360200190f35b6104c9611199565b6104c9600480360360208110156105c457600080fd5b50356001600160a01b03166111a2565b6105136111b7565b610401600480360360208110156105f257600080fd5b503515156111bd565b610513611229565b6104c96004803603604081101561061957600080fd5b506001600160a01b03813516906020013561124d565b6104c96004803603602081101561064557600080fd5b50356001600160a01b03166112a1565b6104016004803603602081101561066b57600080fd5b50356001600160a01b03166112b6565b6104016004803603602081101561069157600080fd5b503561132c565b610513611383565b61051361141d565b6106b0611423565b604080516001600160a01b039092168252519081900360200190f35b610513611437565b610401600480360360208110156106ea57600080fd5b503561143d565b6104016004803603602081101561070757600080fd5b50351515611494565b6105136114f9565b6105136004803603602081101561072e57600080fd5b50356001600160a01b03166114ff565b6105136004803603602081101561075457600080fd5b50356001600160a01b031661151a565b6104c961152c565b610401611535565b6104016004803603602081101561078a57600080fd5b50356001600160a01b0316611548565b6104286115b5565b610401600480360360208110156107b857600080fd5b5035611616565b61051361175b565b6104c9600480360360408110156107dd57600080fd5b506001600160a01b038135169060200135611761565b6104c96004803603604081101561080957600080fd5b506001600160a01b0381351690602001356117cf565b6104016004803603602081101561083557600080fd5b50356001600160a01b03166117e3565b61051361185d565b610513611863565b6104016004803603602081101561086b57600080fd5b5035611966565b6104016004803603602081101561088857600080fd5b50351515611b2e565b610401600480360360208110156108a757600080fd5b50356001600160a01b0316611b93565b610401600480360360208110156108cd57600080fd5b50356001600160a01b0316611c06565b610513611c73565b6106b0611c9e565b610513611cb0565b610513611cb6565b6106b0611cbc565b610401611ccb565b610401600480360360e081101561092357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611ee6565b6104016004803603602081101561097457600080fd5b50356001600160a01b0316612114565b610401600480360360c081101561099a57600080fd5b5080359060208101359060408101359060ff6060820135169060808101359060a0013561218a565b610513600480360360408110156109d857600080fd5b506001600160a01b0381358116916020013516612271565b61040161229c565b61040160048036036060811015610a0e57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135640100000000811115610a3e57600080fd5b820183602082011115610a5057600080fd5b80359060200191846001830284011164010000000083111715610a7257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612319945050505050565b6105136128ca565b61040160048036036020811015610ad157600080fd5b50356128eb565b6104c9612942565b6104c960048036036020811015610af657600080fd5b5035612950565b6106b06129e0565b6105136129ef565b6106b06129f5565b60026000541415610b5b576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b6002600055600e546001600160a01b03163314610bad576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6008546001600160a01b0383811691161415610bf8576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b600e54610c18906001600160a01b0384811691168363ffffffff612a0416565b50506001600055565b600c5461010090046001600160a01b03163314610c73576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601254610c8790829063ffffffff612a5616565b60145550565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b5050505050905090565b6000610d37610d30612ab7565b8484612abb565b5060015b92915050565b600c5461010090046001600160a01b03163314610d93576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600f60205260409020805460ff19169055565b60408051808201909152600981526836b6ab30bab63a2b1960b91b602082015290565b60035490565b6000610dea848484612ba7565b610e6084610df6612ab7565b610e5b8560405180606001604052806028815260200161348c602891396001600160a01b038a16600090815260026020526040812090610e34612ab7565b6001600160a01b03168152602081019190915260400160002054919063ffffffff612d1016565b612abb565b5060019392505050565b600b5481565b60026000541415610eb6576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b6002600055601754819060ff1615610f5457610ed181612950565b610f54576000610eee601454601354612a5690919063ffffffff16565b90508042118015610f115750601554610f0e90829063ffffffff612a5616565b42105b610f52576040805162461bcd60e51b815260206004820152600d60248201526c21776974686472617754696d6560981b604482015290519081900360640190fd5b505b6000610f85610f61610dd7565b610f7985610f6d611863565b9063ffffffff612da716565b9063ffffffff612e0016565b9050610f913384612e42565b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fdc57600080fd5b505afa158015610ff0573d6000803e3d6000fd5b505050506040513d602081101561100657600080fd5b5051905081811015611144576000611024838363ffffffff612f4a16565b600e546008546040805163f3fef3a360e01b81526001600160a01b03928316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b15801561107e57600080fd5b505af1158015611092573d6000803e3d6000fd5b5050600854604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156110e357600080fd5b505afa1580156110f7573d6000803e3d6000fd5b505050506040513d602081101561110d57600080fd5b505190506000611123828563ffffffff612f4a16565b9050828110156111405761113d848263ffffffff612a5616565b94505b5050505b600854611161906001600160a01b0316338463ffffffff612a0416565b505060016000555050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60065460ff1690565b60175460ff1681565b60106020526000908152604090205460ff1681565b60145481565b600c5461010090046001600160a01b0316331461120f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601780549115156101000261ff0019909216919091179055565b7f9386396d56d9ba558f28571930a44b835be347bd591a62203263ebc0e85c0d1481565b6000610d3761125a612ab7565b84610e5b856002600061126b612ab7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a5616565b600f6020526000908152604090205460ff1681565b600c5461010090046001600160a01b03163314611308576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b600c5461010090046001600160a01b0316331461137e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600955565b600954600854604080516370a0823160e01b815230600482015290516000936114189361271093610f79936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156113e057600080fd5b505afa1580156113f4573d6000803e3d6000fd5b505050506040513d602081101561140a57600080fd5b50519063ffffffff612da716565b905090565b60115481565b600c5461010090046001600160a01b031681565b60135481565b600c5461010090046001600160a01b0316331461148f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a55565b600c5461010090046001600160a01b031633146114e6576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6017805460ff1916911515919091179055565b61271081565b6001600160a01b031660009081526001602052604090205490565b60076020526000908152604090205481565b600c5460ff1681565b611546611541336114ff565b610e70565b565b600d546001600160a01b03163314611593576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d195780601f10610cee57610100808354040283529160200191610d19565b600c5461010090046001600160a01b03163314611668576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b60175460ff166116ae576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd8dad15b98589b195960a21b604482015290519081900360640190fd5b60006116b8611c73565b90508042101561170f576040805162461bcd60e51b815260206004820152601760248201527f4c617374206c6f636b206379636c65206e6f7420656e64000000000000000000604482015290519081900360640190fd5b428211611755576040805162461bcd60e51b815260206004820152600f60248201526e215f6c6f636b537461727454696d6560881b604482015290519081900360640190fd5b50601355565b600a5481565b6000610d3761176e612ab7565b84610e5b856040518060600160405280602581526020016135486025913960026000611798612ab7565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff612d1016565b6000610d376117dc612ab7565b8484612ba7565b600c5461010090046001600160a01b03163314611835576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60125481565b600e54600854604080516370a0823160e01b81526001600160a01b03928316600482015290516000936114189316916370a08231916024808301926020929190829003018186803b1580156118b757600080fd5b505afa1580156118cb573d6000803e3d6000fd5b505050506040513d60208110156118e157600080fd5b5051600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561192e57600080fd5b505afa158015611942573d6000803e3d6000fd5b505050506040513d602081101561195857600080fd5b50519063ffffffff612a5616565b600260005414156119ac576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b600260009081556119bb611863565b600854604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611a0c57600080fd5b505afa158015611a20573d6000803e3d6000fd5b505050506040513d6020811015611a3657600080fd5b5051600854909150611a59906001600160a01b031633308663ffffffff612f8c16565b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611aa457600080fd5b505afa158015611ab8573d6000803e3d6000fd5b505050506040513d6020811015611ace57600080fd5b50519050611ae2818363ffffffff612f4a16565b93506000611aee610dd7565b611af9575083611b18565b611b1584610f79611b08610dd7565b889063ffffffff612da716565b90505b611b223382612fec565b50506001600055505050565b600c5461010090046001600160a01b03163314611b80576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b600c5461010090046001600160a01b03163314611be5576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152601060205260409020805460ff19169055565b600d546001600160a01b03163314611c51576040805162461bcd60e51b81526020600482015260096024820152682174696d656c6f636b60b81b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611418601554611c92601454601354612a5690919063ffffffff16565b9063ffffffff612a5616565b6d4946c0e9f43f4dee607b0ef1fa1c81565b60155481565b60165481565b600d546001600160a01b031681565b60026000541415611d11576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b60026000908155338152600f602052604090205460ff1680611d425750600c5461010090046001600160a01b031633145b611d7e576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b60175460ff1615611e4a576013544211611dcb576040805162461bcd60e51b8152602060048201526009602482015268216561726e54696d6560b81b604482015290519081900360640190fd5b601754610100900460ff1615611e4a57601454601654611df290429063ffffffff612f4a16565b11611e31576040805162461bcd60e51b815260206004820152600a602482015269216561726e547769636560b01b604482015290519081900360640190fd5b60165415611e4557611e41611c73565b6013555b426016555b6000611e54611383565b600e54600854919250611e7a916001600160a01b0390811691168363ffffffff612a0416565b600e546008546040805163b02bf4b960e01b81526001600160a01b039283166004820152602481018590529051919092169163b02bf4b991604480830192600092919082900301818387803b158015611ed257600080fd5b505af1158015611b22573d6000803e3d6000fd5b42841015611f3b576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6001600160a01b0380881660008181526007602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f9386396d56d9ba558f28571930a44b835be347bd591a62203263ebc0e85c0d1461010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015612076573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906120ac5750896001600160a01b0316816001600160a01b0316145b6120fd576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6121088a8a8a612abb565b50505050505050505050565b600c5461010090046001600160a01b03163314612166576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b848610156121d1576040805162461bcd60e51b815260206004820152600f60248201526e0857d85c1c1c9bdd99505b5bdd5b9d608a1b604482015290519081900360640190fd5b6008546040805163d505accf60e01b8152336004820152306024820152604481018990526064810187905260ff8616608482015260a4810185905260c4810184905290516001600160a01b039092169163d505accf9160e48082019260009290919082900301818387803b15801561224857600080fd5b505af115801561225c573d6000803e3d6000fd5b5050505061226985611966565b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600854604080516370a0823160e01b81523360048201529051611546926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156122e857600080fd5b505afa1580156122fc573d6000803e3d6000fd5b505050506040513d602081101561231257600080fd5b5051611966565b3360009081526010602052604090205460ff1661237c5760026000541415612376576040805162461bcd60e51b815260206004820152601f60248201526000805160206133e1833981519152604482015290519081900360640190fd5b60026000555b60005a600c5490915060ff1615156001146123cd576040805162461bcd60e51b815260206004820152600c60248201526b085b1bd85b915b98589b195960a21b604482015290519081900360640190fd5b60008311612416576040805162461bcd60e51b8152602060048201526011602482015270616d6f756e7420746f6f20736d616c6c2160781b604482015290519081900360640190fd5b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561246157600080fd5b505afa158015612475573d6000803e3d6000fd5b505050506040513d602081101561248b57600080fd5b505190508381116124d9576040805162461bcd60e51b815260206004820152601360248201527262616c616e6365206e6f7420656e6f7567682160681b604482015290519081900360640190fd5b60006124f6600b54610f79600a5488612da790919063ffffffff16565b90506000811161253d576040805162461bcd60e51b815260206004820152600d60248201526c199959481d1bdbc81cdb585b1b609a1b604482015290519081900360640190fd5b60085461255a906001600160a01b0316878763ffffffff612a0416565b60085460405163cd04f09560e01b81526001600160a01b03918216600482018181526024830189905260448301859052608060648401908152885160848501528851948b169463cd04f095948b9388938c939192909160a490910190602085019080838360005b838110156125d95781810151838201526020016125c1565b50505050905090810190601f1680156126065780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b5050600854604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561268d57600080fd5b505afa1580156126a1573d6000803e3d6000fd5b505050506040513d60208110156126b757600080fd5b505190506126cb838363ffffffff612a5616565b811461271e576040805162461bcd60e51b815260206004820152601960248201527f7061796261636b20616d6f756e7420696e636f72726563742100000000000000604482015290519081900360640190fd5b600854604080516001600160a01b039283168152918916602083015281810188905260608201849052517f0d7d75e01ab95780d3cd1c8ec0dd6c2ce19e3a20427eec8bf53283b6fb8e95f09181900360800190a1506000915050601036025a83615208010301905060006d4946c0e9f43f4dee607b0ef1fa1c6001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156127ec57600080fd5b505afa158015612800573d6000803e3d6000fd5b505050506040513d602081101561281657600080fd5b505111156128a6576040805163079d229f60e01b815233600482015261a3db61374a840104602482015290516d4946c0e9f43f4dee607b0ef1fa1c9163079d229f9160448083019260209291908290030181600087803b15801561287957600080fd5b505af115801561288d573d6000803e3d6000fd5b505050506040513d60208110156128a357600080fd5b50505b50503360009081526010602052604090205460ff166128c55760016000555b505050565b60006114186128d7610dd7565b610f79670de0b6b3a7640000610f6d611863565b600c5461010090046001600160a01b0316331461293d576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b601555565b601754610100900460ff1681565b60008061295e610f61610dd7565b600854604080516370a0823160e01b815230600482015290519293506001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156129ac57600080fd5b505afa1580156129c0573d6000803e3d6000fd5b505050506040513d60208110156129d657600080fd5b5051101592915050565b600e546001600160a01b031681565b60095481565b6008546001600160a01b031681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526128c59084906130ea565b600082820183811015612ab0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316612b005760405162461bcd60e51b81526004018080602001828103825260248152602001806134fa6024913960400191505060405180910390fd5b6001600160a01b038216612b455760405162461bcd60e51b81526004018080602001828103825260228152602001806134236022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612bec5760405162461bcd60e51b81526004018080602001828103825260258152602001806134d56025913960400191505060405180910390fd5b6001600160a01b038216612c315760405162461bcd60e51b81526004018080602001828103825260238152602001806133be6023913960400191505060405180910390fd5b612c3c8383836128c5565b612c7f81604051806060016040528060268152602001613445602691396001600160a01b038616600090815260016020526040902054919063ffffffff612d1016565b6001600160a01b038085166000908152600160205260408082209390935590841681522054612cb4908263ffffffff612a5616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612d9f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d64578181015183820152602001612d4c565b50505050905090810190601f168015612d915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082612db657506000610d3b565b82820282848281612dc357fe5b0414612ab05760405162461bcd60e51b815260040180806020018281038252602181526020018061346b6021913960400191505060405180910390fd5b6000612ab083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061319b565b6001600160a01b038216612e875760405162461bcd60e51b81526004018080602001828103825260218152602001806134b46021913960400191505060405180910390fd5b612e93826000836128c5565b612ed681604051806060016040528060228152602001613401602291396001600160a01b038516600090815260016020526040902054919063ffffffff612d1016565b6001600160a01b038316600090815260016020526040902055600354612f02908263ffffffff612f4a16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000612ab083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d10565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612fe69085906130ea565b50505050565b6001600160a01b038216613047576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b613053600083836128c5565b600354613066908263ffffffff612a5616565b6003556001600160a01b038216600090815260016020526040902054613092908263ffffffff612a5616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b606061313f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132009092919063ffffffff16565b8051909150156128c55780806020019051602081101561315e57600080fd5b50516128c55760405162461bcd60e51b815260040180806020018281038252602a81526020018061351e602a913960400191505060405180910390fd5b600081836131ea5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d64578181015183820152602001612d4c565b5060008385816131f657fe5b0495945050505050565b606061320f8484600085613217565b949350505050565b606061322285613384565b613273576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106132b25780518252601f199092019160209182019101613293565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613314576040519150601f19603f3d011682016040523d82523d6000602084013e613319565b606091505b5091509150811561332d57915061320f9050565b80511561333d5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612d64578181015183820152602001612d4c565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061320f57505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206deb19d22d05ed3da3b7a28d321d908ed2e13291ae5e4ca8a8ca812a668e301b64736f6c63430006070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca00000000000000000000000043229759e12efbe3e2a0fb0510b15e516d0464420000000000000000000000005dae9b27313670663b34ac8bffd18825bb9df7360000000000000000000000004bf5059065541a2b176500928e91fbfd0b121d07
-----Decoded View---------------
Arg [0] : _token (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [1] : _governance (address): 0x43229759E12eFbe3e2A0fB0510B15e516d046442
Arg [2] : _timelock (address): 0x5DAe9B27313670663B34Ac8BfFD18825bB9Df736
Arg [3] : _controller (address): 0x4bF5059065541A2B176500928e91FBfD0B121d07
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [1] : 00000000000000000000000043229759e12efbe3e2a0fb0510b15e516d046442
Arg [2] : 0000000000000000000000005dae9b27313670663b34ac8bffd18825bb9df736
Arg [3] : 0000000000000000000000004bf5059065541a2b176500928e91fbfd0b121d07
Deployed Bytecode Sourcemap
40737:10786:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40737:10786:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;49460:253:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;49460:253:0;;;;;;;;:::i;:::-;;46497:131;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46497:131:0;;:::i;17994:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17994:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20100:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20100:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46106:103;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46106:103:0;-1:-1:-1;;;;;46106:103:0;;:::i;45000:90::-;;;:::i;19069:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;20743:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20743:321:0;;;;;;;;;;;;;;;;;:::i;41125:33::-;;;:::i;49789:658::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49789:658:0;;:::i;33010:138::-;;;:::i;18921:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41643:31;;;:::i;41346:51::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41346:51:0;-1:-1:-1;;;;;41346:51:0;;:::i;41538:25::-;;;:::i;46879:112::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46879:112:0;;;;:::i;33155:41::-;;;:::i;21473:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21473:218:0;;;;;;;;:::i;41300:39::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41300:39:0;-1:-1:-1;;;;;41300:39:0;;:::i;45999:99::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45999:99:0;-1:-1:-1;;;;;45999:99:0;;:::i;45266:82::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45266:82:0;;:::i;47914:125::-;;;:::i;41406:34::-;;;:::i;41204:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;41204:25:0;;;;;;;;;;;;;;41503:28;;;:::i;45778:96::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45778:96:0;;:::i;46769:102::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46769:102:0;;;;:::i;41048:35::-;;;:::i;19232:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19232:119:0;-1:-1:-1;;;;;19232:119:0;;:::i;32950:51::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32950:51:0;-1:-1:-1;;;;;32950:51:0;;:::i;41165:30::-;;;:::i;49284:82::-;;;:::i;45621:149::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45621:149:0;-1:-1:-1;;;;;45621:149:0;;:::i;18196:87::-;;;:::i;46999:381::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46999:381:0;;:::i;41092:26::-;;;:::i;22194:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22194:269:0;;;;;;;;:::i;19564:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19564:175:0;;;;;;;;:::i;45356:108::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45356:108:0;-1:-1:-1;;;;;45356:108:0;;:::i;41447:47::-;;;:::i;45098:160::-;;;:::i;48685:591::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48685:591:0;;:::i;45882:109::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45882:109:0;;;;:::i;46355:134::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46355:134:0;-1:-1:-1;;;;;46355:134:0;;:::i;45472:141::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45472:141:0;-1:-1:-1;;;;;45472:141:0;;:::i;47388:135::-;;;:::i;40922:85::-;;;:::i;41570:29::-;;;:::i;41606:30::-;;;:::i;41236:23::-;;;:::i;48047:209::-;;;:::i;33956:905::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;33956:905:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;46217:130::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46217:130:0;-1:-1:-1;;;;;46217:130:0;;:::i;48358:319::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;48358:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19802:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19802:151:0;;;;;;;;;;:::i;48264:86::-;;;:::i;50577:941::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;50577:941:0;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;50577:941:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;50577:941:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;50577:941:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;50577:941:0;;-1:-1:-1;50577:941:0;;-1:-1:-1;;;;;50577:941:0:i;50455:114::-;;;:::i;46636:125::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46636:125:0;;:::i;41681:35::-;;;:::i;47531:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47531:230:0;;:::i;41266:25::-;;;:::i;41016:::-;;;:::i;40894:19::-;;;:::i;49460:253::-;36529:1;37127:7;;:19;;37119:63;;;;;-1:-1:-1;;;37119:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37119:63:0;;;;;;;;;;;;;;;36529:1;37260:7;:18;49566:10:::1;::::0;-1:-1:-1;;;;;49566:10:0::1;49552;:24;49544:48;;;::::0;;-1:-1:-1;;;49544:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49544:48:0;;;;;;;;;;;;;::::1;;49630:5;::::0;-1:-1:-1;;;;;49611:25:0;;::::1;49630:5:::0;::::1;49611:25;;49603:43;;;::::0;;-1:-1:-1;;;49603:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49603:43:0;;;;;;;;;;;;;::::1;;49686:10;::::0;49657:48:::1;::::0;-1:-1:-1;;;;;49657:28:0;;::::1;::::0;49686:10:::1;49698:6:::0;49657:48:::1;:28;:48;:::i;:::-;-1:-1:-1::0;;36493:1:0;37439:7;:22;49460:253::o;46497:131::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;46603:16:::1;::::0;46587:33:::1;::::0;:11;;:33:::1;:15;:33;:::i;:::-;46574:10;:46:::0;-1:-1:-1;46497:131:0:o;17994:83::-;18064:5;18057:12;;;;;;;;-1:-1:-1;;18057:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18031:13;;18057:12;;18064:5;;18057:12;;18064:5;18057:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17994:83;:::o;20100:169::-;20183:4;20200:39;20209:12;:10;:12::i;:::-;20223:7;20232:6;20200:8;:39::i;:::-;-1:-1:-1;20257:4:0;20100:169;;;;;:::o;46106:103::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46177:16:0::1;46196:5;46177:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;46177:24:0::1;::::0;;46106:103::o;45000:90::-;45064:18;;;;;;;;;;;;-1:-1:-1;;;45064:18:0;;;;45000:90;:::o;19069:100::-;19149:12;;19069:100;:::o;20743:321::-;20849:4;20866:36;20876:6;20884:9;20895:6;20866:9;:36::i;:::-;20913:121;20922:6;20930:12;:10;:12::i;:::-;20944:89;20982:6;20944:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20944:19:0;;;;;;:11;:19;;;;;;20964:12;:10;:12::i;:::-;-1:-1:-1;;;;;20944:33:0;;;;;;;;;;;;-1:-1:-1;20944:33:0;;;:89;;:37;:89;:::i;:::-;20913:8;:121::i;:::-;-1:-1:-1;21052:4:0;20743:321;;;;;:::o;41125:33::-;;;;:::o;49789:658::-;36529:1;37127:7;;:19;;37119:63;;;;;-1:-1:-1;;;37119:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37119:63:0;;;;;;;;;;;;;;;36529:1;37260:7;:18;43018:11:::1;::::0;49856:7;;43018:11:::1;;43015:495;;;43138:32;43162:7;43138:23;:32::i;:::-;43134:365;;43190:30;43223:29;43241:10;;43223:13;;:17;;:29;;;;:::i;:::-;43190:62;;43319:22;43301:15;:40;:125;;;;-1:-1:-1::0;43411:14:0::1;::::0;43384:42:::1;::::0;:22;;:42:::1;:26;:42;:::i;:::-;43366:15;:60;43301:125;43271:212;;;::::0;;-1:-1:-1;;;43271:212:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43271:212:0;;;;;;;;;;;;;::::1;;43134:365;;49876:9:::2;49888:43;49917:13;:11;:13::i;:::-;49889:22;49903:7;49889:9;:7;:9::i;:::-;:13:::0;:22:::2;:13;:22;:::i;:::-;49888:28:::0;:43:::2;:28;:43;:::i;:::-;49876:55;;49942:26;49948:10;49960:7;49942:5;:26::i;:::-;50019:5;::::0;:30:::2;::::0;;-1:-1:-1;;;50019:30:0;;50043:4:::2;50019:30;::::0;::::2;::::0;;;50007:9:::2;::::0;-1:-1:-1;;;;;50019:5:0::2;::::0;:15:::2;::::0;:30;;;;;::::2;::::0;;;;;;;;:5;:30;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;50019:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;50019:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;50019:30:0;;-1:-1:-1;50064:5:0;;::::2;50060:334;;;50086:17;50106:8;:1:::0;50112;50106:8:::2;:5;:8;:::i;:::-;50141:10;::::0;50170:5:::2;::::0;50129:59:::2;::::0;;-1:-1:-1;;;50129:59:0;;-1:-1:-1;;;;;50170:5:0;;::::2;50129:59;::::0;::::2;::::0;;;;;;;;;50086:28;;-1:-1:-1;50141:10:0;::::2;::::0;50129:32:::2;::::0;:59;;;;;50141:10:::2;::::0;50129:59;;;;;;;;50141:10;;50129:59;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;50129:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;50220:5:0::2;::::0;:30:::2;::::0;;-1:-1:-1;;;50220:30:0;;50244:4:::2;50220:30;::::0;::::2;::::0;;;50203:14:::2;::::0;-1:-1:-1;;;;;;50220:5:0;;::::2;::::0;-1:-1:-1;50220:15:0::2;::::0;:30;;;;;::::2;::::0;;;;;;;;:5;:30;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;50220:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;50220:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;50220:30:0;;-1:-1:-1;50265:13:0::2;50281;50220:30:::0;50292:1;50281:13:::2;:10;:13;:::i;:::-;50265:29;;50321:9;50313:5;:17;50309:74;;;50355:12;:1:::0;50361:5;50355:12:::2;:5;:12;:::i;:::-;50351:16;;50309:74;50060:334;;;;50406:5;::::0;:33:::2;::::0;-1:-1:-1;;;;;50406:5:0::2;50425:10;50437:1:::0;50406:33:::2;:18;:33;:::i;:::-;-1:-1:-1::0;;36493:1:0;37439:7;:22;-1:-1:-1;;49789:658:0:o;33010:138::-;;;:::o;18921:83::-;18987:9;;;;18921:83;:::o;41643:31::-;;;;;;:::o;41346:51::-;;;;;;;;;;;;;;;:::o;41538:25::-;;;;:::o;46879:112::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;46956:15:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;46956:27:0;;::::1;::::0;;;::::1;::::0;;46879:112::o;33155:41::-;;;:::o;21473:218::-;21561:4;21578:83;21587:12;:10;:12::i;:::-;21601:7;21610:50;21649:10;21610:11;:25;21622:12;:10;:12::i;:::-;-1:-1:-1;;;;;21610:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21610:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;41300:39::-;;;;;;;;;;;;;;;:::o;45999:99::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46067:16:0::1;;::::0;;;:7:::1;:16;::::0;;;;:23;;-1:-1:-1;;46067:23:0::1;46086:4;46067:23;::::0;;45999:99::o;45266:82::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;45330:3:::1;:10:::0;45266:82::o;47914:125::-;48018:3;;47983:5;;:30;;;-1:-1:-1;;;47983:30:0;;48007:4;47983:30;;;;;;47956:7;;47983:48;;41078:5;;47983:39;;-1:-1:-1;;;;;47983:5:0;;;;:15;;:30;;;;;;;;;;;;;;;:5;:30;;;2:2:-1;;;;27:1;24;17:12;2:2;47983:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47983:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47983:30:0;;:39;:34;:39;:::i;:48::-;47976:55;;47914:125;:::o;41406:34::-;;;;:::o;41204:25::-;;;;;;-1:-1:-1;;;;;41204:25:0;;:::o;41503:28::-;;;;:::o;45778:96::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;45848:7:::1;:18:::0;45778:96::o;46769:102::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;46841:11:::1;:22:::0;;-1:-1:-1;;46841:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46769:102::o;41048:35::-;41078:5;41048:35;:::o;19232:119::-;-1:-1:-1;;;;;19325:18:0;19298:7;19325:18;;;:9;:18;;;;;;;19232:119::o;32950:51::-;;;;;;;;;;;;;:::o;41165:30::-;;;;;;:::o;49284:82::-;49327:31;49336:21;49346:10;49336:9;:21::i;:::-;49327:8;:31::i;:::-;49284:82::o;45621:149::-;45705:8;;-1:-1:-1;;;;;45705:8:0;45691:10;:22;45683:44;;;;;-1:-1:-1;;;45683:44:0;;;;;;;;;;;;-1:-1:-1;;;45683:44:0;;;;;;;;;;;;;;;45738:10;:24;;-1:-1:-1;;;;;;45738:24:0;-1:-1:-1;;;;;45738:24:0;;;;;;;;;;45621:149::o;18196:87::-;18268:7;18261:14;;;;;;;;-1:-1:-1;;18261:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18235:13;;18261:14;;18268:7;;18261:14;;18268:7;18261:14;;;;;;;;;;;;;;;;;;;;;;;;46999:381;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;47091:11:::1;::::0;::::1;;47083:36;;;::::0;;-1:-1:-1;;;47083:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47083:36:0;;;;;;;;;;;;;::::1;;47132:23;47158:21;:19;:21::i;:::-;47132:47;;47217:15;47198;:34;;47190:70;;;::::0;;-1:-1:-1;;;47190:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47296:15;47279:14;:32;47271:60;;;::::0;;-1:-1:-1;;;47271:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47271:60:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;47342:13:0::1;:30:::0;46999:381::o;41092:26::-;;;;:::o;22194:269::-;22287:4;22304:129;22313:12;:10;:12::i;:::-;22327:7;22336:96;22375:15;22336:96;;;;;;;;;;;;;;;;;:11;:25;22348:12;:10;:12::i;:::-;-1:-1:-1;;;;;22336:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22336:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19564:175::-;19650:4;19667:42;19677:12;:10;:12::i;:::-;19691:9;19702:6;19667:9;:42::i;45356:108::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;45432:10:::1;:24:::0;;-1:-1:-1;;;;;45432:24:0;;::::1;;;-1:-1:-1::0;;;;;;45432:24:0;;::::1;::::0;;;::::1;::::0;;45356:108::o;41447:47::-;;;;:::o;45098:160::-;45212:10;;45242:5;;45200:49;;;-1:-1:-1;;;45200:49:0;;-1:-1:-1;;;;;45242:5:0;;;45200:49;;;;;;45138:7;;45165:85;;45212:10;;45200:33;;:49;;;;;;;;;;;;;;45212:10;45200:49;;;2:2:-1;;;;27:1;24;17:12;2:2;45200:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45200:49:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45200:49:0;45165:5;;:30;;;-1:-1:-1;;;45165:30:0;;45189:4;45165:30;;;;;;-1:-1:-1;;;;;45165:5:0;;;;:15;;:30;;;;;45200:49;;45165:30;;;;;;;;:5;:30;;;2:2:-1;;;;27:1;24;17:12;2:2;45165:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45165:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45165:30:0;;:85;:34;:85;:::i;48685:591::-;36529:1;37127:7;;:19;;37119:63;;;;;-1:-1:-1;;;37119:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37119:63:0;;;;;;;;;;;;;;;36529:1;37260:7;:18;;;48766:9:::1;:7;:9::i;:::-;48804:5;::::0;:30:::1;::::0;;-1:-1:-1;;;48804:30:0;;48828:4:::1;48804:30;::::0;::::1;::::0;;;48750:25;;-1:-1:-1;48786:15:0::1;::::0;-1:-1:-1;;;;;48804:5:0;;::::1;::::0;:15:::1;::::0;:30;;;;;::::1;::::0;;;;;;;;;:5;:30;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;48804:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;48804:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;48804:30:0;48845:5:::1;::::0;48804:30;;-1:-1:-1;48845:58:0::1;::::0;-1:-1:-1;;;;;48845:5:0::1;48868:10;48888:4;48895:7:::0;48845:58:::1;:22;:58;:::i;:::-;48931:5;::::0;:30:::1;::::0;;-1:-1:-1;;;48931:30:0;;48955:4:::1;48931:30;::::0;::::1;::::0;;;48914:14:::1;::::0;-1:-1:-1;;;;;48931:5:0::1;::::0;:15:::1;::::0;:30;;;;;::::1;::::0;;;;;;;;:5;:30;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;48931:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;48931:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;48931:30:0;;-1:-1:-1;48982:19:0::1;48931:30:::0;48993:7;48982:19:::1;:10;:19;:::i;:::-;48972:29:::0;-1:-1:-1;49056:14:0::1;49089:13;:11;:13::i;:::-;49085:148;;-1:-1:-1::0;49133:7:0;49085:148:::1;;;49182:39;49215:5;49183:26;49195:13;:11;:13::i;:::-;49183:7:::0;;:26:::1;:11;:26;:::i;49182:39::-;49173:48;;49085:148;49243:25;49249:10;49261:6;49243:5;:25::i;:::-;-1:-1:-1::0;;36493:1:0;37439:7;:22;-1:-1:-1;;;48685:591:0:o;45882:109::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;45957:11:::1;:26:::0;;-1:-1:-1;;45957:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45882:109::o;46355:134::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46442:31:0::1;46476:5;46442:31:::0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;46442:39:0::1;::::0;;46355:134::o;45472:141::-;45552:8;;-1:-1:-1;;;;;45552:8:0;45538:10;:22;45530:44;;;;;-1:-1:-1;;;45530:44:0;;;;;;;;;;;;-1:-1:-1;;;45530:44:0;;;;;;;;;;;;;;;45585:8;:20;;-1:-1:-1;;;;;;45585:20:0;-1:-1:-1;;;;;45585:20:0;;;;;;;;;;45472:141::o;47388:135::-;47440:7;47466:49;47500:14;;47466:29;47484:10;;47466:13;;:17;;:29;;;;:::i;:::-;:33;:49;:33;:49;:::i;40922:85::-;40964:42;40922:85;:::o;41570:29::-;;;;:::o;41606:30::-;;;;:::o;41236:23::-;;;-1:-1:-1;;;;;41236:23:0;;:::o;48047:209::-;36529:1;37127:7;;:19;;37119:63;;;;;-1:-1:-1;;;37119:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;37119:63:0;;;;;;;;;;;;;;;36529:1;37260:7;:18;;;42181:10:::1;42173:19:::0;;:7:::1;:19;::::0;;;;;::::1;;::::0;:60:::1;;-1:-1:-1::0;42223:10:0::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;42223:10:0::1;42209;:24;42173:60;42151:118;;;::::0;;-1:-1:-1;;;42151:118:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42151:118:0;;;;;;;;;;;;;::::1;;42440:11:::2;::::0;::::2;;42437:502;;;42511:13;;42493:15;:31;42467:102;;;::::0;;-1:-1:-1;;;42467:102:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;42467:102:0;;;;;;;;;;;;;::::2;;42587:15;::::0;::::2;::::0;::::2;;;42584:344;;;42691:10;::::0;42672:15:::2;::::0;42652:36:::2;::::0;:15:::2;::::0;:36:::2;:19;:36;:::i;:::-;:49;42622:116;;;::::0;;-1:-1:-1;;;42622:116:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;42622:116:0;;;;;;;;;;;;;::::2;;42760:15;::::0;:20;42757:104:::2;;42820:21;:19;:21::i;:::-;42804:13;:37:::0;42757:104:::2;42897:15;42879;:33:::0;42584:344:::2;48114:12:::3;48129:11;:9;:11::i;:::-;48170:10;::::0;48151:5:::3;::::0;48114:26;;-1:-1:-1;48151:36:0::3;::::0;-1:-1:-1;;;;;48151:5:0;;::::3;::::0;48170:10:::3;48114:26:::0;48151:36:::3;:18;:36;:::i;:::-;48210:10;::::0;48235:5:::3;::::0;48198:50:::3;::::0;;-1:-1:-1;;;48198:50:0;;-1:-1:-1;;;;;48235:5:0;;::::3;48198:50;::::0;::::3;::::0;;;;;;;;;48210:10;;;::::3;::::0;48198:28:::3;::::0;:50;;;;;48210:10:::3;::::0;48198:50;;;;;;;48210:10;;48198:50;::::3;;2:2:-1::0;::::3;;;27:1;24::::0;17:12:::3;2:2;48198:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::3;77:16;74:1;67:27;33956:905:0::0;34124:15;34112:8;:27;;34104:69;;;;;-1:-1:-1;;;34104:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34369:13:0;;;34186:18;34369:13;;;:6;:13;;;;;;;;:15;;;;;;;;;34231:195;;34260:15;34231:195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;34231:195:0;;;;;34207:230;;;;;;-1:-1:-1;;;34489:124:0;;;;34553:16;34489:124;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;34489:124:0;;;;;;34465:159;;;;;;;;;34654:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34207:230;;34465:159;;34369:15;;34654:24;;;;;34369:13;;-1:-1:-1;;34654:24:0;;;;;;;;;;34369:15;34654:24;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;34654:24:0;;-1:-1:-1;;34654:24:0;;;-1:-1:-1;;;;;;;34711:20:0;;;;;;:39;;;34745:5;-1:-1:-1;;;;;34735:15:0;:6;-1:-1:-1;;;;;34735:15:0;;34711:39;34689:119;;;;;-1:-1:-1;;;34689:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34821:32;34830:5;34837:7;34846:6;34821:8;:32::i;:::-;33956:905;;;;;;;;;;:::o;46217:130::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46301:31:0::1;;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;46301:38:0::1;46335:4;46301:38;::::0;;46217:130::o;48358:319::-;48510:7;48492:14;:25;;48484:53;;;;;-1:-1:-1;;;48484:53:0;;;;;;;;;;;;-1:-1:-1;;;48484:53:0;;;;;;;;;;;;;;;48565:5;;48548:94;;;-1:-1:-1;;;48548:94:0;;48580:10;48548:94;;;;48600:4;48548:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48565:5:0;;;;48548:31;;:94;;;;;48565:5;;48548:94;;;;;;;;48565:5;;48548:94;;;2:2:-1;;;;27:1;24;17:12;2:2;48548:94:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48548:94:0;;;;48653:16;48661:7;48653;:16::i;:::-;48358:319;;;;;;:::o;19802:151::-;-1:-1:-1;;;;;19918:18:0;;;19891:7;19918:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19802:151::o;48264:86::-;48314:5;;:27;;;-1:-1:-1;;;48314:27:0;;48330:10;48314:27;;;;;;48306:36;;-1:-1:-1;;;;;48314:5:0;;:15;;:27;;;;;;;;;;;;;;:5;:27;;;2:2:-1;;;;27:1;24;17:12;2:2;48314:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48314:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48314:27:0;48306:7;:36::i;50577:941::-;43654:10;43634:31;;;;:19;:31;;;;;;;;43629:331;;36529:1;43778:7;;:19;;43770:63;;;;;-1:-1:-1;;;43770:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43770:63:0;;;;;;;;;;;;;;;36529:1;43930:7;:18;43629:331;41853:16:::1;41872:9;50715:11:::2;::::0;41853:28;;-1:-1:-1;50715:11:0::2;;:19;;:11:::0;:19:::2;50707:44;;;::::0;;-1:-1:-1;;;50707:44:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;50707:44:0;;;;;;;;;;;;;::::2;;50780:1;50770:7;:11;50762:41;;;::::0;;-1:-1:-1;;;50762:41:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;50762:41:0;;;;;;;;;;;;;::::2;;50838:5;::::0;:30:::2;::::0;;-1:-1:-1;;;50838:30:0;;50862:4:::2;50838:30;::::0;::::2;::::0;;;50814:21:::2;::::0;-1:-1:-1;;;;;50838:5:0::2;::::0;:15:::2;::::0;:30;;;;;::::2;::::0;;;;;;;;:5;:30;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;50838:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;50838:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;50838:30:0;;-1:-1:-1;50887:23:0;;::::2;50879:55;;;::::0;;-1:-1:-1;;;50879:55:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;50879:55:0;;;;;;;;;;;;;::::2;;50966:12;50981:36;51006:10;;50981:20;50993:7;;50981;:11;;:20;;;;:::i;:36::-;50966:51;;51045:1;51038:4;:8;51030:34;;;::::0;;-1:-1:-1;;;51030:34:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;51030:34:0;;;;;;;;;;;;;::::2;;51116:5;::::0;:38:::2;::::0;-1:-1:-1;;;;;51116:5:0::2;51135:9:::0;51146:7;51116:38:::2;:18;:38;:::i;:::-;51256:5;::::0;51199:86:::2;::::0;-1:-1:-1;;;51199:86:0;;-1:-1:-1;;;;;51256:5:0;;::::2;51199:86;::::0;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:48;;::::2;::::0;::::2;::::0;51264:7;;51273:4;;51279:5;;51199:86;;;;;;;;;::::2;::::0;::::2;::::0;;;;51256:5:::2;8:100:-1;33:3;30:1;27:10;8:100;;;90:11:::0;;::::2;84:18:::0;71:11;;::::2;64:39:::0;52:2:::2;45:10;8:100;;;12:14;51199:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;51199:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;51321:5:0::2;::::0;:30:::2;::::0;;-1:-1:-1;;;51321:30:0;;51345:4:::2;51321:30;::::0;::::2;::::0;;;51298:20:::2;::::0;-1:-1:-1;;;;;;51321:5:0;;::::2;::::0;-1:-1:-1;51321:15:0::2;::::0;:30;;;;;::::2;::::0;;;;;;;;:5;:30;::::2;;2:2:-1::0;::::2;;;27:1;24::::0;17:12:::2;2:2;51321:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;51321:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::2;4:2;-1:-1:::0;51321:30:0;;-1:-1:-1;51388:23:0::2;:13:::0;51406:4;51388:23:::2;:17;:23;:::i;:::-;51372:12;:39;51364:77;;;::::0;;-1:-1:-1;;;51364:77:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;51477:5;::::0;51459:51:::2;::::0;;-1:-1:-1;;;;;51477:5:0;;::::2;51459:51:::0;;;;::::2;;::::0;::::2;::::0;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;41904:16:0::1;::::0;-1:-1:-1;;41954:2:0::1;41959:8;41954:20;41942:9;41931:8;41923:5;:16;:28;:51;41904:70;;42018:1;40964:42;-1:-1:-1::0;;;;;41990:13:0::1;;42004:10;41990:25;;;;;;;;;;;;;-1:-1:-1::0;;;;;41990:25:0::1;-1:-1:-1::0;;;;;41990:25:0::1;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;41990:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;41990:25:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;41990:25:0;:29:::1;41987:117;;;42036:56;::::0;;-1:-1:-1;;;42036:56:0;;42053:10:::1;42036:56;::::0;::::1;::::0;42086:5:::1;42077;42066:16:::0;::::1;42065:26;42036:56:::0;;;;;;40964:42:::1;::::0;42036:16:::1;::::0;:56;;;;;::::1;::::0;;;;;;;;-1:-1:-1;40964:42:0;42036:56;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;42036:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42036:56:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;41987:117:0::1;-1:-1:-1::0;;44020:10:0;44000:31;;;;:19;:31;;;;;;;;43995:213;;36493:1;44173:7;:22;43995:213;50577:941;;;:::o;50455:114::-;50496:7;50523:38;50547:13;:11;:13::i;:::-;50523:19;50537:4;50523:9;:7;:9::i;46636:125::-;42355:10;;;;;-1:-1:-1;;;;;42355:10:0;42341;:24;42333:48;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;-1:-1:-1;;;42333:48:0;;;;;;;;;;;;;;;46721:14:::1;:32:::0;46636:125::o;41681:35::-;;;;;;;;;:::o;47531:230::-;47601:4;47617:23;47643:43;47672:13;:11;:13::i;47643:43::-;47723:5;;:30;;;-1:-1:-1;;;47723:30:0;;47747:4;47723:30;;;;;;47617:69;;-1:-1:-1;;;;;;47723:5:0;;;;:15;;:30;;;;;;;;;;;;;;;:5;:30;;;2:2:-1;;;;27:1;24;17:12;2:2;47723:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47723:30:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47723:30:0;-1:-1:-1;47704:49:0;;47531:230;-1:-1:-1;;47531:230:0:o;41266:25::-;;;-1:-1:-1;;;;;41266:25:0;;:::o;41016:::-;;;;:::o;40894:19::-;;;-1:-1:-1;;;;;40894:19:0;;:::o;27368:177::-;27478:58;;;-1:-1:-1;;;;;27478:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27478:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27451:86:0;;27471:5;;27451:19;:86::i;1447:181::-;1505:7;1537:5;;;1561:6;;;;1553:46;;;;;-1:-1:-1;;;1553:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1619:1;1447:181;-1:-1:-1;;;1447:181:0:o;6483:106::-;6571:10;6483:106;:::o;25339:346::-;-1:-1:-1;;;;;25441:19:0;;25433:68;;;;-1:-1:-1;;;25433:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25520:21:0;;25512:68;;;;-1:-1:-1;;;25512:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25593:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25645:32;;;;;;;;;;;;;;;;;25339:346;;;:::o;22953:539::-;-1:-1:-1;;;;;23059:20:0;;23051:70;;;;-1:-1:-1;;;23051:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23140:23:0;;23132:71;;;;-1:-1:-1;;;23132:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23216:47;23237:6;23245:9;23256:6;23216:20;:47::i;:::-;23296:71;23318:6;23296:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23296:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23276:17:0;;;;;;;:9;:17;;;;;;:91;;;;23401:20;;;;;;;:32;;23426:6;23401:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23378:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23449:35;;;;;;;23378:20;;23449:35;;;;;;;;;;;;;22953:539;;;:::o;2350:192::-;2436:7;2472:12;2464:6;;;;2456:29;;;;-1:-1:-1;;;2456:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2456:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2508:5:0;;;2350:192::o;2801:471::-;2859:7;3104:6;3100:47;;-1:-1:-1;3134:1:0;3127:8;;3100:47;3171:5;;;3175:1;3171;:5;:1;3195:5;;;;;:10;3187:56;;;;-1:-1:-1;;;3187:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3748:132;3806:7;3833:39;3837:1;3840;3833:39;;;;;;;;;;;;;;;;;:3;:39::i;24483:418::-;-1:-1:-1;;;;;24567:21:0;;24559:67;;;;-1:-1:-1;;;24559:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24639:49;24660:7;24677:1;24681:6;24639:20;:49::i;:::-;24722:68;24745:6;24722:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24722:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24701:18:0;;;;;;:9;:18;;;;;:89;24816:12;;:24;;24833:6;24816:24;:16;:24;:::i;:::-;24801:12;:39;24856:37;;;;;;;;24882:1;;-1:-1:-1;;;;;24856:37:0;;;;;;;;;;;;24483:418;;:::o;1911:136::-;1969:7;1996:43;2000:1;2003;1996:43;;;;;;;;;;;;;;;;;:3;:43::i;27553:205::-;27681:68;;;-1:-1:-1;;;;;27681:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27681:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27654:96:0;;27674:5;;27654:19;:96::i;:::-;27553:205;;;;:::o;23773:378::-;-1:-1:-1;;;;;23857:21:0;;23849:65;;;;;-1:-1:-1;;;23849:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23927:49;23956:1;23960:7;23969:6;23927:20;:49::i;:::-;24004:12;;:24;;24021:6;24004:24;:16;:24;:::i;:::-;23989:12;:39;-1:-1:-1;;;;;24060:18:0;;;;;;:9;:18;;;;;;:30;;24083:6;24060:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;24039:18:0;;;;;;:9;:18;;;;;;;;:51;;;;24106:37;;;;;;;24039:18;;;;24106:37;;;;;;;;;;23773:378;;:::o;29673:761::-;30097:23;30123:69;30151:4;30123:69;;;;;;;;;;;;;;;;;30131:5;-1:-1:-1;;;;;30123:27:0;;;:69;;;;;:::i;:::-;30207:17;;30097:95;;-1:-1:-1;30207:21:0;30203:224;;30349:10;30338:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30338:30:0;30330:85;;;;-1:-1:-1;;;30330:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4376:278;4462:7;4497:12;4490:5;4482:28;;;;-1:-1:-1;;;4482:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4482:28:0;;4521:9;4537:1;4533;:5;;;;;;;4376:278;-1:-1:-1;;;;;4376:278:0:o;13496:196::-;13599:12;13631:53;13654:6;13662:4;13668:1;13671:12;13631:22;:53::i;:::-;13624:60;13496:196;-1:-1:-1;;;;13496:196:0:o;14873:979::-;15003:12;15036:18;15047:6;15036:10;:18::i;:::-;15028:60;;;;;-1:-1:-1;;;15028:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15162:12;15176:23;15203:6;-1:-1:-1;;;;;15203:11:0;15223:8;15234:4;15203:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;15203:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;15161:78:0;;;;15254:7;15250:595;;;15285:10;-1:-1:-1;15278:17:0;;-1:-1:-1;15278:17:0;15250:595;15399:17;;:21;15395:439;;15662:10;15656:17;15723:15;15710:10;15706:2;15702:19;15695:44;15610:148;15798:20;;-1:-1:-1;;;15798:20:0;;;;;;;;;;;;;;;;;15805:12;;15798:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10381:619:0;10441:4;10909:20;;10752:66;10949:23;;;;;;:42;;-1:-1:-1;;10976:15:0;;;10941:51;-1:-1:-1;;10381:619:0:o
Swarm Source
ipfs://6deb19d22d05ed3da3b7a28d321d908ed2e13291ae5e4ca8a8ca812a668e301b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.