Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DEX
Overview
Max Total Supply
12,786.096775052 oneVBTC
Holders
53 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.215111033 oneVBTCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
oneVBTC
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-05 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); } pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using 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"); } } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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; 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 virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override virtual 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 { } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity >=0.6.0; // interface for the oneToken interface OneToken { function getOneTokenUsd() external view returns (uint256); } // interface for CollateralOracle interface IOracleInterface { function getLatestPrice() external view returns (uint256); function update() external; function changeInterval(uint256 seconds_) external; function priceChangeMax(uint256 change_) external; } /// @title An overcollateralized stablecoin using vBTC /// @author Masanobu Fukuoka contract oneVBTC is ERC20("oneVBTC", "oneVBTC"), Ownable, ReentrancyGuard { using SafeMath for uint256; uint256 public MAX_RESERVE_RATIO; // At 100% reserve ratio, each oneVBTC is backed 1-to-1 by $1 of existing stable coins uint256 private constant DECIMALS = 9; uint256 public lastRefreshReserve; // The last time the reserve ratio was updated by the contract uint256 public minimumRefreshTime; // The time between reserve ratio refreshes address public stimulus; // oneVBTC builds a stimulus fund in vBTC. uint256 public stimulusDecimals; // used to calculate oracle rate of Uniswap Pair address public oneTokenOracle; // oracle for the oneVBTC stable coin bool public oneTokenOracleHasUpdate; //if oneVBTC token oracle requires update address public stimulusOracle; // oracle for a stimulus bool public stimulusOracleHasUpdate; //if stimulus oracle requires update // Only governance should cause the coin to go fully agorithmic by changing the minimum reserve // ratio. For now, we will set a conservative minimum reserve ratio. uint256 public MIN_RESERVE_RATIO; uint256 public MIN_DELAY; // Makes sure that you can't send coins to a 0 address and prevents coins from being sent to the // contract address. I want to protect your funds! modifier validRecipient(address to) { require(to != address(0x0)); require(to != address(this)); _; } uint256 private _totalSupply; mapping(address => uint256) private _oneBalances; mapping(address => uint256) private _lastCall; // used as a record to prevent flash loan attacks mapping (address => mapping (address => uint256)) private _allowedOne; // allowance to spend one address public gov; // who has admin rights over certain functions address public pendingGov; // allows you to transfer the governance to a different user - they must accept it! uint256 public reserveStepSize; // step size of update of reserve rate (e.g. 5 * 10 ** 8 = 0.5%) uint256 public reserveRatio; // a number between 0 and 100 * 10 ** 9. // 0 = 0% // 100 * 10 ** 9 = 100% // map of acceptable collaterals mapping (address => bool) public acceptedCollateral; mapping (address => uint256) public collateralMintFee; // minting fee for different collaterals (100 * 10 ** 9 = 100% fee) address[] public collateralArray; // array of collateral - used to iterate while updating certain things like oracle intervals for TWAP // modifier to allow auto update of TWAP oracle prices // also updates reserves rate programatically modifier updateProtocol() { if (address(oneTokenOracle) != address(0)) { // this is always updated because we always need stablecoin oracle price if (oneTokenOracleHasUpdate) IOracleInterface(oneTokenOracle).update(); if (stimulusOracleHasUpdate) IOracleInterface(stimulusOracle).update(); for (uint i = 0; i < collateralArray.length; i++){ if (acceptedCollateral[collateralArray[i]] && !oneCoinCollateralOracle[collateralArray[i]]) IOracleInterface(collateralOracle[collateralArray[i]]).update(); } // update reserve ratio if enough time has passed if (block.timestamp - lastRefreshReserve >= minimumRefreshTime) { // $Z / 1 one token if (getOneTokenUsd() > 1 * 10 ** 9) { setReserveRatio(reserveRatio.sub(reserveStepSize)); } else { setReserveRatio(reserveRatio.add(reserveStepSize)); } lastRefreshReserve = block.timestamp; } } _; } // events for off-chain record keeping event NewPendingGov(address oldPendingGov, address newPendingGov); event NewGov(address oldGov, address newGov); event NewReserveRate(uint256 reserveRatio); event Mint(address stimulus, address receiver, address collateral, uint256 collateralAmount, uint256 stimulusAmount, uint256 oneAmount); event Withdraw(address stimulus, address receiver, address collateral, uint256 collateralAmount, uint256 stimulusAmount, uint256 oneAmount); event NewMinimumRefreshTime(uint256 minimumRefreshTime); event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data); modifier onlyIchiGov() { require(msg.sender == gov, "ACCESS: only Ichi governance"); _; } bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)'))); // shortcut for calling transfer mapping (address => uint256) public collateralDecimals; // needed to be able to convert from different collaterals mapping (address => bool) public oneCoinCollateralOracle; // if true, we query the one token contract's usd price mapping (address => bool) public previouslySeenCollateral; // used to allow users to withdraw collateral, even if the collateral has since been deprecated // previouslySeenCollateral lets the contract know if a collateral has been used before - this also // prevents attacks where uses add a custom address as collateral, but that custom address is actually // their own malicious smart contract. Read peckshield blog for more info. mapping (address => address) public collateralOracle; // address of the Collateral-ETH Uniswap Price mapping (address => bool) public collateralOracleHasUpdate; // if collatoral oracle requires an update // default to 0 uint256 public mintFee; uint256 public withdrawFee; // fee to charge when minting oneVBTC - this will go into collateral event MintFee(uint256 fee_); // fee to charge when redeeming oneVBTC - this will go into collateral event WithdrawFee(uint256 fee_); // set governance access to only oneVBTC - USDC pool multisig (elected after rewards) modifier oneLPGov() { require(msg.sender == lpGov, "ACCESS: only oneLP governance"); _; } address public lpGov; address public pendingLPGov; event NewPendingLPGov(address oldPendingLPGov, address newPendingLPGov); event NewLPGov(address oldLPGov, address newLPGov); event NewMintFee(address collateral, uint256 oldFee, uint256 newFee); mapping (address => uint256) private _burnedStablecoin; // maps user to burned oneVBTC // important: make sure changeInterval is a function to allow the interval of update to change function addCollateral(address collateral_, uint256 collateralDecimal_, address oracleAddress_, bool oneCoinOracle, bool oracleHasUpdate) external oneLPGov { // only add collateral once if (!previouslySeenCollateral[collateral_]) collateralArray.push(collateral_); previouslySeenCollateral[collateral_] = true; acceptedCollateral[collateral_] = true; oneCoinCollateralOracle[collateral_] = oneCoinOracle; collateralDecimals[collateral_] = collateralDecimal_; collateralOracle[collateral_] = oracleAddress_; collateralMintFee[collateral_] = 0; collateralOracleHasUpdate[collateral_]= oracleHasUpdate; } function setCollateralMintFee(address collateral_, uint256 fee_) external oneLPGov { require(acceptedCollateral[collateral_], "invalid collateral"); require(fee_ <= 100 * 10 ** 9, "Fee must be valid"); emit NewMintFee(collateral_, collateralMintFee[collateral_], fee_); collateralMintFee[collateral_] = fee_; } // step size = how much the reserve rate updates per update cycle function setReserveStepSize(uint256 stepSize_) external oneLPGov { reserveStepSize = stepSize_; } // changes the oracle for a given collaterarl function setCollateralOracle(address collateral_, address oracleAddress_, bool oneCoinOracle_, bool oracleHasUpdate) external oneLPGov { require(acceptedCollateral[collateral_], "invalid collateral"); oneCoinCollateralOracle[collateral_] = oneCoinOracle_; collateralOracle[collateral_] = oracleAddress_; collateralOracleHasUpdate[collateral_] = oracleHasUpdate; } // removes a collateral from minting. Still allows withdrawals however function removeCollateral(address collateral_) external oneLPGov { acceptedCollateral[collateral_] = false; } // used for querying function getBurnedStablecoin(address _user) public view returns (uint256) { return _burnedStablecoin[_user]; } // returns 10 ** 9 price of collateral function getCollateralUsd(address collateral_) public view returns (uint256) { require(previouslySeenCollateral[collateral_], "must be an existing collateral"); if (oneCoinCollateralOracle[collateral_]) return OneToken(collateral_).getOneTokenUsd(); return IOracleInterface(collateralOracle[collateral_]).getLatestPrice(); } function globalCollateralValue() public view returns (uint256) { uint256 totalCollateralUsd = 0; for (uint i = 0; i < collateralArray.length; i++){ // Exclude null addresses if (collateralArray[i] != address(0)){ totalCollateralUsd += IERC20(collateralArray[i]).balanceOf(address(this)).mul(10 ** 9).div(10 ** collateralDecimals[collateralArray[i]]).mul(getCollateralUsd(collateralArray[i])).div(10 ** 9); // add stablecoin balance } } return totalCollateralUsd; } // return price of oneVBTC in 10 ** 9 decimal function getOneTokenUsd() public view returns (uint256) { return IOracleInterface(oneTokenOracle).getLatestPrice(); } /** * @return The total number of oneVBTC. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } /** * @param who The address to query. * @return The balance of the specified address. */ function balanceOf(address who) public override view returns (uint256) { return _oneBalances[who]; } /** * @dev Transfer tokens to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. * @return True on success, false otherwise. */ function transfer(address to, uint256 value) public override validRecipient(to) updateProtocol() returns (bool) { _oneBalances[msg.sender] = _oneBalances[msg.sender].sub(value); _oneBalances[to] = _oneBalances[to].add(value); emit Transfer(msg.sender, to, value); return true; } /** * @dev Function to check the amount of tokens that an owner has allowed to a spender. * @param owner_ The address which owns the funds. * @param spender The address which will spend the funds. * @return The number of tokens still available for the spender. */ function allowance(address owner_, address spender) public override view returns (uint256) { return _allowedOne[owner_][spender]; } /** * @dev Transfer tokens from one address to another. * @param from The address you want to send tokens from. * @param to The address you want to transfer to. * @param value The amount of tokens to be transferred. */ function transferFrom(address from, address to, uint256 value) public override validRecipient(to) updateProtocol() returns (bool) { _allowedOne[from][msg.sender] = _allowedOne[from][msg.sender].sub(value); _oneBalances[from] = _oneBalances[from].sub(value); _oneBalances[to] = _oneBalances[to].add(value); emit Transfer(from, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of * msg.sender. This method is included for ERC20 compatibility. * increaseAllowance and decreaseAllowance should be used instead. * Changing an allowance with this method brings the risk that someone may transfer both * the old and the new allowance - if they are both greater than zero - if a transfer * transaction is mined before the later approve() call is mined. * * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public override validRecipient(spender) updateProtocol() returns (bool) { _allowedOne[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Increase the amount of tokens that an owner has allowed to a spender. * This method should be used instead of approve() to avoid the double approval vulnerability * described above. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) { _allowedOne[msg.sender][spender] = _allowedOne[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowedOne[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner has allowed to a spender. * * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) { uint256 oldValue = _allowedOne[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowedOne[msg.sender][spender] = 0; } else { _allowedOne[msg.sender][spender] = oldValue.sub(subtractedValue); } emit Approval(msg.sender, spender, _allowedOne[msg.sender][spender]); return true; } function setOneTokenOracle(address oracle_, bool hasUpdate) external oneLPGov returns (bool) { oneTokenOracle = oracle_; oneTokenOracleHasUpdate = hasUpdate; return true; } function setStimulusOracle(address oracle_, bool hasUpdate) external oneLPGov returns (bool) { stimulusOracle = oracle_; stimulusOracleHasUpdate = hasUpdate; return true; } function setStimulusPriceChangeMax(uint256 change_) external oneLPGov returns (bool) { IOracleInterface(stimulusOracle).priceChangeMax(change_); return true; } // oracle rate is 10 ** 9 decimals // returns $Z / Stimulus function getStimulusUSD() public view returns (uint256) { return IOracleInterface(stimulusOracle).getLatestPrice(); } // minimum amount of block time (seconds) required for an update in reserve ratio function setMinimumRefreshTime(uint256 val_) external oneLPGov returns (bool) { require(val_ != 0, "minimum refresh time must be valid"); minimumRefreshTime = val_; // change collateral array for (uint i = 0; i < collateralArray.length; i++){ if (acceptedCollateral[collateralArray[i]] && !oneCoinCollateralOracle[collateralArray[i]] && collateralOracleHasUpdate[collateralArray[i]]) IOracleInterface(collateralOracle[collateralArray[i]]).changeInterval(val_); } if (oneTokenOracleHasUpdate) IOracleInterface(oneTokenOracle).changeInterval(val_); if (stimulusOracleHasUpdate) IOracleInterface(stimulusOracle).changeInterval(val_); // change all the oracles (collateral, stimulus, oneToken) emit NewMinimumRefreshTime(val_); return true; } constructor( uint256 reserveRatio_, address stimulus_, uint256 stimulusDecimals_ ) public { _setupDecimals(uint8(9)); stimulus = stimulus_; minimumRefreshTime = 3600 * 1; // 1 hour by default stimulusDecimals = stimulusDecimals_; reserveStepSize = 2 * 10 ** 8; // 0.2% by default MIN_RESERVE_RATIO = 95 * 10 ** 9; MAX_RESERVE_RATIO = 100 * 10 ** 9; MIN_DELAY = 3; // 3 blocks withdrawFee = 45 * 10 ** 7; // 0.45% fee at first, remains in collateral gov = msg.sender; lpGov = msg.sender; reserveRatio = reserveRatio_; uint256 firstMint = 1000 * 10 ** 9; //mint 1000 to create LP _totalSupply = firstMint; //mint 1000 to create LP _oneBalances[msg.sender] = firstMint; emit Transfer(address(0x0), msg.sender, firstMint); } function setMinimumReserveRatio(uint256 val_) external oneLPGov { MIN_RESERVE_RATIO = val_; if (MIN_RESERVE_RATIO > reserveRatio) setReserveRatio(MIN_RESERVE_RATIO); } function setMaximumReserveRatio(uint256 val_) external oneLPGov { MAX_RESERVE_RATIO = val_; if (MAX_RESERVE_RATIO < reserveRatio) setReserveRatio(MAX_RESERVE_RATIO); } function setMinimumDelay(uint256 val_) external oneLPGov { MIN_DELAY = val_; } // LP pool governance ==================================== function setPendingLPGov(address pendingLPGov_) external oneLPGov { address oldPendingLPGov = pendingLPGov; pendingLPGov = pendingLPGov_; emit NewPendingLPGov(oldPendingLPGov, pendingLPGov_); } function acceptLPGov() external { require(msg.sender == pendingLPGov, "!pending"); address oldLPGov = lpGov; // that lpGov = pendingLPGov; pendingLPGov = address(0); emit NewGov(oldLPGov, lpGov); } // over-arching protocol level governance =============== function setPendingGov(address pendingGov_) external onlyIchiGov { address oldPendingGov = pendingGov; pendingGov = pendingGov_; emit NewPendingGov(oldPendingGov, pendingGov_); } function acceptGov() external { require(msg.sender == pendingGov, "!pending"); address oldGov = gov; gov = pendingGov; pendingGov = address(0); emit NewGov(oldGov, gov); } // ====================================================== // calculates how much you will need to send in order to mint oneVBTC, depending on current market prices + reserve ratio // oneAmount: the amount of oneVBTC you want to mint // collateral: the collateral you want to use to pay // also works in the reverse direction, i.e. how much collateral + stimulus to receive when you burn One function consultOneDeposit(uint256 oneAmount, address collateral) public view returns (uint256, uint256) { require(oneAmount != 0, "must use valid oneAmount"); require(acceptedCollateral[collateral], "must be an accepted collateral"); uint256 stimulusUsd = getStimulusUSD(); // 10 ** 9 // convert to correct decimals for collateral uint256 collateralAmount = oneAmount.mul(reserveRatio).div(MAX_RESERVE_RATIO).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS); collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral)); if (address(oneTokenOracle) == address(0)) return (collateralAmount, 0); uint256 stimulusAmountInOneStablecoin = oneAmount.mul(MAX_RESERVE_RATIO.sub(reserveRatio)).div(MAX_RESERVE_RATIO); uint256 stimulusAmount = stimulusAmountInOneStablecoin.mul(10 ** 9).div(stimulusUsd).mul(10 ** stimulusDecimals).div(10 ** DECIMALS); // must be 10 ** stimulusDecimals return (collateralAmount, stimulusAmount); } function consultOneWithdraw(uint256 oneAmount, address collateral) public view returns (uint256, uint256) { require(oneAmount != 0, "must use valid oneAmount"); require(previouslySeenCollateral[collateral], "must be an accepted collateral"); uint256 collateralAmount = oneAmount.sub(oneAmount.mul(withdrawFee).div(100 * 10 ** DECIMALS)).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS); collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral)); return (collateralAmount, 0); } // @title: deposit collateral + stimulus token // collateral: address of the collateral to deposit (USDC, DAI, TUSD, etc) function mint( uint256 oneAmount, address collateral ) public payable nonReentrant updateProtocol() { require(acceptedCollateral[collateral], "must be an accepted collateral"); require(oneAmount != 0, "must mint non-zero amount"); // wait 3 blocks to avoid flash loans require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few more blocks"); // validate input amounts are correct (uint256 collateralAmount, uint256 stimulusAmount) = consultOneDeposit(oneAmount, collateral); require(collateralAmount <= IERC20(collateral).balanceOf(msg.sender), "sender has insufficient collateral balance"); require(stimulusAmount <= IERC20(stimulus).balanceOf(msg.sender), "sender has insufficient stimulus balance"); // checks passed, so transfer tokens SafeERC20.safeTransferFrom(IERC20(collateral), msg.sender, address(this), collateralAmount); SafeERC20.safeTransferFrom(IERC20(stimulus), msg.sender, address(this), stimulusAmount); oneAmount = oneAmount.sub(oneAmount.mul(mintFee).div(100 * 10 ** DECIMALS)); // apply mint fee oneAmount = oneAmount.sub(oneAmount.mul(collateralMintFee[collateral]).div(100 * 10 ** DECIMALS)); // apply collateral fee _totalSupply = _totalSupply.add(oneAmount); _oneBalances[msg.sender] = _oneBalances[msg.sender].add(oneAmount); emit Transfer(address(0x0), msg.sender, oneAmount); _lastCall[msg.sender] = block.number; emit Mint(stimulus, msg.sender, collateral, collateralAmount, stimulusAmount, oneAmount); } // fee_ should be 10 ** 9 decimals (e.g. 10% = 10 * 10 ** 9) function editMintFee(uint256 fee_) external onlyIchiGov { require(fee_ <= 100 * 10 ** 9, "Fee must be valid"); mintFee = fee_; emit MintFee(fee_); } // fee_ should be 10 ** 9 decimals (e.g. 10% = 10 * 10 ** 9) function editWithdrawFee(uint256 fee_) external onlyIchiGov { withdrawFee = fee_; emit WithdrawFee(fee_); } /// burns stablecoin and increments _burnedStablecoin mapping for user /// user can claim collateral in a 2nd step below function withdraw( uint256 oneAmount, address collateral ) public nonReentrant updateProtocol() { require(oneAmount != 0, "must withdraw non-zero amount"); require(oneAmount <= _oneBalances[msg.sender], "insufficient balance"); require(previouslySeenCollateral[collateral], "must be an existing collateral"); require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few blocks"); // burn oneAmount _totalSupply = _totalSupply.sub(oneAmount); _oneBalances[msg.sender] = _oneBalances[msg.sender].sub(oneAmount); _burnedStablecoin[msg.sender] = _burnedStablecoin[msg.sender].add(oneAmount); _lastCall[msg.sender] = block.number; emit Transfer(msg.sender, address(0x0), oneAmount); } // 2nd step for withdrawal of collateral // this 2 step withdrawal is important for prevent flash-loan style attacks // flash-loan style attacks try to use loops/complex arbitrage strategies to // drain collateral so adding a 2-step process prevents any potential attacks // because all flash-loans must be repaid within 1 tx and 1 block /// @notice If you are interested, I would recommend reading: https://slowmist.medium.com/ /// also https://cryptobriefing.com/50-million-lost-the-top-19-defi-cryptocurrency-hacks-2020/ function withdrawFinal(address collateral, uint256 amount) public nonReentrant updateProtocol() { require(previouslySeenCollateral[collateral], "must be an existing collateral"); require((_lastCall[msg.sender] + MIN_DELAY) <= block.number, "action too soon - please wait a few blocks"); uint256 oneAmount = _burnedStablecoin[msg.sender]; require(oneAmount != 0, "insufficient oneVBTC to redeem"); require(amount <= oneAmount, "insufficient oneVBTC to redeem"); _burnedStablecoin[msg.sender] = _burnedStablecoin[msg.sender].sub(amount); // send collateral - fee (convert to collateral decimals too) uint256 collateralAmount = amount.sub(amount.mul(withdrawFee).div(100 * 10 ** DECIMALS)).mul(10 ** collateralDecimals[collateral]).div(10 ** DECIMALS); collateralAmount = collateralAmount.mul(10 ** 9).div(getCollateralUsd(collateral)); uint256 stimulusAmount = 0; // check enough reserves - don't want to burn one coin if we cannot fulfill withdrawal require(collateralAmount <= IERC20(collateral).balanceOf(address(this)), "insufficient collateral reserves - try another collateral"); SafeERC20.safeTransfer(IERC20(collateral), msg.sender, collateralAmount); _lastCall[msg.sender] = block.number; emit Withdraw(stimulus, msg.sender, collateral, collateralAmount, stimulusAmount, amount); } // internal function used to set the reserve ratio of the token // must be between MIN / MAX Reserve Ratio, which are constants // cannot be 0 function setReserveRatio(uint256 newRatio_) internal { require(newRatio_ >= 0, "positive reserve ratio"); if (newRatio_ <= MAX_RESERVE_RATIO && newRatio_ >= MIN_RESERVE_RATIO) { reserveRatio = newRatio_; emit NewReserveRate(reserveRatio); } } /// @notice easy function transfer ETH (not WETH) function safeTransferETH(address to, uint value) public oneLPGov { (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'ETH_TRANSFER_FAILED'); } /// @notice easy funtion to move stimulus to a new location // location: address to send to // amount: amount of stimulus to send (use full decimals) function moveStimulus( address location, uint256 amount ) public oneLPGov { SafeERC20.safeTransfer(IERC20(stimulus), location, amount); } // can execute any abstract transaction on this smart contrat // target: address / smart contract you are interracting with // value: msg.value (amount of eth in WEI you are sending. Most of the time it is 0) // signature: the function signature (name of the function and the types of the arguments). // for example: "transfer(address,uint256)", or "approve(address,uint256)" // data: abi-encodeded byte-code of the parameter values you are sending. See "./encode.js" for Ether.js library function to make this easier function executeTransaction(address target, uint value, string memory signature, bytes memory data) public payable oneLPGov returns (bytes memory) { bytes memory callData; if (bytes(signature).length == 0) { callData = data; } else { callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); } // solium-disable-next-line security/no-call-value (bool success, bytes memory returnData) = target.call.value(value)(callData); require(success, "oneVBTC::executeTransaction: Transaction execution reverted."); return returnData; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"reserveRatio_","type":"uint256"},{"internalType":"address","name":"stimulus_","type":"address"},{"internalType":"uint256","name":"stimulusDecimals_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"ExecuteTransaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stimulus","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stimulusAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oneAmount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"MintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldLPGov","type":"address"},{"indexed":false,"internalType":"address","name":"newLPGov","type":"address"}],"name":"NewLPGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minimumRefreshTime","type":"uint256"}],"name":"NewMinimumRefreshTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"NewMintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingLPGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingLPGov","type":"address"}],"name":"NewPendingLPGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reserveRatio","type":"uint256"}],"name":"NewReserveRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stimulus","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stimulusAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oneAmount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"WithdrawFee","type":"event"},{"inputs":[],"name":"MAX_RESERVE_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_RESERVE_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptLPGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"acceptedCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"uint256","name":"collateralDecimal_","type":"uint256"},{"internalType":"address","name":"oracleAddress_","type":"address"},{"internalType":"bool","name":"oneCoinOracle","type":"bool"},{"internalType":"bool","name":"oracleHasUpdate","type":"bool"}],"name":"addCollateral","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collateralArray","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"consultOneDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"consultOneWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"fee_","type":"uint256"}],"name":"editMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"editWithdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getBurnedStablecoin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"}],"name":"getCollateralUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOneTokenUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStimulusUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalCollateralValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastRefreshReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumRefreshTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"location","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"moveStimulus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"oneCoinCollateralOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneTokenOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneTokenOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingLPGov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"previouslySeenCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"}],"name":"removeCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveStepSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"safeTransferETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"uint256","name":"fee_","type":"uint256"}],"name":"setCollateralMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collateral_","type":"address"},{"internalType":"address","name":"oracleAddress_","type":"address"},{"internalType":"bool","name":"oneCoinOracle_","type":"bool"},{"internalType":"bool","name":"oracleHasUpdate","type":"bool"}],"name":"setCollateralOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMaximumReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumRefreshTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val_","type":"uint256"}],"name":"setMinimumReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"},{"internalType":"bool","name":"hasUpdate","type":"bool"}],"name":"setOneTokenOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingGov_","type":"address"}],"name":"setPendingGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingLPGov_","type":"address"}],"name":"setPendingLPGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stepSize_","type":"uint256"}],"name":"setReserveStepSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"},{"internalType":"bool","name":"hasUpdate","type":"bool"}],"name":"setStimulusOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"change_","type":"uint256"}],"name":"setStimulusPriceChangeMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stimulus","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stimulusOracleHasUpdate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneAmount","type":"uint256"},{"internalType":"address","name":"collateral","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collateral","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFinal","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200576d3803806200576d833981810160405260608110156200003757600080fd5b508051602080830151604093840151845180860186526007808252666f6e655642544360c81b8286018181528851808a019099529188529487019490945280519495929491939092916200008e916003916200020d565b508051620000a49060049060208401906200020d565b50506005805460ff19166012179055506000620000c0620001f3565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600655620001276009620001f7565b600a80546001600160a01b0384166001600160a01b031991821617909155610e10600955600b829055630bebc20060165564161e70f600600e5564174876e8006007556003600f55631ad2748060215560148054821633908117909155602280549092168117909155601784905564e8d4a5100060108190556000828152601160209081526040808320849055805184815290519394937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350505050620002a9565b3390565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200025057805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200028057825182559160200191906001019062000263565b506200028e92915062000292565b5090565b5b808211156200028e576000815560010162000293565b6154b480620002b96000396000f3fe60806040526004361061041a5760003560e01c80638da5cb5b1161021e578063d494d58611610123578063eb7afed0116100ab578063f20505851161007a578063f205058514611057578063f2fde38b146110a4578063f6cad255146110d7578063fcc6ce761461110a578063fdec254f1461111f5761041a565b8063eb7afed014610f94578063efdf0bb014610fbe578063f196d01814610ff1578063f1ae3c7f146110245761041a565b8063e2ceebd1116100f2578063e2ceebd114610eb6578063e56df6c614610eef578063e581890a14610f19578063e9144e7314610f4c578063e941fa7814610f7f5761041a565b8063d494d58614610e00578063da2b9bfa14610e33578063dd62ed3e14610e48578063e2b11a6414610e835761041a565b80639f81aed7116101a6578063c522e74f11610175578063c522e74f14610d31578063c99d3a0614610d5b578063ca7f171a14610d8e578063d00e3a3a14610db8578063d2d97b0614610deb5761041a565b80639f81aed714610c71578063a457c2d714610c86578063a9059cbb14610cbf578063c072ea4314610cf85761041a565b806395d89b41116101ed57806395d89b4114610ba6578063962442c114610bbb57806399b16efd14610c0c57806399e3291014610c215780639bf7451914610c5c5761041a565b80638da5cb5b14610b3b5780638fe605ad14610b5057806393fab9ee14610b6557806394bf804d14610b7a5761041a565b8063395093511161032457806370a08231116102ac5780637bc6729b1161027b5780637bc6729b14610a755780637c365e1b14610a8a5780637c4368c114610ac35780638028faa214610afc57806389a604eb14610b265761041a565b806370a08231146109ee578063715018a614610a2157806375e8ef5c14610a3657806379baca1514610a605761041a565b806354588637116102f3578063545886371461092e57806355c00fb51461094357806357288d001461096d5780635f72a2a7146109a65780636ca2fc1b146109bb5761041a565b806339509351146108725780633a1b9147146108ab5780634ba8f7a1146108e65780634d7efed7146109195761041a565b806317d33845116103a757806323b872dd1161037657806323b872dd146107b057806324552f33146107f35780632524081014610808578063313ce5671461081d57806333d5327c146108485761041a565b806317d33845146105f257806318160ddd146106075780631cf3cf311461061c5780632224fa251461066e5761041a565b80630c7d5cd8116103ee5780630c7d5cd81461055b5780630ed2dff0146105825780631190016c146105b357806312d43a51146105c857806313966db5146105dd5761041a565b8062f714ce1461041f57806306fdde031461045a578063095ea7b3146104e45780630acac95e14610531575b600080fd5b34801561042b57600080fd5b506104586004803603604081101561044257600080fd5b50803590602001356001600160a01b0316611134565b005b34801561046657600080fd5b5061046f611621565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b0381351690602001356116b7565b604080519115158252519081900360200190f35b34801561053d57600080fd5b5061051d6004803603602081101561055457600080fd5b50356119ce565b34801561056757600080fd5b50610570611cf1565b60408051918252519081900360200190f35b34801561058e57600080fd5b50610597611cf7565b604080516001600160a01b039092168252519081900360200190f35b3480156105bf57600080fd5b50610570611d06565b3480156105d457600080fd5b50610597611d0c565b3480156105e957600080fd5b50610570611d1b565b3480156105fe57600080fd5b50610570611d21565b34801561061357600080fd5b50610570611d27565b34801561062857600080fd5b506106556004803603604081101561063f57600080fd5b50803590602001356001600160a01b0316611d2d565b6040805192835260208301919091528051918290030190f35b61046f6004803603608081101561068457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460018302840111640100000000831117156106e857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073b57600080fd5b82018360208201111561074d57600080fd5b8035906020019184600183028401116401000000008311171561076f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e6e945050505050565b3480156107bc57600080fd5b5061051d600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135612046565b3480156107ff57600080fd5b506105706123dd565b34801561081457600080fd5b506105976123e3565b34801561082957600080fd5b506108326123f2565b6040805160ff9092168252519081900360200190f35b34801561085457600080fd5b506104586004803603602081101561086b57600080fd5b50356123fb565b34801561087e57600080fd5b5061051d6004803603604081101561089557600080fd5b506001600160a01b038135169060200135612465565b3480156108b757600080fd5b5061051d600480360360408110156108ce57600080fd5b506001600160a01b03813516906020013515156124f9565b3480156108f257600080fd5b5061051d6004803603602081101561090957600080fd5b50356001600160a01b0316612583565b34801561092557600080fd5b50610597612598565b34801561093a57600080fd5b506105976125a7565b34801561094f57600080fd5b5061051d6004803603602081101561096657600080fd5b50356125b6565b34801561097957600080fd5b506104586004803603604081101561099057600080fd5b506001600160a01b038135169060200135612673565b3480156109b257600080fd5b5061051d612c98565b3480156109c757600080fd5b50610570600480360360208110156109de57600080fd5b50356001600160a01b0316612ca8565b3480156109fa57600080fd5b5061057060048036036020811015610a1157600080fd5b50356001600160a01b0316612cc3565b348015610a2d57600080fd5b50610458612cde565b348015610a4257600080fd5b5061045860048036036020811015610a5957600080fd5b5035612d9d565b348015610a6c57600080fd5b50610570612e04565b348015610a8157600080fd5b50610458612e7a565b348015610a9657600080fd5b5061045860048036036040811015610aad57600080fd5b506001600160a01b038135169060200135612f32565b348015610acf57600080fd5b5061045860048036036040811015610ae657600080fd5b506001600160a01b038135169060200135612f9a565b348015610b0857600080fd5b5061045860048036036020811015610b1f57600080fd5b50356130eb565b348015610b3257600080fd5b5061057061313d565b348015610b4757600080fd5b50610597613143565b348015610b5c57600080fd5b50610570613157565b348015610b7157600080fd5b5061057061319c565b61045860048036036040811015610b9057600080fd5b50803590602001356001600160a01b03166131a2565b348015610bb257600080fd5b5061046f613876565b348015610bc757600080fd5b50610458600480360360a0811015610bde57600080fd5b506001600160a01b0381358116916020810135916040820135169060608101351515906080013515156138d7565b348015610c1857600080fd5b50610597613a2d565b348015610c2d57600080fd5b5061051d60048036036040811015610c4457600080fd5b506001600160a01b0381351690602001351515613a3c565b348015610c6857600080fd5b50610458613ac6565b348015610c7d57600080fd5b50610570613b7e565b348015610c9257600080fd5b5061051d60048036036040811015610ca957600080fd5b506001600160a01b038135169060200135613b84565b348015610ccb57600080fd5b5061051d60048036036040811015610ce257600080fd5b506001600160a01b038135169060200135613c6d565b348015610d0457600080fd5b5061065560048036036040811015610d1b57600080fd5b50803590602001356001600160a01b0316613faf565b348015610d3d57600080fd5b5061059760048036036020811015610d5457600080fd5b503561415f565b348015610d6757600080fd5b5061045860048036036020811015610d7e57600080fd5b50356001600160a01b0316614186565b348015610d9a57600080fd5b5061045860048036036020811015610db157600080fd5b50356141f4565b348015610dc457600080fd5b5061051d60048036036020811015610ddb57600080fd5b50356001600160a01b031661428e565b348015610df757600080fd5b506105706142a3565b348015610e0c57600080fd5b5061057060048036036020811015610e2357600080fd5b50356001600160a01b0316614418565b348015610e3f57600080fd5b50610597614595565b348015610e5457600080fd5b5061057060048036036040811015610e6b57600080fd5b506001600160a01b03813581169160200135166145a4565b348015610e8f57600080fd5b5061051d60048036036020811015610ea657600080fd5b50356001600160a01b03166145cf565b348015610ec257600080fd5b5061045860048036036040811015610ed957600080fd5b506001600160a01b0381351690602001356145e4565b348015610efb57600080fd5b5061045860048036036020811015610f1257600080fd5b5035614754565b348015610f2557600080fd5b5061057060048036036020811015610f3c57600080fd5b50356001600160a01b031661483d565b348015610f5857600080fd5b5061059760048036036020811015610f6f57600080fd5b50356001600160a01b031661484f565b348015610f8b57600080fd5b5061057061486a565b348015610fa057600080fd5b5061045860048036036020811015610fb757600080fd5b5035614870565b348015610fca57600080fd5b5061045860048036036020811015610fe157600080fd5b50356001600160a01b03166148c2565b348015610ffd57600080fd5b506104586004803603602081101561101457600080fd5b50356001600160a01b0316614984565b34801561103057600080fd5b506105706004803603602081101561104757600080fd5b50356001600160a01b0316614a34565b34801561106357600080fd5b506104586004803603608081101561107a57600080fd5b506001600160a01b0381358116916020810135909116906040810135151590606001351515614a46565b3480156110b057600080fd5b50610458600480360360208110156110c757600080fd5b50356001600160a01b0316614b56565b3480156110e357600080fd5b5061051d600480360360208110156110fa57600080fd5b50356001600160a01b0316614c71565b34801561111657600080fd5b5061051d614c86565b34801561112b57600080fd5b50610570614c96565b6002600654141561118c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561141957600c54600160a01b900460ff161561121d57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561129857600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561127f57600080fd5b505af1158015611293573d6000803e3d6000fd5b505050505b60005b601a548110156113b55760186000601a83815481106112b657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156113205750601c6000601a83815481106112f657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156113ad57601e6000601a838154811061133657fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561139457600080fd5b505af11580156113a8573d6000803e3d6000fd5b505050505b60010161129b565b5060095460085442031061141957633b9aca006113d0613157565b11156113fa576113f56113f0601654601754614c9c90919063ffffffff16565b614ce5565b611414565b6114146113f0601654601754614d3990919063ffffffff16565b426008555b8161146b576040805162461bcd60e51b815260206004820152601d60248201527f6d757374207769746864726177206e6f6e2d7a65726f20616d6f756e74000000604482015290519081900360640190fd5b336000908152601160205260409020548211156114c6576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0381166000908152601d602052604090205460ff16611533576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156115865760405162461bcd60e51b815260040180806020018281038252602a815260200180615455602a913960400191505060405180910390fd5b6010546115939083614c9c565b601055336000908152601160205260409020546115b09083614c9c565b336000908152601160209081526040808320939093556024905220546115d69083614d39565b33600081815260246020908152604080832094909455601281528382204390558351868152935191936000805160206153b2833981519152929081900390910190a350506001600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b6000826001600160a01b0381166116cd57600080fd5b6001600160a01b0381163014156116e357600080fd5b600c546001600160a01b03161561196657600c54600160a01b900460ff161561176f57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561175657600080fd5b505af115801561176a573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156117ea57600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156117d157600080fd5b505af11580156117e5573d6000803e3d6000fd5b505050505b60005b601a548110156119075760186000601a838154811061180857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156118725750601c6000601a838154811061184857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156118ff57601e6000601a838154811061188857fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156118e657600080fd5b505af11580156118fa573d6000803e3d6000fd5b505050505b6001016117ed565b5060095460085442031061196657633b9aca00611922613157565b1115611947576119426113f0601654601754614c9c90919063ffffffff16565b611961565b6119616113f0601654601754614d3990919063ffffffff16565b426008555b3360008181526013602090815260408083206001600160a01b03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6022546000906001600160a01b03163314611a1e576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b81611a5a5760405162461bcd60e51b815260040180806020018281038252602281526020018061536f6022913960400191505060405180910390fd5b600982905560005b601a54811015611bc45760186000601a8381548110611a7d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015611ae75750601c6000601a8381548110611abd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b8015611b285750601f6000601a8381548110611aff57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff165b15611bbc57601e6000601a8381548110611b3e57fe5b60009182526020808320909101546001600160a01b03908116845290830193909352604091820181205482516363c7560760e01b81526004810188905292519316926363c7560792602480820193929182900301818387803b158015611ba357600080fd5b505af1158015611bb7573d6000803e3d6000fd5b505050505b600101611a62565b50600c54600160a01b900460ff1615611c3d57600c54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c2457600080fd5b505af1158015611c38573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615611cb557600d54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c9c57600080fd5b505af1158015611cb0573d6000803e3d6000fd5b505050505b6040805183815290517ff96993476642ad4471e701dee382f1d8b7947acb089dba94a2f49e477e85c8799181900360200190a15060015b919050565b60175481565b600d546001600160a01b031681565b60075481565b6014546001600160a01b031681565b60205481565b600b5481565b60105490565b60008083611d7d576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b0383166000908152601d602052604090205460ff16611dea576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0383166000908152601b6020526040812054602154611e4391633b9aca0091611e3091600a0a90611e3d90611e369064174876e8009085908d90614d93565b90614dec565b8a90614c9c565b90614d93565b9050611e5f611e5185614418565b611e3083633b9aca00614d93565b925060009150505b9250929050565b6022546060906001600160a01b03163314611ebe576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6060835160001415611ed1575081611f54565b83805190602001208360405160200180836001600160e01b031916815260040182805190602001908083835b60208310611f1c5780518252601f199092019160209182019101611efd565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060876001600160a01b031687846040518082805190602001908083835b60208310611f935780518252601f199092019160209182019101611f74565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b50915091508161203b5760405162461bcd60e51b815260040180806020018281038252603c81526020018061528c603c913960400191505060405180910390fd5b979650505050505050565b6000826001600160a01b03811661205c57600080fd5b6001600160a01b03811630141561207257600080fd5b600c546001600160a01b0316156122f557600c54600160a01b900460ff16156120fe57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120e557600080fd5b505af11580156120f9573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561217957600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561216057600080fd5b505af1158015612174573d6000803e3d6000fd5b505050505b60005b601a548110156122965760186000601a838154811061219757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156122015750601c6000601a83815481106121d757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561228e57601e6000601a838154811061221757fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561227557600080fd5b505af1158015612289573d6000803e3d6000fd5b505050505b60010161217c565b506009546008544203106122f557633b9aca006122b1613157565b11156122d6576122d16113f0601654601754614c9c90919063ffffffff16565b6122f0565b6122f06113f0601654601754614d3990919063ffffffff16565b426008555b6001600160a01b03851660009081526013602090815260408083203384529091529020546123239084614c9c565b6001600160a01b03861660008181526013602090815260408083203384528252808320949094559181526011909152205461235e9084614c9c565b6001600160a01b03808716600090815260116020526040808220939093559086168152205461238d9084614d39565b6001600160a01b0380861660008181526011602090815260409182902094909455805187815290519193928916926000805160206153b283398151915292918290030190a3506001949350505050565b600e5481565b6015546001600160a01b031681565b60055460ff1690565b6022546001600160a01b03163314612448576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600781905560175481101561246257612462600754614ce5565b50565b3360009081526013602090815260408083206001600160a01b03861684529091528120546124939083614d39565b3360008181526013602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060015b92915050565b6022546000906001600160a01b03163314612549576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b50600c80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b601c6020526000908152604090205460ff1681565b6023546001600160a01b031681565b600c546001600160a01b031681565b6022546000906001600160a01b03163314612606576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600d5460408051631d55d14560e11b81526004810185905290516001600160a01b0390921691633aaba28a9160248082019260009290919082900301818387803b15801561265357600080fd5b505af1158015612667573d6000803e3d6000fd5b50600195945050505050565b600260065414156126cb576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561295357600c54600160a01b900460ff161561275c57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274357600080fd5b505af1158015612757573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156127d757600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127be57600080fd5b505af11580156127d2573d6000803e3d6000fd5b505050505b60005b601a548110156128f45760186000601a83815481106127f557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561285f5750601c6000601a838154811061283557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156128ec57601e6000601a838154811061287557fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156128d357600080fd5b505af11580156128e7573d6000803e3d6000fd5b505050505b6001016127da565b5060095460085442031061295357633b9aca0061290f613157565b11156129345761292f6113f0601654601754614c9c90919063ffffffff16565b61294e565b61294e6113f0601654601754614d3990919063ffffffff16565b426008555b6001600160a01b0382166000908152601d602052604090205460ff166129c0576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f54336000908152601260205260409020544391011115612a135760405162461bcd60e51b815260040180806020018281038252602a815260200180615455602a913960400191505060405180910390fd5b3360009081526024602052604090205480612a75576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e655642544320746f2072656465656d0000604482015290519081900360640190fd5b80821115612aca576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e655642544320746f2072656465656d0000604482015290519081900360640190fd5b33600090815260246020526040902054612ae49083614c9c565b336000908152602460209081526040808320939093556001600160a01b0386168252601b905290812054602154612b4291633b9aca0091611e3091600a0a90611e3d90612b3b9064174876e8009085908b90614d93565b8890614c9c565b9050612b50611e5185614418565b90506000846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612ba157600080fd5b505afa158015612bb5573d6000803e3d6000fd5b505050506040513d6020811015612bcb57600080fd5b5051821115612c0b5760405162461bcd60e51b81526004018080602001828103825260398152602001806152e86039913960400191505060405180910390fd5b612c16853384614e2e565b33600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291871682820152606082018490526080820183905260a08201869052517fbbbdee62287b5bf3bee13cab60a29ad729cf38109bccbd2a986a11c99b8ca7049181900360c00190a150506001600655505050565b600c54600160a01b900460ff1681565b6001600160a01b031660009081526024602052604090205490565b6001600160a01b031660009081526011602052604090205490565b612ce6614e80565b60055461010090046001600160a01b03908116911614612d4d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6022546001600160a01b03163314612dea576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600e81905560175481111561246257612462600e54614ce5565b600d5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b505afa158015612e5d573d6000803e3d6000fd5b505050506040513d6020811015612e7357600080fd5b5051905090565b6015546001600160a01b03163314612ec4576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60148054601580546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b6022546001600160a01b03163314612f7f576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600a54612f96906001600160a01b03168383614e2e565b5050565b6022546001600160a01b03163314612fe7576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106130335780518252601f199092019160209182019101613014565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613095576040519150601f19603f3d011682016040523d82523d6000602084013e61309a565b606091505b50509050806130e6576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505050565b6022546001600160a01b03163314613138576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600f55565b60165481565b60055461010090046001600160a01b031690565b600c5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b60085481565b600260065414156131fa576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561348257600c54600160a01b900460ff161561328b57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561327257600080fd5b505af1158015613286573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561330657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156132ed57600080fd5b505af1158015613301573d6000803e3d6000fd5b505050505b60005b601a548110156134235760186000601a838154811061332457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561338e5750601c6000601a838154811061336457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561341b57601e6000601a83815481106133a457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561340257600080fd5b505af1158015613416573d6000803e3d6000fd5b505050505b600101613309565b5060095460085442031061348257633b9aca0061343e613157565b11156134635761345e6113f0601654601754614c9c90919063ffffffff16565b61347d565b61347d6113f0601654601754614d3990919063ffffffff16565b426008555b6001600160a01b03811660009081526018602052604090205460ff166134ef576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b81613541576040805162461bcd60e51b815260206004820152601960248201527f6d757374206d696e74206e6f6e2d7a65726f20616d6f756e7400000000000000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156135945760405162461bcd60e51b815260040180806020018281038252602f8152602001806153d2602f913960400191505060405180910390fd5b6000806135a18484613faf565b91509150826001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156135f257600080fd5b505afa158015613606573d6000803e3d6000fd5b505050506040513d602081101561361c57600080fd5b505182111561365c5760405162461bcd60e51b815260040180806020018281038252602a815260200180615401602a913960400191505060405180910390fd5b600a54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156136a757600080fd5b505afa1580156136bb573d6000803e3d6000fd5b505050506040513d60208110156136d157600080fd5b50518111156137115760405162461bcd60e51b81526004018080602001828103825260288152602001806153216028913960400191505060405180910390fd5b61371d83333085614e84565b600a54613735906001600160a01b0316333084614e84565b602054613759906137529064174876e80090611e30908890614d93565b8590614c9c565b6001600160a01b03841660009081526019602052604090205490945061378f906137529064174876e80090611e30908890614d93565b60105490945061379f9085614d39565b601055336000908152601160205260409020546137bc9085614d39565b3360008181526011602090815260408083209490945583518881529351929391926000805160206153b28339815191529281900390910190a333600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291851682820152606082018490526080820183905260a08201869052517feca801b067fae3d181506c21fb55d44a644d16cdb863595643131a7e105b5f019181900360c00190a1505060016006555050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b6022546001600160a01b03163314613924576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152601d602052604090205460ff1661399057601a80546001810182556000919091527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b0319166001600160a01b0387161790555b6001600160a01b039485166000908152601d602090815260408083208054600160ff1991821681179092556018845282852080548216909217909155601c83528184208054821696151596909617909555601b825280832096909655601e815285822080546001600160a01b031916959097169490941790955560198352838520859055601f909252919092208054909116911515919091179055565b600a546001600160a01b031681565b6022546000906001600160a01b03163314613a8c576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b50600d80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b6023546001600160a01b03163314613b10576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60228054602380546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b600f5481565b3360009081526013602090815260408083206001600160a01b0386168452909152812054808310613bd8573360009081526013602090815260408083206001600160a01b0388168452909152812055613c07565b613be28184614c9c565b3360009081526013602090815260408083206001600160a01b03891684529091529020555b3360008181526013602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116613c8357600080fd5b6001600160a01b038116301415613c9957600080fd5b600c546001600160a01b031615613f1c57600c54600160a01b900460ff1615613d2557600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d0c57600080fd5b505af1158015613d20573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615613da057600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d8757600080fd5b505af1158015613d9b573d6000803e3d6000fd5b505050505b60005b601a54811015613ebd5760186000601a8381548110613dbe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015613e285750601c6000601a8381548110613dfe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b15613eb557601e6000601a8381548110613e3e57fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b158015613e9c57600080fd5b505af1158015613eb0573d6000803e3d6000fd5b505050505b600101613da3565b50600954600854420310613f1c57633b9aca00613ed8613157565b1115613efd57613ef86113f0601654601754614c9c90919063ffffffff16565b613f17565b613f176113f0601654601754614d3990919063ffffffff16565b426008555b33600090815260116020526040902054613f369084614c9c565b33600090815260116020526040808220929092556001600160a01b03861681522054613f629084614d39565b6001600160a01b0385166000818152601160209081526040918290209390935580518681529051919233926000805160206153b28339815191529281900390910190a35060019392505050565b60008083613fff576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b03831660009081526018602052604090205460ff1661406c576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6000614076612e04565b905060006140c96009600a0a611e30601b6000896001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e3d600754611e306017548d614d9390919063ffffffff16565b90506140d7611e5186614418565b600c549091506001600160a01b03166140f757925060009150611e679050565b6000614120600754611e30614119601754600754614c9c90919063ffffffff16565b8a90614d93565b905060006141506009600a0a611e30600b54600a0a611e3d88611e30633b9aca0089614d9390919063ffffffff16565b92989297509195505050505050565b601a818154811061416c57fe5b6000918252602090912001546001600160a01b0316905081565b6022546001600160a01b031633146141d3576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601860205260409020805460ff19169055565b6014546001600160a01b03163314614253576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b60218190556040805182815290517fa01cb43de193eb3a80b373fb949c09d0eedb01f39f3b6063ace0cb6b067cc1239181900360200190a150565b601f6020526000908152604090205460ff1681565b600080805b601a548110156144125760006001600160a01b0316601a82815481106142ca57fe5b6000918252602090912001546001600160a01b03161461440a57614405633b9aca00611e30614319601a85815481106142ff57fe5b6000918252602090912001546001600160a01b0316614418565b611e3d601b6000601a888154811061432d57fe5b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e30633b9aca00601a898154811061438457fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b1580156143d357600080fd5b505afa1580156143e7573d6000803e3d6000fd5b505050506040513d60208110156143fd57600080fd5b505190614d93565b820191505b6001016142a8565b50905090565b6001600160a01b0381166000908152601d602052604081205460ff16614485576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0382166000908152601c602052604090205460ff161561451257816001600160a01b0316638fe605ad6040518163ffffffff1660e01b815260040160206040518083038186803b1580156144df57600080fd5b505afa1580156144f3573d6000803e3d6000fd5b505050506040513d602081101561450957600080fd5b50519050611cec565b6001600160a01b038083166000908152601e6020908152604091829020548251638e15f47360e01b81529251931692638e15f473926004808201939291829003018186803b15801561456357600080fd5b505afa158015614577573d6000803e3d6000fd5b505050506040513d602081101561458d57600080fd5b505192915050565b6022546001600160a01b031681565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205490565b601d6020526000908152604090205460ff1681565b6022546001600160a01b03163314614631576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff16614693576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b64174876e8008111156146e1576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b6001600160a01b03821660008181526019602090815260409182902054825193845290830152818101839052517fcf85a5b7f4f21d4a913cf58eebe5679c7313cc3a20de1d2cd87f22a210e05fab9181900360600190a16001600160a01b03909116600090815260196020526040902055565b6014546001600160a01b031633146147b3576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b64174876e800811115614801576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b60208181556040805183815290517f6f87524b705f31734b7940b88671f37a3291d7b961b69da31bcabf882b2531da929181900390910190a150565b60196020526000908152604090205481565b601e602052600090815260409020546001600160a01b031681565b60215481565b6022546001600160a01b031633146148bd576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b601655565b6014546001600160a01b03163314614921576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b601580546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b6022546001600160a01b031633146149d1576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b602380546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6ea9654b538fab06e45f7940f0aa88b14cb8aca48a29d4e0b7626009fb7dc514929181900390910190a15050565b601b6020526000908152604090205481565b6022546001600160a01b03163314614a93576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526018602052604090205460ff16614af5576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b6001600160a01b039384166000908152601c60209081526040808320805495151560ff19968716179055601e82528083208054969097166001600160a01b031990961695909517909555601f90945291909220805491151591909216179055565b614b5e614e80565b60055461010090046001600160a01b03908116911614614bc5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116614c0a5760405162461bcd60e51b81526004018080602001828103825260268152602001806152666026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60186020526000908152604090205460ff1681565b600d54600160a01b900460ff1681565b60095481565b6000614cde83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614ee4565b9392505050565b6007548111158015614cf95750600e548110155b156124625760178190556040805182815290517f2fbb30255fd6bab4bd8c21173ab8290d05fcef04343b7d0190495d90e6866c569181900360200190a150565b600082820183811015614cde576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082614da2575060006124f3565b82820282848281614daf57fe5b0414614cde5760405162461bcd60e51b81526004018080602001828103825260218152602001806153916021913960400191505060405180910390fd5b6000614cde83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614f7b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526130e6908490614fe0565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052614ede908590614fe0565b50505050565b60008184841115614f735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f38578181015183820152602001614f20565b50505050905090810190601f168015614f655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183614fca5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f38578181015183820152602001614f20565b506000838581614fd657fe5b0495945050505050565b6060615035826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150919092919063ffffffff16565b8051909150156130e65780806020019051602081101561505457600080fd5b50516130e65760405162461bcd60e51b815260040180806020018281038252602a81526020018061542b602a913960400191505060405180910390fd5b60606150a084846000856150a8565b949350505050565b6060824710156150e95760405162461bcd60e51b81526004018080602001828103825260268152602001806153496026913960400191505060405180910390fd5b6150f2856151f9565b615143576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106151825780518252601f199092019160209182019101615163565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146151e4576040519150601f19603f3d011682016040523d82523d6000602084013e6151e9565b606091505b509150915061203b8282866151ff565b3b151590565b6060831561520e575081614cde565b82511561521e5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315614f38578181015183820152602001614f2056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573736f6e65564254433a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e4143434553533a206f6e6c79206f6e654c5020676f7665726e616e6365000000696e73756666696369656e7420636f6c6c61746572616c207265736572766573202d2074727920616e6f7468657220636f6c6c61746572616c73656e6465722068617320696e73756666696369656e74207374696d756c75732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6d696e696d756d20726566726573682074696d65206d7573742062652076616c6964536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616374696f6e20746f6f20736f6f6e202d20706c656173652077616974206120666577206d6f726520626c6f636b7373656e6465722068617320696e73756666696369656e7420636f6c6c61746572616c2062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564616374696f6e20746f6f20736f6f6e202d20706c65617365207761697420612066657720626c6f636b73a26469706673582212203014ba44994280cd80d14985aaeea30790f6ffec9608ec2b9123d163773ae76664736f6c634300060c0033000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000e1406825186d63980fd6e2ec61888f7b91c4bae40000000000000000000000000000000000000000000000000000000000000012
Deployed Bytecode
0x60806040526004361061041a5760003560e01c80638da5cb5b1161021e578063d494d58611610123578063eb7afed0116100ab578063f20505851161007a578063f205058514611057578063f2fde38b146110a4578063f6cad255146110d7578063fcc6ce761461110a578063fdec254f1461111f5761041a565b8063eb7afed014610f94578063efdf0bb014610fbe578063f196d01814610ff1578063f1ae3c7f146110245761041a565b8063e2ceebd1116100f2578063e2ceebd114610eb6578063e56df6c614610eef578063e581890a14610f19578063e9144e7314610f4c578063e941fa7814610f7f5761041a565b8063d494d58614610e00578063da2b9bfa14610e33578063dd62ed3e14610e48578063e2b11a6414610e835761041a565b80639f81aed7116101a6578063c522e74f11610175578063c522e74f14610d31578063c99d3a0614610d5b578063ca7f171a14610d8e578063d00e3a3a14610db8578063d2d97b0614610deb5761041a565b80639f81aed714610c71578063a457c2d714610c86578063a9059cbb14610cbf578063c072ea4314610cf85761041a565b806395d89b41116101ed57806395d89b4114610ba6578063962442c114610bbb57806399b16efd14610c0c57806399e3291014610c215780639bf7451914610c5c5761041a565b80638da5cb5b14610b3b5780638fe605ad14610b5057806393fab9ee14610b6557806394bf804d14610b7a5761041a565b8063395093511161032457806370a08231116102ac5780637bc6729b1161027b5780637bc6729b14610a755780637c365e1b14610a8a5780637c4368c114610ac35780638028faa214610afc57806389a604eb14610b265761041a565b806370a08231146109ee578063715018a614610a2157806375e8ef5c14610a3657806379baca1514610a605761041a565b806354588637116102f3578063545886371461092e57806355c00fb51461094357806357288d001461096d5780635f72a2a7146109a65780636ca2fc1b146109bb5761041a565b806339509351146108725780633a1b9147146108ab5780634ba8f7a1146108e65780634d7efed7146109195761041a565b806317d33845116103a757806323b872dd1161037657806323b872dd146107b057806324552f33146107f35780632524081014610808578063313ce5671461081d57806333d5327c146108485761041a565b806317d33845146105f257806318160ddd146106075780631cf3cf311461061c5780632224fa251461066e5761041a565b80630c7d5cd8116103ee5780630c7d5cd81461055b5780630ed2dff0146105825780631190016c146105b357806312d43a51146105c857806313966db5146105dd5761041a565b8062f714ce1461041f57806306fdde031461045a578063095ea7b3146104e45780630acac95e14610531575b600080fd5b34801561042b57600080fd5b506104586004803603604081101561044257600080fd5b50803590602001356001600160a01b0316611134565b005b34801561046657600080fd5b5061046f611621565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b0381351690602001356116b7565b604080519115158252519081900360200190f35b34801561053d57600080fd5b5061051d6004803603602081101561055457600080fd5b50356119ce565b34801561056757600080fd5b50610570611cf1565b60408051918252519081900360200190f35b34801561058e57600080fd5b50610597611cf7565b604080516001600160a01b039092168252519081900360200190f35b3480156105bf57600080fd5b50610570611d06565b3480156105d457600080fd5b50610597611d0c565b3480156105e957600080fd5b50610570611d1b565b3480156105fe57600080fd5b50610570611d21565b34801561061357600080fd5b50610570611d27565b34801561062857600080fd5b506106556004803603604081101561063f57600080fd5b50803590602001356001600160a01b0316611d2d565b6040805192835260208301919091528051918290030190f35b61046f6004803603608081101561068457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106b457600080fd5b8201836020820111156106c657600080fd5b803590602001918460018302840111640100000000831117156106e857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561073b57600080fd5b82018360208201111561074d57600080fd5b8035906020019184600183028401116401000000008311171561076f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e6e945050505050565b3480156107bc57600080fd5b5061051d600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135612046565b3480156107ff57600080fd5b506105706123dd565b34801561081457600080fd5b506105976123e3565b34801561082957600080fd5b506108326123f2565b6040805160ff9092168252519081900360200190f35b34801561085457600080fd5b506104586004803603602081101561086b57600080fd5b50356123fb565b34801561087e57600080fd5b5061051d6004803603604081101561089557600080fd5b506001600160a01b038135169060200135612465565b3480156108b757600080fd5b5061051d600480360360408110156108ce57600080fd5b506001600160a01b03813516906020013515156124f9565b3480156108f257600080fd5b5061051d6004803603602081101561090957600080fd5b50356001600160a01b0316612583565b34801561092557600080fd5b50610597612598565b34801561093a57600080fd5b506105976125a7565b34801561094f57600080fd5b5061051d6004803603602081101561096657600080fd5b50356125b6565b34801561097957600080fd5b506104586004803603604081101561099057600080fd5b506001600160a01b038135169060200135612673565b3480156109b257600080fd5b5061051d612c98565b3480156109c757600080fd5b50610570600480360360208110156109de57600080fd5b50356001600160a01b0316612ca8565b3480156109fa57600080fd5b5061057060048036036020811015610a1157600080fd5b50356001600160a01b0316612cc3565b348015610a2d57600080fd5b50610458612cde565b348015610a4257600080fd5b5061045860048036036020811015610a5957600080fd5b5035612d9d565b348015610a6c57600080fd5b50610570612e04565b348015610a8157600080fd5b50610458612e7a565b348015610a9657600080fd5b5061045860048036036040811015610aad57600080fd5b506001600160a01b038135169060200135612f32565b348015610acf57600080fd5b5061045860048036036040811015610ae657600080fd5b506001600160a01b038135169060200135612f9a565b348015610b0857600080fd5b5061045860048036036020811015610b1f57600080fd5b50356130eb565b348015610b3257600080fd5b5061057061313d565b348015610b4757600080fd5b50610597613143565b348015610b5c57600080fd5b50610570613157565b348015610b7157600080fd5b5061057061319c565b61045860048036036040811015610b9057600080fd5b50803590602001356001600160a01b03166131a2565b348015610bb257600080fd5b5061046f613876565b348015610bc757600080fd5b50610458600480360360a0811015610bde57600080fd5b506001600160a01b0381358116916020810135916040820135169060608101351515906080013515156138d7565b348015610c1857600080fd5b50610597613a2d565b348015610c2d57600080fd5b5061051d60048036036040811015610c4457600080fd5b506001600160a01b0381351690602001351515613a3c565b348015610c6857600080fd5b50610458613ac6565b348015610c7d57600080fd5b50610570613b7e565b348015610c9257600080fd5b5061051d60048036036040811015610ca957600080fd5b506001600160a01b038135169060200135613b84565b348015610ccb57600080fd5b5061051d60048036036040811015610ce257600080fd5b506001600160a01b038135169060200135613c6d565b348015610d0457600080fd5b5061065560048036036040811015610d1b57600080fd5b50803590602001356001600160a01b0316613faf565b348015610d3d57600080fd5b5061059760048036036020811015610d5457600080fd5b503561415f565b348015610d6757600080fd5b5061045860048036036020811015610d7e57600080fd5b50356001600160a01b0316614186565b348015610d9a57600080fd5b5061045860048036036020811015610db157600080fd5b50356141f4565b348015610dc457600080fd5b5061051d60048036036020811015610ddb57600080fd5b50356001600160a01b031661428e565b348015610df757600080fd5b506105706142a3565b348015610e0c57600080fd5b5061057060048036036020811015610e2357600080fd5b50356001600160a01b0316614418565b348015610e3f57600080fd5b50610597614595565b348015610e5457600080fd5b5061057060048036036040811015610e6b57600080fd5b506001600160a01b03813581169160200135166145a4565b348015610e8f57600080fd5b5061051d60048036036020811015610ea657600080fd5b50356001600160a01b03166145cf565b348015610ec257600080fd5b5061045860048036036040811015610ed957600080fd5b506001600160a01b0381351690602001356145e4565b348015610efb57600080fd5b5061045860048036036020811015610f1257600080fd5b5035614754565b348015610f2557600080fd5b5061057060048036036020811015610f3c57600080fd5b50356001600160a01b031661483d565b348015610f5857600080fd5b5061059760048036036020811015610f6f57600080fd5b50356001600160a01b031661484f565b348015610f8b57600080fd5b5061057061486a565b348015610fa057600080fd5b5061045860048036036020811015610fb757600080fd5b5035614870565b348015610fca57600080fd5b5061045860048036036020811015610fe157600080fd5b50356001600160a01b03166148c2565b348015610ffd57600080fd5b506104586004803603602081101561101457600080fd5b50356001600160a01b0316614984565b34801561103057600080fd5b506105706004803603602081101561104757600080fd5b50356001600160a01b0316614a34565b34801561106357600080fd5b506104586004803603608081101561107a57600080fd5b506001600160a01b0381358116916020810135909116906040810135151590606001351515614a46565b3480156110b057600080fd5b50610458600480360360208110156110c757600080fd5b50356001600160a01b0316614b56565b3480156110e357600080fd5b5061051d600480360360208110156110fa57600080fd5b50356001600160a01b0316614c71565b34801561111657600080fd5b5061051d614c86565b34801561112b57600080fd5b50610570614c96565b6002600654141561118c576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561141957600c54600160a01b900460ff161561121d57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561129857600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561127f57600080fd5b505af1158015611293573d6000803e3d6000fd5b505050505b60005b601a548110156113b55760186000601a83815481106112b657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156113205750601c6000601a83815481106112f657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156113ad57601e6000601a838154811061133657fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561139457600080fd5b505af11580156113a8573d6000803e3d6000fd5b505050505b60010161129b565b5060095460085442031061141957633b9aca006113d0613157565b11156113fa576113f56113f0601654601754614c9c90919063ffffffff16565b614ce5565b611414565b6114146113f0601654601754614d3990919063ffffffff16565b426008555b8161146b576040805162461bcd60e51b815260206004820152601d60248201527f6d757374207769746864726177206e6f6e2d7a65726f20616d6f756e74000000604482015290519081900360640190fd5b336000908152601160205260409020548211156114c6576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0381166000908152601d602052604090205460ff16611533576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156115865760405162461bcd60e51b815260040180806020018281038252602a815260200180615455602a913960400191505060405180910390fd5b6010546115939083614c9c565b601055336000908152601160205260409020546115b09083614c9c565b336000908152601160209081526040808320939093556024905220546115d69083614d39565b33600081815260246020908152604080832094909455601281528382204390558351868152935191936000805160206153b2833981519152929081900390910190a350506001600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b820191906000526020600020905b81548152906001019060200180831161169057829003601f168201915b5050505050905090565b6000826001600160a01b0381166116cd57600080fd5b6001600160a01b0381163014156116e357600080fd5b600c546001600160a01b03161561196657600c54600160a01b900460ff161561176f57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561175657600080fd5b505af115801561176a573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156117ea57600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156117d157600080fd5b505af11580156117e5573d6000803e3d6000fd5b505050505b60005b601a548110156119075760186000601a838154811061180857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156118725750601c6000601a838154811061184857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156118ff57601e6000601a838154811061188857fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156118e657600080fd5b505af11580156118fa573d6000803e3d6000fd5b505050505b6001016117ed565b5060095460085442031061196657633b9aca00611922613157565b1115611947576119426113f0601654601754614c9c90919063ffffffff16565b611961565b6119616113f0601654601754614d3990919063ffffffff16565b426008555b3360008181526013602090815260408083206001600160a01b03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6022546000906001600160a01b03163314611a1e576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b81611a5a5760405162461bcd60e51b815260040180806020018281038252602281526020018061536f6022913960400191505060405180910390fd5b600982905560005b601a54811015611bc45760186000601a8381548110611a7d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015611ae75750601c6000601a8381548110611abd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b8015611b285750601f6000601a8381548110611aff57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff165b15611bbc57601e6000601a8381548110611b3e57fe5b60009182526020808320909101546001600160a01b03908116845290830193909352604091820181205482516363c7560760e01b81526004810188905292519316926363c7560792602480820193929182900301818387803b158015611ba357600080fd5b505af1158015611bb7573d6000803e3d6000fd5b505050505b600101611a62565b50600c54600160a01b900460ff1615611c3d57600c54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c2457600080fd5b505af1158015611c38573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615611cb557600d54604080516363c7560760e01b81526004810185905290516001600160a01b03909216916363c756079160248082019260009290919082900301818387803b158015611c9c57600080fd5b505af1158015611cb0573d6000803e3d6000fd5b505050505b6040805183815290517ff96993476642ad4471e701dee382f1d8b7947acb089dba94a2f49e477e85c8799181900360200190a15060015b919050565b60175481565b600d546001600160a01b031681565b60075481565b6014546001600160a01b031681565b60205481565b600b5481565b60105490565b60008083611d7d576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b0383166000908152601d602052604090205460ff16611dea576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0383166000908152601b6020526040812054602154611e4391633b9aca0091611e3091600a0a90611e3d90611e369064174876e8009085908d90614d93565b90614dec565b8a90614c9c565b90614d93565b9050611e5f611e5185614418565b611e3083633b9aca00614d93565b925060009150505b9250929050565b6022546060906001600160a01b03163314611ebe576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6060835160001415611ed1575081611f54565b83805190602001208360405160200180836001600160e01b031916815260040182805190602001908083835b60208310611f1c5780518252601f199092019160209182019101611efd565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b60006060876001600160a01b031687846040518082805190602001908083835b60208310611f935780518252601f199092019160209182019101611f74565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b50915091508161203b5760405162461bcd60e51b815260040180806020018281038252603c81526020018061528c603c913960400191505060405180910390fd5b979650505050505050565b6000826001600160a01b03811661205c57600080fd5b6001600160a01b03811630141561207257600080fd5b600c546001600160a01b0316156122f557600c54600160a01b900460ff16156120fe57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156120e557600080fd5b505af11580156120f9573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561217957600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561216057600080fd5b505af1158015612174573d6000803e3d6000fd5b505050505b60005b601a548110156122965760186000601a838154811061219757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1680156122015750601c6000601a83815481106121d757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561228e57601e6000601a838154811061221757fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561227557600080fd5b505af1158015612289573d6000803e3d6000fd5b505050505b60010161217c565b506009546008544203106122f557633b9aca006122b1613157565b11156122d6576122d16113f0601654601754614c9c90919063ffffffff16565b6122f0565b6122f06113f0601654601754614d3990919063ffffffff16565b426008555b6001600160a01b03851660009081526013602090815260408083203384529091529020546123239084614c9c565b6001600160a01b03861660008181526013602090815260408083203384528252808320949094559181526011909152205461235e9084614c9c565b6001600160a01b03808716600090815260116020526040808220939093559086168152205461238d9084614d39565b6001600160a01b0380861660008181526011602090815260409182902094909455805187815290519193928916926000805160206153b283398151915292918290030190a3506001949350505050565b600e5481565b6015546001600160a01b031681565b60055460ff1690565b6022546001600160a01b03163314612448576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600781905560175481101561246257612462600754614ce5565b50565b3360009081526013602090815260408083206001600160a01b03861684529091528120546124939083614d39565b3360008181526013602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060015b92915050565b6022546000906001600160a01b03163314612549576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b50600c80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b601c6020526000908152604090205460ff1681565b6023546001600160a01b031681565b600c546001600160a01b031681565b6022546000906001600160a01b03163314612606576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600d5460408051631d55d14560e11b81526004810185905290516001600160a01b0390921691633aaba28a9160248082019260009290919082900301818387803b15801561265357600080fd5b505af1158015612667573d6000803e3d6000fd5b50600195945050505050565b600260065414156126cb576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561295357600c54600160a01b900460ff161561275c57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274357600080fd5b505af1158015612757573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff16156127d757600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127be57600080fd5b505af11580156127d2573d6000803e3d6000fd5b505050505b60005b601a548110156128f45760186000601a83815481106127f557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561285f5750601c6000601a838154811061283557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b156128ec57601e6000601a838154811061287557fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b1580156128d357600080fd5b505af11580156128e7573d6000803e3d6000fd5b505050505b6001016127da565b5060095460085442031061295357633b9aca0061290f613157565b11156129345761292f6113f0601654601754614c9c90919063ffffffff16565b61294e565b61294e6113f0601654601754614d3990919063ffffffff16565b426008555b6001600160a01b0382166000908152601d602052604090205460ff166129c0576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b600f54336000908152601260205260409020544391011115612a135760405162461bcd60e51b815260040180806020018281038252602a815260200180615455602a913960400191505060405180910390fd5b3360009081526024602052604090205480612a75576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e655642544320746f2072656465656d0000604482015290519081900360640190fd5b80821115612aca576040805162461bcd60e51b815260206004820152601e60248201527f696e73756666696369656e74206f6e655642544320746f2072656465656d0000604482015290519081900360640190fd5b33600090815260246020526040902054612ae49083614c9c565b336000908152602460209081526040808320939093556001600160a01b0386168252601b905290812054602154612b4291633b9aca0091611e3091600a0a90611e3d90612b3b9064174876e8009085908b90614d93565b8890614c9c565b9050612b50611e5185614418565b90506000846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612ba157600080fd5b505afa158015612bb5573d6000803e3d6000fd5b505050506040513d6020811015612bcb57600080fd5b5051821115612c0b5760405162461bcd60e51b81526004018080602001828103825260398152602001806152e86039913960400191505060405180910390fd5b612c16853384614e2e565b33600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291871682820152606082018490526080820183905260a08201869052517fbbbdee62287b5bf3bee13cab60a29ad729cf38109bccbd2a986a11c99b8ca7049181900360c00190a150506001600655505050565b600c54600160a01b900460ff1681565b6001600160a01b031660009081526024602052604090205490565b6001600160a01b031660009081526011602052604090205490565b612ce6614e80565b60055461010090046001600160a01b03908116911614612d4d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6022546001600160a01b03163314612dea576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600e81905560175481111561246257612462600e54614ce5565b600d5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b505afa158015612e5d573d6000803e3d6000fd5b505050506040513d6020811015612e7357600080fd5b5051905090565b6015546001600160a01b03163314612ec4576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60148054601580546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b6022546001600160a01b03163314612f7f576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600a54612f96906001600160a01b03168383614e2e565b5050565b6022546001600160a01b03163314612fe7576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b602083106130335780518252601f199092019160209182019101613014565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613095576040519150601f19603f3d011682016040523d82523d6000602084013e61309a565b606091505b50509050806130e6576040805162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b604482015290519081900360640190fd5b505050565b6022546001600160a01b03163314613138576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b600f55565b60165481565b60055461010090046001600160a01b031690565b600c5460408051638e15f47360e01b815290516000926001600160a01b031691638e15f473916004808301926020929190829003018186803b158015612e4957600080fd5b60085481565b600260065414156131fa576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600655600c546001600160a01b03161561348257600c54600160a01b900460ff161561328b57600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561327257600080fd5b505af1158015613286573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff161561330657600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156132ed57600080fd5b505af1158015613301573d6000803e3d6000fd5b505050505b60005b601a548110156134235760186000601a838154811061332457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16801561338e5750601c6000601a838154811061336457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b1561341b57601e6000601a83815481106133a457fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b15801561340257600080fd5b505af1158015613416573d6000803e3d6000fd5b505050505b600101613309565b5060095460085442031061348257633b9aca0061343e613157565b11156134635761345e6113f0601654601754614c9c90919063ffffffff16565b61347d565b61347d6113f0601654601754614d3990919063ffffffff16565b426008555b6001600160a01b03811660009081526018602052604090205460ff166134ef576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b81613541576040805162461bcd60e51b815260206004820152601960248201527f6d757374206d696e74206e6f6e2d7a65726f20616d6f756e7400000000000000604482015290519081900360640190fd5b600f543360009081526012602052604090205443910111156135945760405162461bcd60e51b815260040180806020018281038252602f8152602001806153d2602f913960400191505060405180910390fd5b6000806135a18484613faf565b91509150826001600160a01b03166370a08231336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156135f257600080fd5b505afa158015613606573d6000803e3d6000fd5b505050506040513d602081101561361c57600080fd5b505182111561365c5760405162461bcd60e51b815260040180806020018281038252602a815260200180615401602a913960400191505060405180910390fd5b600a54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156136a757600080fd5b505afa1580156136bb573d6000803e3d6000fd5b505050506040513d60208110156136d157600080fd5b50518111156137115760405162461bcd60e51b81526004018080602001828103825260288152602001806153216028913960400191505060405180910390fd5b61371d83333085614e84565b600a54613735906001600160a01b0316333084614e84565b602054613759906137529064174876e80090611e30908890614d93565b8590614c9c565b6001600160a01b03841660009081526019602052604090205490945061378f906137529064174876e80090611e30908890614d93565b60105490945061379f9085614d39565b601055336000908152601160205260409020546137bc9085614d39565b3360008181526011602090815260408083209490945583518881529351929391926000805160206153b28339815191529281900390910190a333600081815260126020908152604091829020439055600a5482516001600160a01b0391821681529182019390935291851682820152606082018490526080820183905260a08201869052517feca801b067fae3d181506c21fb55d44a644d16cdb863595643131a7e105b5f019181900360c00190a1505060016006555050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156116ad5780601f10611682576101008083540402835291602001916116ad565b6022546001600160a01b03163314613924576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152601d602052604090205460ff1661399057601a80546001810182556000919091527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b0319166001600160a01b0387161790555b6001600160a01b039485166000908152601d602090815260408083208054600160ff1991821681179092556018845282852080548216909217909155601c83528184208054821696151596909617909555601b825280832096909655601e815285822080546001600160a01b031916959097169490941790955560198352838520859055601f909252919092208054909116911515919091179055565b600a546001600160a01b031681565b6022546000906001600160a01b03163314613a8c576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b50600d80546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055600190565b6023546001600160a01b03163314613b10576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60228054602380546001600160a01b03198084166001600160a01b03838116919091179586905591169091556040805192821680845293909116602083015280517f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d55239281900390910190a150565b600f5481565b3360009081526013602090815260408083206001600160a01b0386168452909152812054808310613bd8573360009081526013602090815260408083206001600160a01b0388168452909152812055613c07565b613be28184614c9c565b3360009081526013602090815260408083206001600160a01b03891684529091529020555b3360008181526013602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b038116613c8357600080fd5b6001600160a01b038116301415613c9957600080fd5b600c546001600160a01b031615613f1c57600c54600160a01b900460ff1615613d2557600c60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d0c57600080fd5b505af1158015613d20573d6000803e3d6000fd5b505050505b600d54600160a01b900460ff1615613da057600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d8757600080fd5b505af1158015613d9b573d6000803e3d6000fd5b505050505b60005b601a54811015613ebd5760186000601a8381548110613dbe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff168015613e285750601c6000601a8381548110613dfe57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff16155b15613eb557601e6000601a8381548110613e3e57fe5b60009182526020808320909101546001600160a01b039081168452908301939093526040918201812054825163a2e6204560e01b8152925193169263a2e6204592600480820193929182900301818387803b158015613e9c57600080fd5b505af1158015613eb0573d6000803e3d6000fd5b505050505b600101613da3565b50600954600854420310613f1c57633b9aca00613ed8613157565b1115613efd57613ef86113f0601654601754614c9c90919063ffffffff16565b613f17565b613f176113f0601654601754614d3990919063ffffffff16565b426008555b33600090815260116020526040902054613f369084614c9c565b33600090815260116020526040808220929092556001600160a01b03861681522054613f629084614d39565b6001600160a01b0385166000818152601160209081526040918290209390935580518681529051919233926000805160206153b28339815191529281900390910190a35060019392505050565b60008083613fff576040805162461bcd60e51b81526020600482015260186024820152771b5d5cdd081d5cd9481d985b1a59081bdb99505b5bdd5b9d60421b604482015290519081900360640190fd5b6001600160a01b03831660009081526018602052604090205460ff1661406c576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e20616363657074656420636f6c6c61746572616c0000604482015290519081900360640190fd5b6000614076612e04565b905060006140c96009600a0a611e30601b6000896001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e3d600754611e306017548d614d9390919063ffffffff16565b90506140d7611e5186614418565b600c549091506001600160a01b03166140f757925060009150611e679050565b6000614120600754611e30614119601754600754614c9c90919063ffffffff16565b8a90614d93565b905060006141506009600a0a611e30600b54600a0a611e3d88611e30633b9aca0089614d9390919063ffffffff16565b92989297509195505050505050565b601a818154811061416c57fe5b6000918252602090912001546001600160a01b0316905081565b6022546001600160a01b031633146141d3576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601860205260409020805460ff19169055565b6014546001600160a01b03163314614253576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b60218190556040805182815290517fa01cb43de193eb3a80b373fb949c09d0eedb01f39f3b6063ace0cb6b067cc1239181900360200190a150565b601f6020526000908152604090205460ff1681565b600080805b601a548110156144125760006001600160a01b0316601a82815481106142ca57fe5b6000918252602090912001546001600160a01b03161461440a57614405633b9aca00611e30614319601a85815481106142ff57fe5b6000918252602090912001546001600160a01b0316614418565b611e3d601b6000601a888154811061432d57fe5b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002054600a0a611e30633b9aca00601a898154811061438457fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b1580156143d357600080fd5b505afa1580156143e7573d6000803e3d6000fd5b505050506040513d60208110156143fd57600080fd5b505190614d93565b820191505b6001016142a8565b50905090565b6001600160a01b0381166000908152601d602052604081205460ff16614485576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420626520616e206578697374696e6720636f6c6c61746572616c0000604482015290519081900360640190fd5b6001600160a01b0382166000908152601c602052604090205460ff161561451257816001600160a01b0316638fe605ad6040518163ffffffff1660e01b815260040160206040518083038186803b1580156144df57600080fd5b505afa1580156144f3573d6000803e3d6000fd5b505050506040513d602081101561450957600080fd5b50519050611cec565b6001600160a01b038083166000908152601e6020908152604091829020548251638e15f47360e01b81529251931692638e15f473926004808201939291829003018186803b15801561456357600080fd5b505afa158015614577573d6000803e3d6000fd5b505050506040513d602081101561458d57600080fd5b505192915050565b6022546001600160a01b031681565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205490565b601d6020526000908152604090205460ff1681565b6022546001600160a01b03163314614631576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff16614693576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b64174876e8008111156146e1576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b6001600160a01b03821660008181526019602090815260409182902054825193845290830152818101839052517fcf85a5b7f4f21d4a913cf58eebe5679c7313cc3a20de1d2cd87f22a210e05fab9181900360600190a16001600160a01b03909116600090815260196020526040902055565b6014546001600160a01b031633146147b3576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b64174876e800811115614801576040805162461bcd60e51b8152602060048201526011602482015270119959481b5d5cdd081899481d985b1a59607a1b604482015290519081900360640190fd5b60208181556040805183815290517f6f87524b705f31734b7940b88671f37a3291d7b961b69da31bcabf882b2531da929181900390910190a150565b60196020526000908152604090205481565b601e602052600090815260409020546001600160a01b031681565b60215481565b6022546001600160a01b031633146148bd576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b601655565b6014546001600160a01b03163314614921576040805162461bcd60e51b815260206004820152601c60248201527f4143434553533a206f6e6c79204963686920676f7665726e616e636500000000604482015290519081900360640190fd5b601580546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b6022546001600160a01b031633146149d1576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b602380546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6ea9654b538fab06e45f7940f0aa88b14cb8aca48a29d4e0b7626009fb7dc514929181900390910190a15050565b601b6020526000908152604090205481565b6022546001600160a01b03163314614a93576040805162461bcd60e51b815260206004820152601d60248201526000805160206152c8833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526018602052604090205460ff16614af5576040805162461bcd60e51b81526020600482015260126024820152711a5b9d985b1a590818dbdb1b185d195c985b60721b604482015290519081900360640190fd5b6001600160a01b039384166000908152601c60209081526040808320805495151560ff19968716179055601e82528083208054969097166001600160a01b031990961695909517909555601f90945291909220805491151591909216179055565b614b5e614e80565b60055461010090046001600160a01b03908116911614614bc5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116614c0a5760405162461bcd60e51b81526004018080602001828103825260268152602001806152666026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60186020526000908152604090205460ff1681565b600d54600160a01b900460ff1681565b60095481565b6000614cde83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614ee4565b9392505050565b6007548111158015614cf95750600e548110155b156124625760178190556040805182815290517f2fbb30255fd6bab4bd8c21173ab8290d05fcef04343b7d0190495d90e6866c569181900360200190a150565b600082820183811015614cde576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082614da2575060006124f3565b82820282848281614daf57fe5b0414614cde5760405162461bcd60e51b81526004018080602001828103825260218152602001806153916021913960400191505060405180910390fd5b6000614cde83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614f7b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526130e6908490614fe0565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052614ede908590614fe0565b50505050565b60008184841115614f735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f38578181015183820152602001614f20565b50505050905090810190601f168015614f655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183614fca5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614f38578181015183820152602001614f20565b506000838581614fd657fe5b0495945050505050565b6060615035826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150919092919063ffffffff16565b8051909150156130e65780806020019051602081101561505457600080fd5b50516130e65760405162461bcd60e51b815260040180806020018281038252602a81526020018061542b602a913960400191505060405180910390fd5b60606150a084846000856150a8565b949350505050565b6060824710156150e95760405162461bcd60e51b81526004018080602001828103825260268152602001806153496026913960400191505060405180910390fd5b6150f2856151f9565b615143576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106151825780518252601f199092019160209182019101615163565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146151e4576040519150601f19603f3d011682016040523d82523d6000602084013e6151e9565b606091505b509150915061203b8282866151ff565b3b151590565b6060831561520e575081614cde565b82511561521e5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315614f38578181015183820152602001614f2056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573736f6e65564254433a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e4143434553533a206f6e6c79206f6e654c5020676f7665726e616e6365000000696e73756666696369656e7420636f6c6c61746572616c207265736572766573202d2074727920616e6f7468657220636f6c6c61746572616c73656e6465722068617320696e73756666696369656e74207374696d756c75732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6d696e696d756d20726566726573682074696d65206d7573742062652076616c6964536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616374696f6e20746f6f20736f6f6e202d20706c656173652077616974206120666577206d6f726520626c6f636b7373656e6465722068617320696e73756666696369656e7420636f6c6c61746572616c2062616c616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564616374696f6e20746f6f20736f6f6e202d20706c65617365207761697420612066657720626c6f636b73a26469706673582212203014ba44994280cd80d14985aaeea30790f6ffec9608ec2b9123d163773ae76664736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000e1406825186d63980fd6e2ec61888f7b91c4bae40000000000000000000000000000000000000000000000000000000000000012
-----Decoded View---------------
Arg [0] : reserveRatio_ (uint256): 100000000000
Arg [1] : stimulus_ (address): 0xe1406825186D63980fd6e2eC61888f7B91C4bAe4
Arg [2] : stimulusDecimals_ (uint256): 18
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [1] : 000000000000000000000000e1406825186d63980fd6e2ec61888f7b91c4bae4
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Deployed Bytecode Sourcemap
36942:29590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61261:872;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61261:872:0;;;;;;-1:-1:-1;;;;;61261:872:0;;:::i;:::-;;25333:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50214:304;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50214:304:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53050:890;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53050:890:0;;:::i;39015:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37736:29;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;37736:29:0;;;;;;;;;;;;;;37057:32;;;;;;;;;;;;;:::i;38724:18::-;;;;;;;;;;;;;:::i;42878:22::-;;;;;;;;;;;;;:::i;37489:31::-;;;;;;;;;;;;;:::i;47347:141::-;;;;;;;;;;;;;:::i;58117:601::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58117:601:0;;;;;;-1:-1:-1;;;;;58117:601:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;65879:648;;;;;;;;;;;;;;;;-1:-1:-1;;;;;65879:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65879:648:0;;;;;;;;-1:-1:-1;65879:648:0;;-1:-1:-1;;65879:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65879:648:0;;-1:-1:-1;65879:648:0;;-1:-1:-1;;;;;65879:648:0:i;49116:456::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49116:456:0;;;;;;;;;;;;;;;;;:::i;38056:32::-;;;;;;;;;;;;;:::i;38796:25::-;;;;;;;;;;;;;:::i;26260:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55112:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55112:213:0;;:::i;50891:330::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50891:330:0;;;;;;;;:::i;51997:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51997:238:0;;;;;;;;;;:::i;41879:56::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41879:56:0;-1:-1:-1;;;;;41879:56:0;;:::i;43404:27::-;;;;;;;;;;;;;:::i;37578:29::-;;;;;;;;;;;;;:::i;52489:216::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52489:216:0;;:::i;62710:1476::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;62710:1476:0;;;;;;;;:::i;37652:35::-;;;;;;;;;;;;;:::i;45905:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45905:156:0;-1:-1:-1;;;;;45905:156:0;;:::i;47609:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47609:155:0;-1:-1:-1;;;;;47609:155:0;;:::i;35870:148::-;;;;;;;;;;;;;:::i;54891:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54891:213:0;;:::i;52783:172::-;;;;;;;;;;;;;:::i;56350:235::-;;;;;;;;;;;;;:::i;65115:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;65115:197:0;;;;;;;;:::i;64731:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;64731:209:0;;;;;;;;:::i;55333:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55333:115:0;;:::i;38913:30::-;;;;;;;;;;;;;:::i;35228:79::-;;;;;;;;;;;;;:::i;47113:163::-;;;;;;;;;;;;;:::i;37227:33::-;;;;;;;;;;;;;:::i;58858:1752::-;;;;;;;;;;;;;;;;-1:-1:-1;58858:1752:0;;;;;;-1:-1:-1;;;;;58858:1752:0;;:::i;25535:87::-;;;;;;;;;;;;;:::i;43846:712::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43846:712:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37416:23::-;;;;;;;;;;;;;:::i;52243:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52243:238:0;;;;;;;;;;:::i;55776:261::-;;;;;;;;;;;;;:::i;38095:24::-;;;;;;;;;;;;;:::i;51483:506::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51483:506:0;;;;;;;;:::i;47990:371::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;47990:371:0;;;;;;;;:::i;57009:1100::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57009:1100:0;;;;;;-1:-1:-1;;;;;57009:1100:0;;:::i;39427:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39427:32:0;;:::i;45725:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45725:146:0;-1:-1:-1;;;;;45725:146:0;;:::i;60961:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60961:153:0;;:::i;42747:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42747:58:0;-1:-1:-1;;;;;42747:58:0;;:::i;46489:565::-;;;;;;;;;;;;;:::i;46113:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46113:368:0;-1:-1:-1;;;;;46113:368:0;;:::i;43377:20::-;;;;;;;;;;;;;:::i;48668:186::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48668:186:0;;;;;;;;;;:::i;42000:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42000:57:0;-1:-1:-1;;;;;42000:57:0;;:::i;44568:374::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44568:374:0;;;;;;;;:::i;60684:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60684:203:0;;:::i;39299:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39299:53:0;-1:-1:-1;;;;;39299:53:0;;:::i;42635:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42635:52:0;-1:-1:-1;;;;;42635:52:0;;:::i;42907:26::-;;;;;;;;;;;;;:::i;45021:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45021:134:0;;:::i;56109:233::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56109:233:0;-1:-1:-1;;;;;56109:233:0;;:::i;55520:248::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55520:248:0;-1:-1:-1;;;;;55520:248:0;;:::i;41755:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41755:54:0;-1:-1:-1;;;;;41755:54:0;;:::i;45214:427::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45214:427:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;36173:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36173:244:0;-1:-1:-1;;;;;36173:244:0;;:::i;39241:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39241:51:0;-1:-1:-1;;;;;39241:51:0;;:::i;37799:35::-;;;;;;;;;;;;;:::i;37330:33::-;;;;;;;;;;;;;:::i;61261:872::-;21336:1;21942:7;;:19;;21934:63;;;;;-1:-1:-1;;;21934:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21336:1;22075:7;:18;39730:14:::1;::::0;-1:-1:-1;;;;;39730:14:0::1;39722:37:::0;39718:1069:::1;;39868:23;::::0;-1:-1:-1;;;39868:23:0;::::1;;;39864:70;;;39910:14;;;;;;;;;-1:-1:-1::0;;;;;39910:14:0::1;-1:-1:-1::0;;;;;39893:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39864:70;39955:23;::::0;-1:-1:-1;;;39955:23:0;::::1;;;39951:70;;;39997:14;;;;;;;;;-1:-1:-1::0;;;;;39997:14:0::1;-1:-1:-1::0;;;;;39980:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39951:70;40043:6;40038:239;40059:15;:22:::0;40055:26;::::1;40038:239;;;40110:18;:38;40129:15;40145:1;40129:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40129:18:0::1;40110:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40153:23;:43;40177:15;40193:1;40177:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40177:18:0::1;40153:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40152:44;40110:86;40106:155;;;40215:16;:36;40232:15;40248:1;40232:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40232:18:0;;::::1;40215:36:::0;;;;::::1;::::0;;;;;;;;;;;40198:63;;-1:-1:-1;;;40198:63:0;;;;40215:36;::::1;::::0;40198:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40232:18;40198:63;;;;;;40232:18;40215:36;40198:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40106:155;40083:3;;40038:239;;;;40400:18;;40378;;40360:15;:36;:58;40356:420;;40499:11;40480:16;:14;:16::i;:::-;:30;40476:228;;;40535:50;40551:33;40568:15;;40551:12;;:16;;:33;;;;:::i;:::-;40535:15;:50::i;:::-;40476:228;;;40634:50;40650:33;40667:15;;40650:12;;:16;;:33;;;;:::i;40634:50::-;40745:15;40724:18;:36:::0;40356:420:::1;61431:14:::0;61423:56:::2;;;::::0;;-1:-1:-1;;;61423:56:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;61524:10;61511:24;::::0;;;:12:::2;:24;::::0;;;;;61498:37;::::2;;61490:70;;;::::0;;-1:-1:-1;;;61490:70:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;61490:70:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;61579:36:0;::::2;;::::0;;;:24:::2;:36;::::0;;;;;::::2;;61571:79;;;::::0;;-1:-1:-1;;;61571:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;61694:9;::::0;61680:10:::2;61670:21;::::0;;;:9:::2;:21;::::0;;;;;61708:12:::2;61670:33:::0;::::2;61669:51;;61661:106;;;;-1:-1:-1::0;;;61661:106:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61822:12;::::0;:27:::2;::::0;61839:9;61822:16:::2;:27::i;:::-;61807:12;:42:::0;61900:10:::2;61887:24;::::0;;;:12:::2;:24;::::0;;;;;:39:::2;::::0;61916:9;61887:28:::2;:39::i;:::-;61873:10;61860:24;::::0;;;:12:::2;:24;::::0;;;;;;;:66;;;;61971:17:::2;:29:::0;;;;:44:::2;::::0;62005:9;61971:33:::2;:44::i;:::-;61957:10;61939:29;::::0;;;:17:::2;:29;::::0;;;;;;;:76;;;;62028:9:::2;:21:::0;;;;;62052:12:::2;62028:36:::0;;62080:45;;;;;;;61939:29;;-1:-1:-1;;;;;;;;;;;62080:45:0;;;;;;;;;::::2;-1:-1:-1::0;;21292:1:0;22254:7;:22;61261:872::o;25333:83::-;25403:5;25396:12;;;;;;;;-1:-1:-1;;25396:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25370:13;;25396:12;;25403:5;;25396:12;;25403:5;25396:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25333:83;:::o;50214:304::-;50374:4;50321:7;-1:-1:-1;;;;;38341:18:0;;38333:27;;;;;;-1:-1:-1;;;;;38379:19:0;;38393:4;38379:19;;38371:28;;;;;;39730:14:::1;::::0;-1:-1:-1;;;;;39730:14:0::1;39722:37:::0;39718:1069:::1;;39868:23;::::0;-1:-1:-1;;;39868:23:0;::::1;;;39864:70;;;39910:14;;;;;;;;;-1:-1:-1::0;;;;;39910:14:0::1;-1:-1:-1::0;;;;;39893:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39864:70;39955:23;::::0;-1:-1:-1;;;39955:23:0;::::1;;;39951:70;;;39997:14;;;;;;;;;-1:-1:-1::0;;;;;39997:14:0::1;-1:-1:-1::0;;;;;39980:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39951:70;40043:6;40038:239;40059:15;:22:::0;40055:26;::::1;40038:239;;;40110:18;:38;40129:15;40145:1;40129:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40129:18:0::1;40110:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40153:23;:43;40177:15;40193:1;40177:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40177:18:0::1;40153:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40152:44;40110:86;40106:155;;;40215:16;:36;40232:15;40248:1;40232:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40232:18:0;;::::1;40215:36:::0;;;;::::1;::::0;;;;;;;;;;;40198:63;;-1:-1:-1;;;40198:63:0;;;;40215:36;::::1;::::0;40198:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40232:18;40198:63;;;;;;40232:18;40215:36;40198:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40106:155;40083:3;;40038:239;;;;40400:18;;40378;;40360:15;:36;:58;40356:420;;40499:11;40480:16;:14;:16::i;:::-;:30;40476:228;;;40535:50;40551:33;40568:15;;40551:12;;:16;;:33;;;;:::i;40535:50::-;40476:228;;;40634:50;40650:33;40667:15;;40650:12;;:16;;:33;;;;:::i;40634:50::-;40745:15;40724:18;:36:::0;40356:420:::1;50408:10:::2;50396:23;::::0;;;:11:::2;:23;::::0;;;;;;;-1:-1:-1;;;;;50396:32:0;::::2;::::0;;;;;;;;;;:40;;;50452:36;;;;;;;50396:32;;50408:10;50452:36:::2;::::0;;;;;;;;;::::2;-1:-1:-1::0;50506:4:0::2;::::0;50214:304;-1:-1:-1;;;50214:304:0:o;53050:890::-;43310:5;;53149:4;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;53179:9;53171:56:::1;;;;-1:-1:-1::0;;;53171:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53240:18;:25:::0;;;53319:6:::1;53314:292;53335:15;:22:::0;53331:26;::::1;53314:292;;;53382:18;:38;53401:15;53417:1;53401:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53401:18:0::1;53382:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;53425:23;:43;53449:15;53465:1;53449:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53449:18:0::1;53425:43:::0;;;::::1;::::0;;;;;;;;;::::1;;53424:44;53382:86;:135;;;;;53472:25;:45;53498:15;53514:1;53498:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53498:18:0::1;53472:45:::0;;;::::1;::::0;;;;;;;;;::::1;;53382:135;53378:216;;;53536:16;:36;53553:15;53569:1;53553:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;53553:18:0;;::::1;53536:36:::0;;;;::::1;::::0;;;;;;;;;;;53519:75;;-1:-1:-1;;;53519:75:0;;::::1;::::0;::::1;::::0;;;;;53536:36;::::1;::::0;53519:69:::1;::::0;:75;;;;;53553:18;53519:75;;;;;;53553:18;53536:36;53519:75;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53378:216;53359:3;;53314:292;;;-1:-1:-1::0;53622:23:0::1;::::0;-1:-1:-1;;;53622:23:0;::::1;;;53618:82;;;53664:14;::::0;53647:53:::1;::::0;;-1:-1:-1;;;53647:53:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;53664:14:0;;::::1;::::0;53647:47:::1;::::0;:53;;;;;53664:14:::1;::::0;53647:53;;;;;;;;53664:14;;53647:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53618:82;53717:23;::::0;-1:-1:-1;;;53717:23:0;::::1;;;53713:82;;;53759:14;::::0;53742:53:::1;::::0;;-1:-1:-1;;;53742:53:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;53759:14:0;;::::1;::::0;53742:47:::1;::::0;:53;;;;;53759:14:::1;::::0;53742:53;;;;;;;;53759:14;;53742:53;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53713:82;53883:27;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;53928:4:0::1;43360:1;53050:890:::0;;;:::o;39015:27::-;;;;:::o;37736:29::-;;;-1:-1:-1;;;;;37736:29:0;;:::o;37057:32::-;;;;:::o;38724:18::-;;;-1:-1:-1;;;;;38724:18:0;;:::o;42878:22::-;;;;:::o;37489:31::-;;;;:::o;47347:141::-;47468:12;;47347:141;:::o;58117:601::-;58232:7;;58274:14;58266:51;;;;;-1:-1:-1;;;58266:51:0;;;;;;;;;;;;-1:-1:-1;;;58266:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;58336:36:0;;;;;;:24;:36;;;;;;;;58328:79;;;;;-1:-1:-1;;;58328:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58525:30:0;;58420:24;58525:30;;;:18;:30;;;;;;58475:11;;58447:129;;58561:14;;58447:109;;58561:2;58519:36;;58447:67;;58461:52;;58492:20;;58447:109;;58461:9;;:13;:26::i;:::-;:30;;:52::i;:::-;58447:9;;:13;:67::i;:::-;:71;;:109::i;:129::-;58420:156;;58606:63;58640:28;58657:10;58640:16;:28::i;:::-;58606:29;:16;58627:7;58606:20;:29::i;:63::-;58587:82;-1:-1:-1;58708:1:0;;-1:-1:-1;;58117:601:0;;;;;;:::o;65879:648::-;43310:5;;66012:12;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;66037:21:::1;66081:9;66075:23;66102:1;66075:28;66071:179;;;-1:-1:-1::0;66131:4:0;66071:179:::1;;;66219:9;66203:27;;;;;;66233:4;66179:59;;;;;;-1:-1:-1::0;;;;;66179:59:0::1;;;;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;66179:59:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66168:70;;66071:179;66323:12;66337:23;66364:6;-1:-1:-1::0;;;;;66364:11:0::1;66382:5;66389:8;66364:34;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;66364:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66322:76;;;;66417:7;66409:80;;;;-1:-1:-1::0;;;66409:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66509:10:::0;65879:648;-1:-1:-1;;;;;;;65879:648:0:o;49116:456::-;49285:4;49237:2;-1:-1:-1;;;;;38341:18:0;;38333:27;;;;;;-1:-1:-1;;;;;38379:19:0;;38393:4;38379:19;;38371:28;;;;;;39730:14:::1;::::0;-1:-1:-1;;;;;39730:14:0::1;39722:37:::0;39718:1069:::1;;39868:23;::::0;-1:-1:-1;;;39868:23:0;::::1;;;39864:70;;;39910:14;;;;;;;;;-1:-1:-1::0;;;;;39910:14:0::1;-1:-1:-1::0;;;;;39893:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39864:70;39955:23;::::0;-1:-1:-1;;;39955:23:0;::::1;;;39951:70;;;39997:14;;;;;;;;;-1:-1:-1::0;;;;;39997:14:0::1;-1:-1:-1::0;;;;;39980:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39951:70;40043:6;40038:239;40059:15;:22:::0;40055:26;::::1;40038:239;;;40110:18;:38;40129:15;40145:1;40129:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40129:18:0::1;40110:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40153:23;:43;40177:15;40193:1;40177:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40177:18:0::1;40153:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40152:44;40110:86;40106:155;;;40215:16;:36;40232:15;40248:1;40232:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40232:18:0;;::::1;40215:36:::0;;;;::::1;::::0;;;;;;;;;;;40198:63;;-1:-1:-1;;;40198:63:0;;;;40215:36;::::1;::::0;40198:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40232:18;40198:63;;;;;;40232:18;40215:36;40198:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40106:155;40083:3;;40038:239;;;;40400:18;;40378;;40360:15;:36;:58;40356:420;;40499:11;40480:16;:14;:16::i;:::-;:30;40476:228;;;40535:50;40551:33;40568:15;;40551:12;;:16;;:33;;;;:::i;40535:50::-;40476:228;;;40634:50;40650:33;40667:15;;40650:12;;:16;;:33;;;;:::i;40634:50::-;40745:15;40724:18;:36:::0;40356:420:::1;-1:-1:-1::0;;;;;49339:17:0;::::2;;::::0;;;:11:::2;:17;::::0;;;;;;;49357:10:::2;49339:29:::0;;;;;;;;:40:::2;::::0;49373:5;49339:33:::2;:40::i;:::-;-1:-1:-1::0;;;;;49307:17:0;::::2;;::::0;;;:11:::2;:17;::::0;;;;;;;49325:10:::2;49307:29:::0;;;;;;;:72;;;;49413:18;;;:12:::2;:18:::0;;;;;:29:::2;::::0;49436:5;49413:22:::2;:29::i;:::-;-1:-1:-1::0;;;;;49392:18:0;;::::2;;::::0;;;:12:::2;:18;::::0;;;;;:50;;;;49472:16;;::::2;::::0;;;;:27:::2;::::0;49493:5;49472:20:::2;:27::i;:::-;-1:-1:-1::0;;;;;49453:16:0;;::::2;;::::0;;;:12:::2;:16;::::0;;;;;;;;:46;;;;49515:25;;;;;;;49453:16;;49515:25;;::::2;::::0;-1:-1:-1;;;;;;;;;;;49515:25:0;;;;;;;::::2;-1:-1:-1::0;49560:4:0::2;::::0;49116:456;-1:-1:-1;;;;49116:456:0:o;38056:32::-;;;;:::o;38796:25::-;;;-1:-1:-1;;;;;38796:25:0;;:::o;26260:83::-;26326:9;;;;26260:83;:::o;55112:213::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;55210:17:::1;:24:::0;;;55269:12:::1;::::0;55249:32;::::1;55245:72;;;55283:34;55299:17;;55283:15;:34::i;:::-;55112:213:::0;:::o;50891:330::-;51076:10;51007:4;51064:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51064:32:0;;;;;;;;;;:48;;51101:10;51064:36;:48::i;:::-;51041:10;51029:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51029:32:0;;;;;;;;;;;;:83;;;51128:63;;;;;;51029:32;;51128:63;;;;;;;;;;;-1:-1:-1;51209:4:0;50891:330;;;;;:::o;51997:238::-;43310:5;;52111:4;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;-1:-1:-1;52133:14:0::1;:24:::0;;-1:-1:-1;;;;;;52133:24:0::1;-1:-1:-1::0;;;;;52133:24:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;52168:35:0::1;-1:-1:-1::0;;;52168:35:0;::::1;;::::0;;;::::1;;::::0;;-1:-1:-1;;51997:238:0:o;41879:56::-;;;;;;;;;;;;;;;:::o;43404:27::-;;;-1:-1:-1;;;;;43404:27:0;;:::o;37578:29::-;;;-1:-1:-1;;;;;37578:29:0;;:::o;52489:216::-;43310:5;;52595:4;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;52634:14:::1;::::0;52617:56:::1;::::0;;-1:-1:-1;;;52617:56:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52634:14:0;;::::1;::::0;52617:47:::1;::::0;:56;;;;;52634:14:::1;::::0;52617:56;;;;;;;;52634:14;;52617:56;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;52693:4:0::1;::::0;52489:216;-1:-1:-1;;;;;52489:216:0:o;62710:1476::-;21336:1;21942:7;;:19;;21934:63;;;;;-1:-1:-1;;;21934:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21336:1;22075:7;:18;39730:14:::1;::::0;-1:-1:-1;;;;;39730:14:0::1;39722:37:::0;39718:1069:::1;;39868:23;::::0;-1:-1:-1;;;39868:23:0;::::1;;;39864:70;;;39910:14;;;;;;;;;-1:-1:-1::0;;;;;39910:14:0::1;-1:-1:-1::0;;;;;39893:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39864:70;39955:23;::::0;-1:-1:-1;;;39955:23:0;::::1;;;39951:70;;;39997:14;;;;;;;;;-1:-1:-1::0;;;;;39997:14:0::1;-1:-1:-1::0;;;;;39980:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39951:70;40043:6;40038:239;40059:15;:22:::0;40055:26;::::1;40038:239;;;40110:18;:38;40129:15;40145:1;40129:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40129:18:0::1;40110:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40153:23;:43;40177:15;40193:1;40177:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40177:18:0::1;40153:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40152:44;40110:86;40106:155;;;40215:16;:36;40232:15;40248:1;40232:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40232:18:0;;::::1;40215:36:::0;;;;::::1;::::0;;;;;;;;;;;40198:63;;-1:-1:-1;;;40198:63:0;;;;40215:36;::::1;::::0;40198:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40232:18;40198:63;;;;;;40232:18;40215:36;40198:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40106:155;40083:3;;40038:239;;;;40400:18;;40378;;40360:15;:36;:58;40356:420;;40499:11;40480:16;:14;:16::i;:::-;:30;40476:228;;;40535:50;40551:33;40568:15;;40551:12;;:16;;:33;;;;:::i;40535:50::-;40476:228;;;40634:50;40650:33;40667:15;;40650:12;;:16;;:33;;;;:::i;40634:50::-;40745:15;40724:18;:36:::0;40356:420:::1;-1:-1:-1::0;;;;;62857:36:0;::::2;;::::0;;;:24:::2;:36;::::0;;;;;::::2;;62849:79;;;::::0;;-1:-1:-1;;;62849:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;62972:9;::::0;62958:10:::2;62948:21;::::0;;;:9:::2;:21;::::0;;;;;62986:12:::2;62948:33:::0;::::2;62947:51;;62939:106;;;;-1:-1:-1::0;;;62939:106:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63096:10;63058:17;63078:29:::0;;;:17:::2;:29;::::0;;;;;63126:14;63118:57:::2;;;::::0;;-1:-1:-1;;;63118:57:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63204:9;63194:6;:19;;63186:62;;;::::0;;-1:-1:-1;;;63186:62:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;63311:10;63293:29;::::0;;;:17:::2;:29;::::0;;;;;:41:::2;::::0;63327:6;63293:33:::2;:41::i;:::-;63279:10;63261:29;::::0;;;:17:::2;:29;::::0;;;;;;;:73;;;;-1:-1:-1;;;;;63517:30:0;::::2;::::0;;:18:::2;:30:::0;;;;;;63467:11:::2;::::0;63445:123:::2;::::0;63553:14;;63445:103:::2;::::0;63553:2:::2;63511:36;::::0;63445:61:::2;::::0;63456:49:::2;::::0;63484:20;;63445:103;;63456:6;;:10:::2;:23::i;:49::-;63445:6:::0;;:10:::2;:61::i;:123::-;63418:150;;63598:63;63632:28;63649:10;63632:16;:28::i;63598:63::-;63579:82;;63674:22;63844:10;-1:-1:-1::0;;;;;63837:28:0::2;;63874:4;63837:43;;;;;;;;;;;;;-1:-1:-1::0;;;;;63837:43:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;63837:43:0;63817:63;::::2;;63809:133;;;;-1:-1:-1::0;;;63809:133:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63955:72;63985:10;63998;64010:16;63955:22;:72::i;:::-;64050:10;64040:21;::::0;;;:9:::2;:21;::::0;;;;;;;;64064:12:::2;64040:36:::0;;64103:8:::2;::::0;64094:84;;-1:-1:-1;;;;;64103:8:0;;::::2;64094:84:::0;;;;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;;21292:1:0;22254:7;:22;-1:-1:-1;;;62710:1476:0:o;37652:35::-;;;-1:-1:-1;;;37652:35:0;;;;;:::o;45905:156::-;-1:-1:-1;;;;;46029:24:0;45997:7;46029:24;;;:17;:24;;;;;;;45905:156::o;47609:155::-;-1:-1:-1;;;;;47739:17:0;47707:7;47739:17;;;:12;:17;;;;;;;47609:155::o;35870:148::-;35450:12;:10;:12::i;:::-;35440:6;;;;;-1:-1:-1;;;;;35440:6:0;;;:22;;;35432:67;;;;;-1:-1:-1;;;35432:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35961:6:::1;::::0;35940:40:::1;::::0;35977:1:::1;::::0;35961:6:::1;::::0;::::1;-1:-1:-1::0;;;;;35961:6:0::1;::::0;35940:40:::1;::::0;35977:1;;35940:40:::1;35991:6;:19:::0;;-1:-1:-1;;;;;;35991:19:0::1;::::0;;35870:148::o;54891:213::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;54989:17:::1;:24:::0;;;55048:12:::1;::::0;55028:32;::::1;55024:72;;;55062:34;55078:17;;55062:15;:34::i;52783:172::-:0;52906:14;;52889:49;;;-1:-1:-1;;;52889:49:0;;;;52857:7;;-1:-1:-1;;;;;52906:14:0;;52889:47;;:49;;;;;;;;;;;;;;52906:14;52889:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52889:49:0;;-1:-1:-1;52783:172:0;:::o;56350:235::-;56427:10;;-1:-1:-1;;;;;56427:10:0;56413;:24;56405:45;;;;;-1:-1:-1;;;56405:45:0;;;;;;;;;;;;-1:-1:-1;;;56405:45:0;;;;;;;;;;;;;;;56478:3;;;56498:10;;;-1:-1:-1;;;;;;56492:16:0;;;-1:-1:-1;;;;;56498:10:0;;;56492:16;;;;;;;;56519:23;;;;;56558:19;;;56478:3;;;56558:19;;;56573:3;;;;56558:19;;;;;;;;;;;;;;;;56350:235;:::o;65115:197::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;65276:8:::1;::::0;65246:58:::1;::::0;-1:-1:-1;;;;;65276:8:0::1;65287::::0;65297:6;65246:22:::1;:58::i;:::-;65115:197:::0;;:::o;64731:209::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;64869:12:::1;::::0;;64831::::1;64869::::0;;;::::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;64848:7:0;::::1;::::0;64862:5;;64848:34:::1;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;64848:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64830:52;;;64901:7;64893:39;;;::::0;;-1:-1:-1;;;64893:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;64893:39:0;;;;;;;;;;;;;::::1;;43360:1;64731:209:::0;;:::o;55333:115::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;55424:9:::1;:16:::0;55333:115::o;38913:30::-;;;;:::o;35228:79::-;35293:6;;;;;-1:-1:-1;;;;;35293:6:0;;35228:79::o;47113:163::-;47236:14;;47219:49;;;-1:-1:-1;;;47219:49:0;;;;47187:7;;-1:-1:-1;;;;;47236:14:0;;47219:47;;:49;;;;;;;;;;;;;;47236:14;47219:49;;;;;;;;;;37227:33;;;;:::o;58858:1752::-;21336:1;21942:7;;:19;;21934:63;;;;;-1:-1:-1;;;21934:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21336:1;22075:7;:18;39730:14:::1;::::0;-1:-1:-1;;;;;39730:14:0::1;39722:37:::0;39718:1069:::1;;39868:23;::::0;-1:-1:-1;;;39868:23:0;::::1;;;39864:70;;;39910:14;;;;;;;;;-1:-1:-1::0;;;;;39910:14:0::1;-1:-1:-1::0;;;;;39893:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39864:70;39955:23;::::0;-1:-1:-1;;;39955:23:0;::::1;;;39951:70;;;39997:14;;;;;;;;;-1:-1:-1::0;;;;;39997:14:0::1;-1:-1:-1::0;;;;;39980:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39951:70;40043:6;40038:239;40059:15;:22:::0;40055:26;::::1;40038:239;;;40110:18;:38;40129:15;40145:1;40129:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40129:18:0::1;40110:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40153:23;:43;40177:15;40193:1;40177:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40177:18:0::1;40153:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40152:44;40110:86;40106:155;;;40215:16;:36;40232:15;40248:1;40232:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40232:18:0;;::::1;40215:36:::0;;;;::::1;::::0;;;;;;;;;;;40198:63;;-1:-1:-1;;;40198:63:0;;;;40215:36;::::1;::::0;40198:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40232:18;40198:63;;;;;;40232:18;40215:36;40198:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40106:155;40083:3;;40038:239;;;;40400:18;;40378;;40360:15;:36;:58;40356:420;;40499:11;40480:16;:14;:16::i;:::-;:30;40476:228;;;40535:50;40551:33;40568:15;;40551:12;;:16;;:33;;;;:::i;40535:50::-;40476:228;;;40634:50;40650:33;40667:15;;40650:12;;:16;;:33;;;;:::i;40634:50::-;40745:15;40724:18;:36:::0;40356:420:::1;-1:-1:-1::0;;;;;59041:30:0;::::2;;::::0;;;:18:::2;:30;::::0;;;;;::::2;;59033:73;;;::::0;;-1:-1:-1;;;59033:73:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;59125:14:::0;59117:52:::2;;;::::0;;-1:-1:-1;;;59117:52:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;59262:9;::::0;59248:10:::2;59238:21;::::0;;;:9:::2;:21;::::0;;;;;59276:12:::2;59238:33:::0;::::2;59237:51;;59229:111;;;;-1:-1:-1::0;;;59229:111:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59401:24;59427:22:::0;59453:40:::2;59471:9;59482:10;59453:17;:40::i;:::-;59400:93;;;;59539:10;-1:-1:-1::0;;;;;59532:28:0::2;;59561:10;59532:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;59532:40:0::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;59532:40:0;59512:60;::::2;;59504:115;;;;-1:-1:-1::0;;;59504:115:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59663:8;::::0;59656:38:::2;::::0;;-1:-1:-1;;;59656:38:0;;59683:10:::2;59656:38;::::0;::::2;::::0;;;-1:-1:-1;;;;;59663:8:0;;::::2;::::0;59656:26:::2;::::0;:38;;;;;::::2;::::0;;;;;;;;;59663:8;59656:38;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;59656:38:0;59638:56;::::2;;59630:109;;;;-1:-1:-1::0;;;59630:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59798:91;59832:10;59845;59865:4;59872:16;59798:26;:91::i;:::-;59934:8;::::0;59900:87:::2;::::0;-1:-1:-1;;;;;59934:8:0::2;59945:10;59965:4;59972:14:::0;59900:26:::2;:87::i;:::-;60040:7;::::0;60012:63:::2;::::0;60026:48:::2;::::0;60053:20;;60026:22:::2;::::0;:9;;:13:::2;:22::i;:48::-;60012:9:::0;;:13:::2;:63::i;:::-;-1:-1:-1::0;;;;;60171:29:0;::::2;;::::0;;;:17:::2;:29;::::0;;;;;60000:75;;-1:-1:-1;60143:85:0::2;::::0;60157:70:::2;::::0;60206:20;;60157:44:::2;::::0;60000:75;;60157:13:::2;:44::i;60143:85::-;60285:12;::::0;60131:97;;-1:-1:-1;60285:27:0::2;::::0;60131:97;60285:16:::2;:27::i;:::-;60270:12;:42:::0;60363:10:::2;60350:24;::::0;;;:12:::2;:24;::::0;;;;;:39:::2;::::0;60379:9;60350:28:::2;:39::i;:::-;60336:10;60323:24;::::0;;;:12:::2;:24;::::0;;;;;;;:66;;;;60407:45;;;;;;;60336:10;;60323:24;;-1:-1:-1;;;;;;;;;;;60407:45:0;;;;;;;;::::2;60475:10;60465:21;::::0;;;:9:::2;:21;::::0;;;;;;;;60489:12:::2;60465:36:::0;;60524:8:::2;::::0;60519:83;;-1:-1:-1;;;;;60524:8:0;;::::2;60519:83:::0;;;;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;::::2;::::0;;;;;;;::::2;-1:-1:-1::0;;21292:1:0;22254:7;:22;-1:-1:-1;;58858:1752:0:o;25535:87::-;25607:7;25600:14;;;;;;;;-1:-1:-1;;25600:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:13;;25600:14;;25607:7;;25600:14;;25607:7;25600:14;;;;;;;;;;;;;;;;;;;;;;;;43846:712;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44078:37:0;::::1;;::::0;;;:24:::1;:37;::::0;;;;;::::1;;44073:77;;44117:15;:33:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;44117:33:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;44117:33:0::1;-1:-1:-1::0;;;;;44117:33:0;::::1;;::::0;;44073:77:::1;-1:-1:-1::0;;;;;44163:37:0;;::::1;;::::0;;;:24:::1;:37;::::0;;;;;;;:44;;44203:4:::1;-1:-1:-1::0;;44163:44:0;;::::1;::::0;::::1;::::0;;;44218:18:::1;:31:::0;;;;;:38;;;::::1;::::0;;::::1;::::0;;;44267:23:::1;:36:::0;;;;;:52;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;44330:18:::1;:31:::0;;;;;:52;;;;44393:16:::1;:29:::0;;;;;:46;;-1:-1:-1;;;;;;44393:46:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;;44450:17:::1;:30:::0;;;;;:34;;;44495:25:::1;:38:::0;;;;;;;:55;;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;43846:712::o;37416:23::-;;;-1:-1:-1;;;;;37416:23:0;;:::o;52243:238::-;43310:5;;52357:4;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;-1:-1:-1;52379:14:0::1;:24:::0;;-1:-1:-1;;;;;;52379:24:0::1;-1:-1:-1::0;;;;;52379:24:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;52414:35:0::1;-1:-1:-1::0;;;52414:35:0;::::1;;::::0;;;::::1;;::::0;;-1:-1:-1;;52243:238:0:o;55776:261::-;55855:12;;-1:-1:-1;;;;;55855:12:0;55841:10;:26;55833:47;;;;;-1:-1:-1;;;55833:47:0;;;;;;;;;;;;-1:-1:-1;;;55833:47:0;;;;;;;;;;;;;;;55910:5;;;55942:12;;;-1:-1:-1;;;;;;55934:20:0;;;-1:-1:-1;;;;;55942:12:0;;;55934:20;;;;;;;;55965:25;;;;;56006:23;;;55910:5;;;56006:23;;;56023:5;;;;56006:23;;;;;;;;;;;;;;;;55776:261;:::o;38095:24::-;;;;:::o;51483:506::-;51657:10;51604:4;51645:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51645:32:0;;;;;;;;;;51692:27;;;51688:193;;51748:10;51771:1;51736:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51736:32:0;;;;;;;;;:36;51688:193;;;51840:29;:8;51853:15;51840:12;:29::i;:::-;51817:10;51805:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51805:32:0;;;;;;;;;:64;51688:193;51905:10;51926:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;51896:63:0;;51926:32;;;;;;;;;;;51896:63;;;;;;;;;51905:10;51896:63;;;;;;;;;;;-1:-1:-1;51977:4:0;;51483:506;-1:-1:-1;;;51483:506:0:o;47990:371::-;48141:4;48093:2;-1:-1:-1;;;;;38341:18:0;;38333:27;;;;;;-1:-1:-1;;;;;38379:19:0;;38393:4;38379:19;;38371:28;;;;;;39730:14:::1;::::0;-1:-1:-1;;;;;39730:14:0::1;39722:37:::0;39718:1069:::1;;39868:23;::::0;-1:-1:-1;;;39868:23:0;::::1;;;39864:70;;;39910:14;;;;;;;;;-1:-1:-1::0;;;;;39910:14:0::1;-1:-1:-1::0;;;;;39893:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39864:70;39955:23;::::0;-1:-1:-1;;;39955:23:0;::::1;;;39951:70;;;39997:14;;;;;;;;;-1:-1:-1::0;;;;;39997:14:0::1;-1:-1:-1::0;;;;;39980:39:0::1;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39951:70;40043:6;40038:239;40059:15;:22:::0;40055:26;::::1;40038:239;;;40110:18;:38;40129:15;40145:1;40129:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40129:18:0::1;40110:38:::0;;;::::1;::::0;;;;;;;;;::::1;;:86:::0;::::1;;;;40153:23;:43;40177:15;40193:1;40177:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40177:18:0::1;40153:43:::0;;;::::1;::::0;;;;;;;;;::::1;;40152:44;40110:86;40106:155;;;40215:16;:36;40232:15;40248:1;40232:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;40232:18:0;;::::1;40215:36:::0;;;;::::1;::::0;;;;;;;;;;;40198:63;;-1:-1:-1;;;40198:63:0;;;;40215:36;::::1;::::0;40198:61:::1;::::0;:63:::1;::::0;;::::1;::::0;40232:18;40198:63;;;;;;40232:18;40215:36;40198:63;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40106:155;40083:3;;40038:239;;;;40400:18;;40378;;40360:15;:36;:58;40356:420;;40499:11;40480:16;:14;:16::i;:::-;:30;40476:228;;;40535:50;40551:33;40568:15;;40551:12;;:16;;:33;;;;:::i;40535:50::-;40476:228;;;40634:50;40650:33;40667:15;;40650:12;;:16;;:33;;;;:::i;40634:50::-;40745:15;40724:18;:36:::0;40356:420:::1;48203:10:::2;48190:24;::::0;;;:12:::2;:24;::::0;;;;;:35:::2;::::0;48219:5;48190:28:::2;:35::i;:::-;48176:10;48163:24;::::0;;;:12:::2;:24;::::0;;;;;:62;;;;-1:-1:-1;;;;;48255:16:0;::::2;::::0;;;;:27:::2;::::0;48276:5;48255:20:::2;:27::i;:::-;-1:-1:-1::0;;;;;48236:16:0;::::2;;::::0;;;:12:::2;:16;::::0;;;;;;;;:46;;;;48298:31;;;;;;;48236:16;;48307:10:::2;::::0;-1:-1:-1;;;;;;;;;;;48298:31:0;;;;;;;;::::2;-1:-1:-1::0;48349:4:0::2;::::0;47990:371;-1:-1:-1;;;47990:371:0:o;57009:1100::-;57123:7;;57165:14;57157:51;;;;;-1:-1:-1;;;57157:51:0;;;;;;;;;;;;-1:-1:-1;;;57157:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57227:30:0;;;;;;:18;:30;;;;;;;;57219:73;;;;;-1:-1:-1;;;57219:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;57305:19;57327:16;:14;:16::i;:::-;57305:38;;57426:24;57453:112;37219:1;57550:2;:14;57453:92;57514:18;:30;57533:10;-1:-1:-1;;;;;57514:30:0;-1:-1:-1;;;;;57514:30:0;;;;;;;;;;;;;57508:2;:36;57453:50;57485:17;;57453:27;57467:12;;57453:9;:13;;:27;;;;:::i;:112::-;57426:139;;57595:63;57629:28;57646:10;57629:16;:28::i;57595:63::-;57683:14;;57576:82;;-1:-1:-1;;;;;;57683:14:0;57671:71;;57722:16;-1:-1:-1;57740:1:0;;-1:-1:-1;57714:28:0;;-1:-1:-1;57714:28:0;57671:71;57755:37;57795:73;57850:17;;57795:50;57809:35;57831:12;;57809:17;;:21;;:35;;;;:::i;:::-;57795:9;;:13;:50::i;:73::-;57755:113;;57881:22;57906:107;37219:1;57998:2;:14;57906:87;57976:16;;57970:2;:22;57906:59;57953:11;57906:42;57940:7;57906:29;:33;;:42;;;;:::i;:107::-;58068:16;;;;-1:-1:-1;57009:1100:0;;-1:-1:-1;;;;;;57009:1100:0:o;39427:32::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39427:32:0;;-1:-1:-1;39427:32:0;:::o;45725:146::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45824:31:0::1;45858:5;45824:31:::0;;;:18:::1;:31;::::0;;;;:39;;-1:-1:-1;;45824:39:0::1;::::0;;45725:146::o;60961:153::-;41562:3;;-1:-1:-1;;;;;41562:3:0;41548:10;:17;41540:58;;;;;-1:-1:-1;;;41540:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61055:11:::1;:18:::0;;;61089:17:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;60961:153:::0;:::o;42747:58::-;;;;;;;;;;;;;;;:::o;46489:565::-;46543:7;;;46606:405;46627:15;:22;46623:26;;46606:405;;;46743:1;-1:-1:-1;;;;;46713:32:0;:15;46729:1;46713:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46713:18:0;:32;46709:289;;46787:169;46948:7;46787:156;46906:36;46923:15;46939:1;46923:18;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46923:18:0;46906:16;:36::i;:::-;46787:114;46862:18;:38;46881:15;46897:1;46881:18;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46881:18:0;-1:-1:-1;;;;;46862:38:0;-1:-1:-1;;;;;46862:38:0;;;;;;;;;;;;;46856:2;:44;46787:64;46843:7;46794:15;46810:1;46794:18;;;;;;;;;;;;;;;;;;;46787:51;;;-1:-1:-1;;;46787:51:0;;46832:4;46787:51;;;;;;-1:-1:-1;;;;;46794:18:0;;;;46787:36;;:51;;;;;;;;;;46794:18;46787:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46787:51:0;;:55;:64::i;:169::-;46765:191;;;;46709:289;46651:3;;46606:405;;;-1:-1:-1;47028:18:0;-1:-1:-1;46489:565:0;:::o;46113:368::-;-1:-1:-1;;;;;46209:37:0;;46181:7;46209:37;;;:24;:37;;;;;;;;46201:80;;;;;-1:-1:-1;;;46201:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46298:36:0;;;;;;:23;:36;;;;;;;;46294:87;;;46352:11;-1:-1:-1;;;;;46343:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46343:38:0;;-1:-1:-1;46336:45:0;;46294:87;-1:-1:-1;;;;;46426:29:0;;;;;;;:16;:29;;;;;;;;;;46409:64;;-1:-1:-1;;;46409:64:0;;;;46426:29;;;46409:62;;:64;;;;;46426:29;46409:64;;;;;;46426:29;46409:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46409:64:0;;46113:368;-1:-1:-1;;46113:368:0:o;43377:20::-;;;-1:-1:-1;;;;;43377:20:0;;:::o;48668:186::-;-1:-1:-1;;;;;48818:19:0;;;48786:7;48818:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;48668:186::o;42000:57::-;;;;;;;;;;;;;;;:::o;44568:374::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44693:31:0;::::1;;::::0;;;:18:::1;:31;::::0;;;;;::::1;;44685:62;;;::::0;;-1:-1:-1;;;44685:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44685:62:0;;;;;;;;;;;;;::::1;;44774:13;44766:4;:21;;44758:51;;;::::0;;-1:-1:-1;;;44758:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44758:51:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;44849:30:0;::::1;;::::0;;;:17:::1;:30;::::0;;;;;;;;;44825:61;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;;;;44897:30:0;;::::1;;::::0;;;:17:::1;:30;::::0;;;;:37;44568:374::o;60684:203::-;41562:3;;-1:-1:-1;;;;;41562:3:0;41548:10;:17;41540:58;;;;;-1:-1:-1;;;41540:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60790:13:::1;60782:4;:21;;60774:51;;;::::0;;-1:-1:-1;;;60774:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;60774:51:0;;;;;;;;;;;;;::::1;;60836:7;:14:::0;;;60866:13:::1;::::0;;;;;;;::::1;::::0;;;;;;;;;::::1;60684:203:::0;:::o;39299:53::-;;;;;;;;;;;;;:::o;42635:52::-;;;;;;;;;;;;-1:-1:-1;;;;;42635:52:0;;:::o;42907:26::-;;;;:::o;45021:134::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;45120:15:::1;:27:::0;45021:134::o;56109:233::-;41562:3;;-1:-1:-1;;;;;41562:3:0;41548:10;:17;41540:58;;;;;-1:-1:-1;;;41540:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;56232:10:::1;::::0;;-1:-1:-1;;;;;56253:24:0;;::::1;-1:-1:-1::0;;;;;;56253:24:0;::::1;::::0;::::1;::::0;;;56293:41:::1;::::0;;56232:10;;;::::1;56293:41:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;41609:1;56109:233:::0;:::o;55520:248::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;55646:12:::1;::::0;;-1:-1:-1;;;;;55669:28:0;;::::1;-1:-1:-1::0;;;;;;55669:28:0;::::1;::::0;::::1;::::0;;;55713:47:::1;::::0;;55646:12;;;::::1;55713:47:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;43360:1;55520:248:::0;:::o;41755:54::-;;;;;;;;;;;;;:::o;45214:427::-;43310:5;;-1:-1:-1;;;;;43310:5:0;43296:10;:19;43288:61;;;;;-1:-1:-1;;;43288:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43288:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45391:31:0;::::1;;::::0;;;:18:::1;:31;::::0;;;;;::::1;;45383:62;;;::::0;;-1:-1:-1;;;45383:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45383:62:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;45456:36:0;;::::1;;::::0;;;:23:::1;:36;::::0;;;;;;;:53;;;::::1;;-1:-1:-1::0;;45456:53:0;;::::1;;::::0;;45520:16:::1;:29:::0;;;;;:46;;;;;::::1;-1:-1:-1::0;;;;;;45520:46:0;;::::1;::::0;;;::::1;::::0;;;45577:25:::1;:38:::0;;;;;;;:56;;;::::1;;::::0;;;::::1;;::::0;;45214:427::o;36173:244::-;35450:12;:10;:12::i;:::-;35440:6;;;;;-1:-1:-1;;;;;35440:6:0;;;:22;;;35432:67;;;;;-1:-1:-1;;;35432:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36262:22:0;::::1;36254:73;;;;-1:-1:-1::0;;;36254:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36364:6;::::0;36343:38:::1;::::0;-1:-1:-1;;;;;36343:38:0;;::::1;::::0;36364:6:::1;::::0;::::1;;::::0;36343:38:::1;::::0;;;::::1;36392:6;:17:::0;;-1:-1:-1;;;;;36392:17:0;;::::1;;;-1:-1:-1::0;;;;;;36392:17:0;;::::1;::::0;;;::::1;::::0;;36173:244::o;39241:51::-;;;;;;;;;;;;;;;:::o;37799:35::-;;;-1:-1:-1;;;37799:35:0;;;;;:::o;37330:33::-;;;;:::o;2254:136::-;2312:7;2339:43;2343:1;2346;2339:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2332:50;2254:136;-1:-1:-1;;;2254:136:0:o;64352:316::-;64509:17;;64496:9;:30;;:64;;;;;64543:17;;64530:9;:30;;64496:64;64492:169;;;64577:12;:24;;;64621:28;;;;;;;;;;;;;;;;;64352:316;:::o;1790:181::-;1848:7;1880:5;;;1904:6;;;;1896:46;;;;;-1:-1:-1;;;1896:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3144:471;3202:7;3447:6;3443:47;;-1:-1:-1;3477:1:0;3470:8;;3443:47;3514:5;;;3518:1;3514;:5;:1;3538:5;;;;;:10;3530:56;;;;-1:-1:-1;;;3530:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4091:132;4149:7;4176:39;4180:1;4183;4176:39;;;;;;;;;;;;;;;;;:3;:39::i;16575:177::-;16685:58;;;-1:-1:-1;;;;;16685:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16685:58:0;-1:-1:-1;;;16685:58:0;;;16658:86;;16678:5;;16658:19;:86::i;22871:106::-;22959:10;22871:106;:::o;16760:205::-;16888:68;;;-1:-1:-1;;;;;16888:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16888:68:0;-1:-1:-1;;;16888:68:0;;;16861:96;;16881:5;;16861:19;:96::i;:::-;16760:205;;;;:::o;2693:192::-;2779:7;2815:12;2807:6;;;;2799:29;;;;-1:-1:-1;;;2799:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2851:5:0;;;2693:192::o;4719:278::-;4805:7;4840:12;4833:5;4825:28;;;;-1:-1:-1;;;4825:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4864:9;4880:1;4876;:5;;;;;;;4719:278;-1:-1:-1;;;;;4719:278:0:o;18880:761::-;19304:23;19330:69;19358:4;19330:69;;;;;;;;;;;;;;;;;19338:5;-1:-1:-1;;;;;19330:27:0;;;:69;;;;;:::i;:::-;19414:17;;19304:95;;-1:-1:-1;19414:21:0;19410:224;;19556:10;19545:30;;;;;;;;;;;;;;;-1:-1:-1;19545:30:0;19537:85;;;;-1:-1:-1;;;19537:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12636:195;12739:12;12771:52;12793:6;12801:4;12807:1;12810:12;12771:21;:52::i;:::-;12764:59;12636:195;-1:-1:-1;;;;12636:195:0:o;13688:530::-;13815:12;13873:5;13848:21;:30;;13840:81;;;;-1:-1:-1;;;13840:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13940:18;13951:6;13940:10;:18::i;:::-;13932:60;;;;;-1:-1:-1;;;13932:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14066:12;14080:23;14107:6;-1:-1:-1;;;;;14107:11:0;14127:5;14135:4;14107:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14107:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14065:75;;;;14158:52;14176:7;14185:10;14197:12;14158:17;:52::i;9718:422::-;10085:20;10124:8;;;9718:422::o;15224:742::-;15339:12;15368:7;15364:595;;;-1:-1:-1;15399:10:0;15392:17;;15364:595;15513:17;;:21;15509:439;;15776:10;15770:17;15837:15;15824:10;15820:2;15816:19;15809:44;15724:148;15912:20;;-1:-1:-1;;;15912:20:0;;;;;;;;;;;;;;;;;15919:12;;15912:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://3014ba44994280cd80d14985aaeea30790f6ffec9608ec2b9123d163773ae766
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.