Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 17 from a total of 17 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Work | 11520698 | 1494 days ago | IN | 0 ETH | 0.05005802 | ||||
Work | 11520557 | 1494 days ago | IN | 0 ETH | 0.0351893 | ||||
Work | 11520375 | 1494 days ago | IN | 0 ETH | 0.05357509 | ||||
Work | 11495337 | 1498 days ago | IN | 0 ETH | 0.01118307 | ||||
Work | 11467913 | 1502 days ago | IN | 0 ETH | 0.05880387 | ||||
Work | 11467750 | 1502 days ago | IN | 0 ETH | 0.06699786 | ||||
Work | 11467504 | 1502 days ago | IN | 0 ETH | 0.0443439 | ||||
Work | 11467347 | 1502 days ago | IN | 0 ETH | 0.0475824 | ||||
Work | 11467014 | 1502 days ago | IN | 0 ETH | 0.03335433 | ||||
Work | 11454406 | 1504 days ago | IN | 0 ETH | 0.0356868 | ||||
Work | 11454265 | 1504 days ago | IN | 0 ETH | 0.02602794 | ||||
Work | 11454125 | 1504 days ago | IN | 0 ETH | 0.02747394 | ||||
Work | 11453978 | 1504 days ago | IN | 0 ETH | 0.03092949 | ||||
Work For Free | 11453722 | 1504 days ago | IN | 0 ETH | 0.01238578 | ||||
Add Pair | 11450125 | 1504 days ago | IN | 0 ETH | 0.00711902 | ||||
Add Pair | 11450087 | 1505 days ago | IN | 0 ETH | 0.00857518 | ||||
Add Pair | 11450082 | 1505 days ago | IN | 0 ETH | 0.00990057 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
11520698 | 1494 days ago | 0.00780649 ETH | ||||
11520698 | 1494 days ago | 0.07025843 ETH | ||||
11520698 | 1494 days ago | 0.07806492 ETH | ||||
11520557 | 1494 days ago | 0.00780649 ETH | ||||
11520557 | 1494 days ago | 0.07025843 ETH | ||||
11520557 | 1494 days ago | 0.07806493 ETH | ||||
11520375 | 1494 days ago | 0.00978157 ETH | ||||
11520375 | 1494 days ago | 0.08803414 ETH | ||||
11520375 | 1494 days ago | 0.09781571 ETH | ||||
11495337 | 1498 days ago | 0.00203057 ETH | ||||
11495337 | 1498 days ago | 0.01827518 ETH | ||||
11495337 | 1498 days ago | 0.02030576 ETH | ||||
11467913 | 1502 days ago | 0.00724826 ETH | ||||
11467913 | 1502 days ago | 0.06523442 ETH | ||||
11467913 | 1502 days ago | 0.07248269 ETH | ||||
11467750 | 1502 days ago | 0.00716209 ETH | ||||
11467750 | 1502 days ago | 0.06445881 ETH | ||||
11467750 | 1502 days ago | 0.0716209 ETH | ||||
11467504 | 1502 days ago | 0.00595851 ETH | ||||
11467504 | 1502 days ago | 0.05362665 ETH | ||||
11467504 | 1502 days ago | 0.05958517 ETH | ||||
11467347 | 1502 days ago | 0.00590143 ETH | ||||
11467347 | 1502 days ago | 0.05311291 ETH | ||||
11467347 | 1502 days ago | 0.05901434 ETH | ||||
11467014 | 1502 days ago | 0.0035835 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LockerV1Oracle
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-14 */ /** *Submitted for verification at Etherscan.io on 2020-12-10 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.12; pragma experimental ABIEncoderV2; /** * @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); } /* * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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; } } interface iCHI is IERC20 { function freeFromUpTo(address from, uint256 value) external returns (uint256); } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) library FixedPoint { // range: [0, 2**112 - 1] // resolution: 1 / 2**112 struct uq112x112 { uint224 _x; } // range: [0, 2**144 - 1] // resolution: 1 / 2**112 struct uq144x112 { uint _x; } uint8 private constant RESOLUTION = 112; // encode a uint112 as a UQ112x112 function encode(uint112 x) internal pure returns (uq112x112 memory) { return uq112x112(uint224(x) << RESOLUTION); } // encodes a uint144 as a UQ144x112 function encode144(uint144 x) internal pure returns (uq144x112 memory) { return uq144x112(uint256(x) << RESOLUTION); } // divide a UQ112x112 by a uint112, returning a UQ112x112 function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) { require(x != 0, 'FixedPoint: DIV_BY_ZERO'); return uq112x112(self._x / uint224(x)); } // multiply a UQ112x112 by a uint, returning a UQ144x112 // reverts on overflow function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) { uint z; require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW"); return uq144x112(z); } // returns a UQ112x112 which represents the ratio of the numerator to the denominator // equivalent to encode(numerator).div(denominator) function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) { require(denominator > 0, "FixedPoint: DIV_BY_ZERO"); return uq112x112((uint224(numerator) << RESOLUTION) / denominator); } // decode a UQ112x112 into a uint112 by truncating after the radix point function decode(uq112x112 memory self) internal pure returns (uint112) { return uint112(self._x >> RESOLUTION); } // decode a UQ144x112 into a uint144 by truncating after the radix point function decode144(uq144x112 memory self) internal pure returns (uint144) { return uint144(self._x >> RESOLUTION); } } // library with helper methods for oracles that are concerned with computing average prices library UniswapV2OracleLibrary { using FixedPoint for *; // helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1] function currentBlockTimestamp() internal view returns (uint32) { return uint32(block.timestamp % 2 ** 32); } // produces the cumulative price using counterfactuals to save gas and avoid a call to sync. function currentCumulativePrices( address pair ) internal view returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) { blockTimestamp = currentBlockTimestamp(); price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast(); price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast(); // if time has elapsed since the last update on the pair, mock the accumulated price values (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves(); if (blockTimestampLast != blockTimestamp) { // subtraction overflow is desired uint32 timeElapsed = blockTimestamp - blockTimestampLast; // addition overflow is desired // counterfactual price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed; // counterfactual price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed; } } } library UniswapV2Library { using SafeMath for uint; // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES'); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS'); } // calculates the CREATE2 address for a pair without making any external calls function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } // fetches and sorts the reserves for a pair function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) { (address token0,) = sortTokens(tokenA, tokenB); (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves(); (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0); } // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) { require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT'); require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); amountB = amountA.mul(reserveB) / reserveA; } // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) { require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint amountInWithFee = amountIn.mul(997); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } // given an output amount of an asset and pair reserves, returns a required input amount of the other asset function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) { require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint numerator = reserveIn.mul(amountOut).mul(1000); uint denominator = reserveOut.sub(amountOut).mul(997); amountIn = (numerator / denominator).add(1); } // performs chained getAmountOut calculations on any number of pairs function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[0] = amountIn; for (uint i; i < path.length - 1; i++) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]); amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut); } } // performs chained getAmountIn calculations on any number of pairs function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[amounts.length - 1] = amountOut; for (uint i = path.length - 1; i > 0; i--) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]); amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut); } } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IWETH is IERC20{ function deposit() external payable; function withdraw(uint) external; } interface ILock3rV1Mini { function isLocker(address) external returns (bool); function worked(address locker) external; function totalBonded() external view returns (uint); function bonds(address locker, address credit) external view returns (uint); function votes(address locker) external view returns (uint); function isMinLocker(address locker, uint minBond, uint earned, uint age) external returns (bool); function addCreditETH(address job) external payable; function workedETH(address locker) external; function credits(address job, address credit) external view returns (uint); function receipt(address credit, address locker, uint amount) external; function ETH() external view returns (address); function receiptETH(address locker, uint amount) external; } interface ILock3rV1Plus is ILock3rV1Mini { function unbond(address bonding, uint amount) external; function withdraw(address bonding) external; function unbondings(address locker, address credit) external view returns (uint); function approve(address spender, uint amount) external returns (bool); function jobs(address job) external view returns (bool); function balanceOf(address account) external view returns (uint256); function LK3RH() external view returns (ILock3rV1Helper); } interface ILock3rV1Helper { function getQuoteLimit(uint gasUsed) external view returns (uint); } // sliding oracle that uses observations collected to provide moving price averages in the past //Forked from Lock3rV1Oracle with improvements contract LockerV1Oracle is Ownable { using FixedPoint for *; using SafeMath for uint; /// @notice CHI Cut fee at 50% initially uint public CHIFEE = 5000; //Fee at 10%,can be adjusted to send excess to deployer uint public DFEE = 1000; uint constant public BASE = 10000; struct Observation { uint timestamp; uint price0Cumulative; uint price1Cumulative; } uint public minKeep = 200e18; modifier locker() { require(LK3R.isMinLocker(msg.sender, minKeep, 0, 0), "::isLocker:!lock3r"); _; } modifier upkeep() { uint _gasUsed = gasleft(); require(LK3R.isMinLocker(msg.sender, minKeep, 0, 0), "::isLocker:!lock3r"); _; //Gas calcs uint256 gasDiff = _gasUsed.sub(gasleft()); uint256 gasSpent = 21000 + gasDiff + 16 * msg.data.length; CHI.freeFromUpTo(address(this), (gasSpent + 14154) / 41947); uint _reward = LK3R.LK3RH().getQuoteLimit(gasDiff); //Calculate chi budget uint chiBudget = getChiBudget(_reward); //Get LK3R reward to address to swap LK3R.receipt(address(LK3R), address(this), _reward.add(chiBudget)); //Swap and return eth reward _reward = _swap(_reward,chiBudget); //Used to send excess eth uint256 _rewardAfterSub = _reward.sub(_reward.mul(DFEE).div(BASE)); msg.sender.transfer(_rewardAfterSub); payable(owner()).transfer(address(this).balance); } address public governance; address public pendingGovernance; function getChiBudget(uint amount) public view returns (uint) { return amount.mul(CHIFEE).div(BASE); } function setChiBudget(uint newBudget) public onlyOwner { CHIFEE = newBudget; } function setDBudget(uint newBudget) public onlyOwner { DFEE = newBudget; } function setMinKeep(uint _keep) external { require(msg.sender == governance, "setGovernance: !gov"); minKeep = _keep; } /** * @notice Allows governance to change governance (for future upgradability) * @param _governance new governance address to set */ function setGovernance(address _governance) external { require(msg.sender == governance, "setGovernance: !gov"); pendingGovernance = _governance; } /** * @notice Allows pendingGovernance to accept their role as governance (protection pattern) */ function acceptGovernance() external { require(msg.sender == pendingGovernance, "acceptGovernance: !pendingGov"); governance = pendingGovernance; } ILock3rV1Plus public constant LK3R = ILock3rV1Plus(0xe3f3869dDD41C23Eff3630F58E5bFA584C770D67); IWETH public constant WETH = IWETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); IUniswapV2Router public constant UNI = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); iCHI public CHI = iCHI(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c); address public constant factory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; // this is redundant with granularity and windowSize, but stored for gas savings & informational purposes. uint public constant periodSize = 1800; address[] internal _pairs; mapping(address => bool) internal _known; function pairs() external view returns (address[] memory) { return _pairs; } mapping(address => Observation[]) public observations; function observationLength(address pair) external view returns (uint) { return observations[pair].length; } function pairFor(address tokenA, address tokenB) external pure returns (address) { return UniswapV2Library.pairFor(factory, tokenA, tokenB); } function pairForWETH(address tokenA) external pure returns (address) { return UniswapV2Library.pairFor(factory, tokenA, address(WETH)); } constructor() public { governance = msg.sender; //Approve CHI for freeFromUpTo require(CHI.approve(address(this), uint256(-1))); //Infapprove of LK3R to uniswap router require(LK3R.approve(address(UNI), uint256(-1))); } function updatePair(address pair) external locker returns (bool) { return _update(pair); } function update(address tokenA, address tokenB) external locker returns (bool) { address pair = UniswapV2Library.pairFor(factory, tokenA, tokenB); return _update(pair); } function _addPair(address pair) internal { require(!_known[pair], "known"); _known[pair] = true; _pairs.push(pair); (uint price0Cumulative, uint price1Cumulative,) = UniswapV2OracleLibrary.currentCumulativePrices(pair); observations[pair].push(Observation(block.timestamp, price0Cumulative, price1Cumulative)); } //Add pairs directly function addPair(address pair) public { require(msg.sender == governance, "UniswapV2Oracle::add: !gov"); _addPair(pair); } //Using upkeep to save on gas function batchAddPairs(address[] memory pairsToAdd) public { require(msg.sender == governance, "UniswapV2Oracle::add: !gov"); for(uint i=0;i<pairsToAdd.length;i++) _addPair(pairsToAdd[i]); } function add(address tokenA, address tokenB) external { //Call parent addPair function to avoid duplicated code addPair(UniswapV2Library.pairFor(factory, tokenA, tokenB)); } function work() public upkeep { bool worked = _updateAll(); require(worked, "UniswapV2Oracle: !work"); } function workForFree() public locker { bool worked = _updateAll(); require(worked, "UniswapV2Oracle: !work"); } function lastObservation(address pair) public view returns (Observation memory) { return observations[pair][observations[pair].length-1]; } function _updateAll() internal returns (bool updated) { for (uint i = 0; i < _pairs.length; i++) { if (_update(_pairs[i])) { updated = true; } } } function updateFor(uint i, uint length) external locker returns (bool updated) { for (; i < length; i++) { if (_update(_pairs[i])) { updated = true; } } } function workable(address pair) public view returns (bool) { return (block.timestamp - lastObservation(pair).timestamp) > periodSize; } function workable() external view returns (bool) { for (uint i = 0; i < _pairs.length; i++) { if (workable(_pairs[i])) { return true; } } return false; } function _update(address pair) internal returns (bool) { // we only want to commit updates once per period (i.e. windowSize / granularity) Observation memory _point = lastObservation(pair); uint timeElapsed = block.timestamp - _point.timestamp; if (timeElapsed > periodSize) { (uint price0Cumulative, uint price1Cumulative,) = UniswapV2OracleLibrary.currentCumulativePrices(pair); observations[pair].push(Observation(block.timestamp, price0Cumulative, price1Cumulative)); return true; } return false; } function computeAmountOut( uint priceCumulativeStart, uint priceCumulativeEnd, uint timeElapsed, uint amountIn ) private pure returns (uint amountOut) { // overflow is desired. FixedPoint.uq112x112 memory priceAverage = FixedPoint.uq112x112( uint224((priceCumulativeEnd - priceCumulativeStart) / timeElapsed) ); amountOut = priceAverage.mul(amountIn).decode144(); } function _valid(address pair, uint age) internal view returns (bool) { return (block.timestamp - lastObservation(pair).timestamp) <= age; } function current(address tokenIn, uint amountIn, address tokenOut) external view returns (uint amountOut) { address pair = UniswapV2Library.pairFor(factory, tokenIn, tokenOut); require(_valid(pair, periodSize.mul(2)), "UniswapV2Oracle::quote: stale prices"); (address token0,) = UniswapV2Library.sortTokens(tokenIn, tokenOut); Observation memory _observation = lastObservation(pair); (uint price0Cumulative, uint price1Cumulative,) = UniswapV2OracleLibrary.currentCumulativePrices(pair); if (block.timestamp == _observation.timestamp) { _observation = observations[pair][observations[pair].length-2]; } uint timeElapsed = block.timestamp - _observation.timestamp; timeElapsed = timeElapsed == 0 ? 1 : timeElapsed; if (token0 == tokenIn) { return computeAmountOut(_observation.price0Cumulative, price0Cumulative, timeElapsed, amountIn); } else { return computeAmountOut(_observation.price1Cumulative, price1Cumulative, timeElapsed, amountIn); } } function quote(address tokenIn, uint amountIn, address tokenOut, uint granularity) external view returns (uint amountOut) { address pair = UniswapV2Library.pairFor(factory, tokenIn, tokenOut); require(_valid(pair, periodSize.mul(granularity)), "UniswapV2Oracle::quote: stale prices"); (address token0,) = UniswapV2Library.sortTokens(tokenIn, tokenOut); uint priceAverageCumulative = 0; uint length = observations[pair].length-1; uint i = length.sub(granularity); uint nextIndex = 0; if (token0 == tokenIn) { for (; i < length; i++) { nextIndex = i+1; priceAverageCumulative += computeAmountOut( observations[pair][i].price0Cumulative, observations[pair][nextIndex].price0Cumulative, observations[pair][nextIndex].timestamp - observations[pair][i].timestamp, amountIn); } } else { for (; i < length; i++) { nextIndex = i+1; priceAverageCumulative += computeAmountOut( observations[pair][i].price1Cumulative, observations[pair][nextIndex].price1Cumulative, observations[pair][nextIndex].timestamp - observations[pair][i].timestamp, amountIn); } } return priceAverageCumulative.div(granularity); } function prices(address tokenIn, uint amountIn, address tokenOut, uint points) external view returns (uint[] memory) { return sample(tokenIn, amountIn, tokenOut, points, 1); } function sample(address tokenIn, uint amountIn, address tokenOut, uint points, uint window) public view returns (uint[] memory) { address pair = UniswapV2Library.pairFor(factory, tokenIn, tokenOut); (address token0,) = UniswapV2Library.sortTokens(tokenIn, tokenOut); uint[] memory _prices = new uint[](points); uint length = observations[pair].length-1; uint i = length.sub(points * window); uint nextIndex = 0; uint index = 0; if (token0 == tokenIn) { for (; i < length; i+=window) { nextIndex = i + window; _prices[index] = computeAmountOut( observations[pair][i].price0Cumulative, observations[pair][nextIndex].price0Cumulative, observations[pair][nextIndex].timestamp - observations[pair][i].timestamp, amountIn); index = index + 1; } } else { for (; i < length; i+=window) { nextIndex = i + window; _prices[index] = computeAmountOut( observations[pair][i].price1Cumulative, observations[pair][nextIndex].price1Cumulative, observations[pair][nextIndex].timestamp - observations[pair][i].timestamp, amountIn); index = index + 1; } } return _prices; } function hourly(address tokenIn, uint amountIn, address tokenOut, uint points) external view returns (uint[] memory) { return sample(tokenIn, amountIn, tokenOut, points, 2); } function daily(address tokenIn, uint amountIn, address tokenOut, uint points) external view returns (uint[] memory) { return sample(tokenIn, amountIn, tokenOut, points, 48); } function weekly(address tokenIn, uint amountIn, address tokenOut, uint points) external view returns (uint[] memory) { return sample(tokenIn, amountIn, tokenOut, points, 336); } function realizedVolatility(address tokenIn, uint amountIn, address tokenOut, uint points, uint window) external view returns (uint) { return stddev(sample(tokenIn, amountIn, tokenOut, points, window)); } function realizedVolatilityHourly(address tokenIn, uint amountIn, address tokenOut) external view returns (uint) { return stddev(sample(tokenIn, amountIn, tokenOut, 1, 2)); } function realizedVolatilityDaily(address tokenIn, uint amountIn, address tokenOut) external view returns (uint) { return stddev(sample(tokenIn, amountIn, tokenOut, 1, 48)); } function realizedVolatilityWeekly(address tokenIn, uint amountIn, address tokenOut) external view returns (uint) { return stddev(sample(tokenIn, amountIn, tokenOut, 1, 336)); } /** * @dev sqrt calculates the square root of a given number x * @dev for precision into decimals the number must first * @dev be multiplied by the precision factor desired * @param x uint256 number for the calculation of square root */ function sqrt(uint256 x) public pure returns (uint256) { uint256 c = (x + 1) / 2; uint256 b = x; while (c < b) { b = c; c = (x / c + c) / 2; } return b; } /** * @dev stddev calculates the standard deviation for an array of integers * @dev precision is the same as sqrt above meaning for higher precision * @dev the decimal place must be moved prior to passing the params * @param numbers uint[] array of numbers to be used in calculation */ function stddev(uint[] memory numbers) public pure returns (uint256 sd) { uint sum = 0; for(uint i = 0; i < numbers.length; i++) { sum += numbers[i]; } uint256 mean = sum / numbers.length; // Integral value; float not supported in Solidity sum = 0; uint i; for(i = 0; i < numbers.length; i++) { sum += (numbers[i] - mean) ** 2; } sd = sqrt(sum / (numbers.length - 1)); //Integral value; float not supported in Solidity return sd; } /** * @dev blackScholesEstimate calculates a rough price estimate for an ATM option * @dev input parameters should be transformed prior to being passed to the function * @dev so as to remove decimal places otherwise results will be far less accurate * @param _vol uint256 volatility of the underlying converted to remove decimals * @param _underlying uint256 price of the underlying asset * @param _time uint256 days to expiration in years multiplied to remove decimals */ function blackScholesEstimate( uint256 _vol, uint256 _underlying, uint256 _time ) public pure returns (uint256 estimate) { estimate = 40 * _vol * _underlying * sqrt(_time); return estimate; } /** * @dev fromReturnsBSestimate first calculates the stddev of an array of price returns * @dev then uses that as the volatility param for the blackScholesEstimate * @param _numbers uint256[] array of price returns for volatility calculation * @param _underlying uint256 price of the underlying asset * @param _time uint256 days to expiration in years multiplied to remove decimals */ function retBasedBlackScholesEstimate( uint256[] memory _numbers, uint256 _underlying, uint256 _time ) public pure { uint _vol = stddev(_numbers); blackScholesEstimate(_vol, _underlying, _time); } receive() external payable {} function _swap(uint _amount,uint chiBudget) internal returns (uint) { address[] memory path = new address[](2); path[0] = address(LK3R); path[1] = address(WETH); //Swap to ETH uint[] memory amounts = UNI.swapExactTokensForTokens(_amount, uint256(0), path, address(this), now.add(1800)); WETH.withdraw(amounts[1]); //Swap the 10% of LK3R to CHI address[] memory pathtoChi = new address[](3); pathtoChi[0] = address(LK3R); pathtoChi[1] = address(WETH); pathtoChi[2] = address(CHI); //Swap to CHI UNI.swapExactTokensForTokens(chiBudget, uint256(0), pathtoChi, address(this), now.add(1800)); return amounts[1]; } function getTokenBalance(address tokenAddress) public view returns (uint256) { return IERC20(tokenAddress).balanceOf(address(this)); } function sendERC20(address tokenAddress,address receiver) internal { IERC20(tokenAddress).transfer(receiver, getTokenBalance(tokenAddress)); } function recoverERC20(address token) public onlyOwner { sendERC20(token,owner()); } //Use this to depricate this job to move LK3R to another job later function destructJob() public onlyOwner { //Get the credits for this job first uint256 currLK3RCreds = LK3R.credits(address(this),address(LK3R)); uint256 currETHCreds = LK3R.credits(address(this),LK3R.ETH()); //Send out LK3R Credits if any if(currLK3RCreds > 0) { //Invoke receipt to send all the credits of job to owner LK3R.receipt(address(LK3R),owner(),currLK3RCreds); } //Send out ETH credits if any if (currETHCreds > 0) { LK3R.receiptETH(owner(),currETHCreds); } //Send out chi balance recoverERC20(address(CHI)); //Finally self destruct the contract after sending the credits selfdestruct(payable(owner())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHI","outputs":[{"internalType":"contract iCHI","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHIFEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DFEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LK3R","outputs":[{"internalType":"contract ILock3rV1Plus","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNI","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairsToAdd","type":"address[]"}],"name":"batchAddPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vol","type":"uint256"},{"internalType":"uint256","name":"_underlying","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"blackScholesEstimate","outputs":[{"internalType":"uint256","name":"estimate","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"}],"name":"current","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"daily","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destructJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getChiBudget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"hourly","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"lastObservation","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"price0Cumulative","type":"uint256"},{"internalType":"uint256","name":"price1Cumulative","type":"uint256"}],"internalType":"struct LockerV1Oracle.Observation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minKeep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"observationLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"observations","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"price0Cumulative","type":"uint256"},{"internalType":"uint256","name":"price1Cumulative","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"}],"name":"pairFor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"}],"name":"pairForWETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"pairs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"prices","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"granularity","type":"uint256"}],"name":"quote","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"window","type":"uint256"}],"name":"realizedVolatility","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"}],"name":"realizedVolatilityDaily","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"}],"name":"realizedVolatilityHourly","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"}],"name":"realizedVolatilityWeekly","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_numbers","type":"uint256[]"},{"internalType":"uint256","name":"_underlying","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"retBasedBlackScholesEstimate","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"window","type":"uint256"}],"name":"sample","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBudget","type":"uint256"}],"name":"setChiBudget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBudget","type":"uint256"}],"name":"setDBudget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_keep","type":"uint256"}],"name":"setMinKeep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"}],"name":"sqrt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"numbers","type":"uint256[]"}],"name":"stddev","outputs":[{"internalType":"uint256","name":"sd","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"}],"name":"update","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"updateFor","outputs":[{"internalType":"bool","name":"updated","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"updatePair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"weekly","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"work","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workForFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"workable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526113886001556103e8600255680ad78ebc5ac6200000600355600680546001600160a01b0319166d4946c0e9f43f4dee607b0ef1fa1c1790553480156200004a57600080fd5b50600062000057620001ff565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600480546001600160a01b0319163317815560065460405163095ea7b360e01b81526001600160a01b03919091169163095ea7b391620000e891309160001991016200022c565b602060405180830381600087803b1580156200010357600080fd5b505af115801562000118573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013e919062000203565b6200014857600080fd5b60405163095ea7b360e01b815273e3f3869ddd41c23eff3630f58e5bfa584c770d679063095ea7b3906200019990737a250d5630b4cf539739df2c5dacb4c659f2488d90600019906004016200022c565b602060405180830381600087803b158015620001b457600080fd5b505af1158015620001c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ef919062000203565b620001f957600080fd5b62000245565b3390565b60006020828403121562000215578081fd5b8151801515811462000225578182fd5b9392505050565b6001600160a01b03929092168252602082015260400190565b61396780620002556000396000f3fe6080604052600436106103545760003560e01c80638373a7ab116101c6578063c2b7bbb6116100f7578063e4463eb211610095578063f2fde38b1161006f578063f2fde38b14610960578063f39c38a014610980578063f9b7e3e014610995578063ffb0a4a0146109aa5761035b565b8063e4463eb214610916578063ec342ad01461092b578063efa7dbbd146109405761035b565b8063c88fa159116100d1578063c88fa15914610896578063c9ff6f4d146108b6578063ce16b770146108d6578063de4b5e07146108f65761035b565b8063c2b7bbb614610841578063c45a015514610861578063c640752d146108765761035b565b8063a75d39c211610164578063ae6ec9b71161013e578063ae6ec9b7146107c1578063b1f0cad1146107e1578063b866e06614610801578063bc9c5941146108215761035b565b8063a75d39c21461076c578063ab033ea91461078c578063ad5c4648146107ac5761035b565b806396ed28f9116101a057806396ed28f9146106ec5780639e8c708e1461070c5780639f4713031461072c578063a10d04381461074c5761035b565b80638373a7ab146106975780638da5cb5b146106b75780639119a8d5146106cc5761035b565b80634411935e116102a05780635aa6e6751161023e5780636a5b266d116102185780636a5b266d14610638578063715018a61461064d57806380bb2bac1461066257806381bfb885146106775761035b565b80635aa6e675146105e35780635e3198f8146105f8578063677342ce146106185761035b565b80634b71c33c1161027a5780634b71c33c146105795780634d8ea0de1461059957806352c28fab146105ae578063541bcb76146105ce5761035b565b80634411935e1461050c578063470838a01461052c5780634761703c146105595761035b565b806311a9b1281161030d578063238efcbc116102e7578063238efcbc146104ad578063322e9f04146104c2578063399b2fb9146104d75780633aecd0e3146104ec5761035b565b806311a9b1281461043e5780631b56bbf914610453578063202e1e43146104805761035b565b80630245996614610360578063064141e51461039857806309f33a70146103ba5780630a793398146103cf5780630d1e676e146103fc57806310458ddf1461041c5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b366004612f57565b6109cc565b60405161038f9392919061388a565b60405180910390f35b3480156103a457600080fd5b506103b86103b33660046131aa565b610a0b565b005b3480156103c657600080fd5b506103b8610a2a565b3480156103db57600080fd5b506103ef6103ea36600461300a565b610d0e565b60405161038f919061343f565b34801561040857600080fd5b506103b861041736600461305b565b610ff3565b34801561042857600080fd5b50610431611051565b60405161038f9190613845565b34801561044a57600080fd5b50610431611057565b34801561045f57600080fd5b5061047361046e366004612ee7565b61105d565b60405161038f9190613483565b34801561048c57600080fd5b506104a061049b366004612ee7565b611118565b60405161038f9190613824565b3480156104b957600080fd5b506103b8611186565b3480156104ce57600080fd5b506103b86111d4565b3480156104e357600080fd5b506103b8611584565b3480156104f857600080fd5b50610431610507366004612ee7565b611657565b34801561051857600080fd5b506104316105273660046132b0565b6116d6565b34801561053857600080fd5b5061054c610547366004612ee7565b6116f2565b60405161038f919061339b565b34801561056557600080fd5b506103ef610574366004612fc3565b611727565b34801561058557600080fd5b506103ef610594366004612fc3565b611741565b3480156105a557600080fd5b5061054c611751565b3480156105ba57600080fd5b506103b86105c9366004612f1f565b611763565b3480156105da57600080fd5b5061054c611785565b3480156105ef57600080fd5b5061054c61179d565b34801561060457600080fd5b506103b861061336600461325f565b6117ac565b34801561062457600080fd5b5061043161063336600461325f565b6117e6565b34801561064457600080fd5b5061054c611818565b34801561065957600080fd5b506103b8611827565b34801561066e57600080fd5b506104736118a6565b34801561068357600080fd5b50610431610692366004612ee7565b6118fe565b3480156106a357600080fd5b506104316106b23660046130f3565b611919565b3480156106c357600080fd5b5061054c6119ac565b3480156106d857600080fd5b506104316106e7366004612f82565b6119bb565b3480156106f857600080fd5b5061054c610707366004612f1f565b6119d7565b34801561071857600080fd5b506103b8610727366004612ee7565b611a01565b34801561073857600080fd5b50610473610747366004612ee7565b611a47565b34801561075857600080fd5b50610431610767366004612f82565b611a5f565b34801561077857600080fd5b50610431610787366004612f82565b611a73565b34801561079857600080fd5b506103b86107a7366004612ee7565b611bc4565b3480156107b857600080fd5b5061054c611c10565b3480156107cd57600080fd5b506104316107dc366004612fc3565b611c28565b3480156107ed57600080fd5b506104316107fc36600461300a565b611ece565b34801561080d57600080fd5b5061043161081c36600461325f565b611eea565b34801561082d57600080fd5b506103ef61083c366004612fc3565b611f07565b34801561084d57600080fd5b506103b861085c366004612ee7565b611f17565b34801561086d57600080fd5b5061054c611f4a565b34801561088257600080fd5b50610473610891366004612f1f565b611f62565b3480156108a257600080fd5b506103b86108b136600461325f565b612038565b3480156108c257600080fd5b506104736108d136600461328f565b612067565b3480156108e257600080fd5b506103b86108f136600461325f565b612157565b34801561090257600080fd5b50610431610911366004612f82565b612191565b34801561092257600080fd5b506104316121a6565b34801561093757600080fd5b506104316121ac565b34801561094c57600080fd5b506103ef61095b366004612fc3565b6121b2565b34801561096c57600080fd5b506103b861097b366004612ee7565b6121c2565b34801561098c57600080fd5b5061054c612278565b3480156109a157600080fd5b50610431612287565b3480156109b657600080fd5b506109bf61228d565b60405161038f919061342c565b600960205281600052604060002081815481106109e557fe5b600091825260209091206003909102018054600182015460029092015490935090915083565b6000610a1684611919565b9050610a238184846116d6565b5050505050565b610a326122ef565b6000546001600160a01b03908116911614610a685760405162461bcd60e51b8152600401610a5f906136b8565b60405180910390fd5b604051630637cd7f60e41b81526000906000805160206139128339815191529063637cd7f090610a9e90309084906004016133af565b60206040518083038186803b158015610ab657600080fd5b505afa158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aee9190613277565b905060006000805160206139128339815191526001600160a01b031663637cd7f0306000805160206139128339815191526001600160a01b0316638322fff26040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5757600080fd5b505afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190612f03565b6040518363ffffffff1660e01b8152600401610bac9291906133af565b60206040518083038186803b158015610bc457600080fd5b505afa158015610bd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfc9190613277565b90508115610c7357600080516020613912833981519152638d9acd2e81610c216119ac565b856040518463ffffffff1660e01b8152600401610c4093929190613408565b600060405180830381600087803b158015610c5a57600080fd5b505af1158015610c6e573d6000803e3d6000fd5b505050505b8015610ce657600080516020613912833981519152632119a62a610c956119ac565b836040518363ffffffff1660e01b8152600401610cb39291906133c9565b600060405180830381600087803b158015610ccd57600080fd5b505af1158015610ce1573d6000803e3d6000fd5b505050505b600654610cfb906001600160a01b0316611a01565b610d036119ac565b6001600160a01b0316ff5b60606000610d31735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f88876122f3565b90506000610d3f8887612363565b50905060608567ffffffffffffffff81118015610d5b57600080fd5b50604051908082528060200260200182016040528015610d85578160200160208202803683370190505b506001600160a01b03841660009081526009602052604081205491925060001990910190610db5828989026123ed565b90506000808c6001600160a01b0316866001600160a01b03161415610f05575b83831015610f00576001600160a01b03871660009081526009602052604090208054848b019350610edd919085908110610e0b57fe5b906000526020600020906003020160010154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208481548110610e4d57fe5b906000526020600020906003020160010154600960008b6001600160a01b03166001600160a01b031681526020019081526020016000208681548110610e8f57fe5b600091825260208083206003909202909101546001600160a01b038d16835260099091526040909120805487908110610ec457fe5b906000526020600020906003020160000154038f61242f565b858281518110610ee957fe5b602090810291909101015291880191600101610dd5565b610fe2565b83831015610fe2576001600160a01b03871660009081526009602052604090208054848b019350610fbf919085908110610f3b57fe5b906000526020600020906003020160020154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208481548110610f7d57fe5b906000526020600020906003020160020154600960008b6001600160a01b03166001600160a01b031681526020019081526020016000208681548110610e8f57fe5b858281518110610fcb57fe5b602090810291909101015291880191600101610f05565b50929b9a5050505050505050505050565b6004546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610a5f9061358a565b60005b815181101561104d5761104582828151811061103857fe5b602002602001015161248d565b600101611020565b5050565b60025481565b60035481565b600354604051630e4b131b60e21b81526000916000805160206139128339815191529163392c4c6c9161109991339190869081906004016133e2565b602060405180830381600087803b1580156110b357600080fd5b505af11580156110c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110eb91906131f6565b6111075760405162461bcd60e51b8152600401610a5f906134e1565b61111082612599565b90505b919050565b611120612e28565b6001600160a01b03821660009081526009602052604090208054600019810190811061114857fe5b906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820154815250509050919050565b6005546001600160a01b031633146111b05760405162461bcd60e51b8152600401610a5f9061370c565b600554600480546001600160a01b0319166001600160a01b03909216919091179055565b60005a600354604051630e4b131b60e21b81529192506000805160206139128339815191529163392c4c6c916112149133919060009081906004016133e2565b602060405180830381600087803b15801561122e57600080fd5b505af1158015611242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126691906131f6565b6112825760405162461bcd60e51b8152600401610a5f906134e1565b600061128c61263e565b9050806112ab5760405162461bcd60e51b8152600401610a5f906137f4565b5060006112b95a83906123ed565b60065460405163079d229f60e01b81529192506010360283016152088101926001600160a01b039092169163079d229f9161130391309161a3db61895290910104906004016133c9565b602060405180830381600087803b15801561131d57600080fd5b505af1158015611331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113559190613277565b5060006000805160206139128339815191526001600160a01b031663f57cb3826040518163ffffffff1660e01b815260040160206040518083038186803b15801561139f57600080fd5b505afa1580156113b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d79190612f03565b6001600160a01b031663525ea631846040518263ffffffff1660e01b81526004016114029190613845565b60206040518083038186803b15801561141a57600080fd5b505afa15801561142e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114529190613277565b9050600061145f82611eea565b9050600080516020613912833981519152638d9acd2e81306114818686612672565b6040518463ffffffff1660e01b815260040161149f93929190613408565b600060405180830381600087803b1580156114b957600080fd5b505af11580156114cd573d6000803e3d6000fd5b505050506114db8282612697565b9150600061150a6115036127106114fd600254876129e490919063ffffffff16565b90612a1e565b84906123ed565b604051909150339082156108fc029083906000818181858888f1935050505015801561153a573d6000803e3d6000fd5b506115436119ac565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561157b573d6000803e3d6000fd5b50505050505050565b600354604051630e4b131b60e21b81526000805160206139128339815191529163392c4c6c916115bd91339160009081906004016133e2565b602060405180830381600087803b1580156115d757600080fd5b505af11580156115eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160f91906131f6565b61162b5760405162461bcd60e51b8152600401610a5f906134e1565b600061163561263e565b9050806116545760405162461bcd60e51b8152600401610a5f906137f4565b50565b6040516370a0823160e01b81526000906001600160a01b038316906370a082319061168690309060040161339b565b60206040518083038186803b15801561169e57600080fd5b505afa1580156116b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111109190613277565b60006116e1826117e6565b8385602802020290505b9392505050565b6000611110735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26122f3565b606061173885858585610150610d0e565b95945050505050565b6060611738858585856030610d0e565b60008051602061391283398151915281565b61104d61085c735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f84846122f3565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6004546001600160a01b031681565b6117b46122ef565b6000546001600160a01b039081169116146117e15760405162461bcd60e51b8152600401610a5f906136b8565b600255565b600060026001830104825b808210156116eb57508060028180868161180757fe5b04018161181057fe5b0491506117f1565b6006546001600160a01b031681565b61182f6122ef565b6000546001600160a01b0390811691161461185c5760405162461bcd60e51b8152600401610a5f906136b8565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000805b6007548110156118f5576118de600782815481106118c457fe5b6000918252602090912001546001600160a01b0316611a47565b156118ed5760019150506118fb565b6001016118aa565b50600090505b90565b6001600160a01b031660009081526009602052604090205490565b600080805b835181101561194c5783818151811061193357fe5b602002602001015182019150808060010191505061191e565b5060008351828161195957fe5b0490506000915060005b84518110156119965760028286838151811061197b57fe5b6020026020010151030a830192508080600101915050611963565b611738600186510384816119a657fe5b046117e6565b6000546001600160a01b031690565b60006119cf6106b285858560016030610d0e565b949350505050565b60006119f8735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f84846122f3565b90505b92915050565b611a096122ef565b6000546001600160a01b03908116911614611a365760405162461bcd60e51b8152600401610a5f906136b8565b61165481611a426119ac565b612a60565b6000610708611a5583611118565b5142031192915050565b60006119cf6106b285858560016002610d0e565b600080611a95735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f86856122f3565b9050611aad81611aa861070860026129e4565b612aed565b611ac95760405162461bcd60e51b8152600401610a5f90613633565b6000611ad58685612363565b509050611ae0612e28565b611ae983611118565b9050600080611af785612b05565b5084519193509150421415611b68576001600160a01b038516600090815260096020526040902080546001198101908110611b2e57fe5b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505b825142038015611b785780611b7b565b60015b9050896001600160a01b0316856001600160a01b03161415611bb457611ba7846020015184838c61242f565b96505050505050506116eb565b611ba7846040015183838c61242f565b6004546001600160a01b03163314611bee5760405162461bcd60e51b8152600401610a5f906135c1565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600080611c4a735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f87866122f3565b9050611c5c81611aa8610708866129e4565b611c785760405162461bcd60e51b8152600401610a5f90613633565b6000611c848786612363565b506001600160a01b038316600090815260096020526040812054919250906000190181611cb182886123ed565b905060008a6001600160a01b0316856001600160a01b03161415611dec575b82821015611de757506001600160a01b038516600090815260096020526040902080546001830191611dd89184908110611d0657fe5b90600052602060002090600302016001015460096000896001600160a01b03166001600160a01b031681526020019081526020016000208381548110611d4857fe5b906000526020600020906003020160010154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208581548110611d8a57fe5b600091825260208083206003909202909101546001600160a01b038c16835260099091526040909120805486908110611dbf57fe5b906000526020600020906003020160000154038d61242f565b90930192600190910190611cd0565b611eb5565b82821015611eb557506001600160a01b038516600090815260096020526040902080546001830191611ea69184908110611e2257fe5b90600052602060002090600302016002015460096000896001600160a01b03166001600160a01b031681526020019081526020016000208381548110611e6457fe5b906000526020600020906003020160020154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208581548110611d8a57fe5b90930192600190910190611dec565b611ebf8489612a1e565b9b9a5050505050505050505050565b6000611ee06106b28787878787610d0e565b9695505050505050565b60006111106127106114fd600154856129e490919063ffffffff16565b6060611738858585856001610d0e565b6004546001600160a01b03163314611f415760405162461bcd60e51b8152600401610a5f9061358a565b6116548161248d565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b600354604051630e4b131b60e21b81526000916000805160206139128339815191529163392c4c6c91611f9e91339190869081906004016133e2565b602060405180830381600087803b158015611fb857600080fd5b505af1158015611fcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff091906131f6565b61200c5760405162461bcd60e51b8152600401610a5f906134e1565b600061202d735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f85856122f3565b90506119cf81612599565b6004546001600160a01b031633146120625760405162461bcd60e51b8152600401610a5f906135c1565b600355565b600354604051630e4b131b60e21b81526000916000805160206139128339815191529163392c4c6c916120a391339190869081906004016133e2565b602060405180830381600087803b1580156120bd57600080fd5b505af11580156120d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f591906131f6565b6121115760405162461bcd60e51b8152600401610a5f906134e1565b818310156119fb576121436007848154811061212957fe5b6000918252602090912001546001600160a01b0316612599565b1561214c575060015b600190920191612111565b61215f6122ef565b6000546001600160a01b0390811691161461218c5760405162461bcd60e51b8152600401610a5f906136b8565b600155565b60006119cf6106b28585856001610150610d0e565b61070881565b61271081565b6060611738858585856002610d0e565b6121ca6122ef565b6000546001600160a01b039081169116146121f75760405162461bcd60e51b8152600401610a5f906136b8565b6001600160a01b03811661221d5760405162461bcd60e51b8152600401610a5f9061350d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031681565b60015481565b606060078054806020026020016040519081016040528092919081815260200182805480156122e557602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116122c7575b5050505050905090565b3390565b60008060006123028585612363565b9150915085828260405160200161231a92919061331e565b60405160208183030381529060405280519060200120604051602001612341929190613345565b60408051601f1981840301815291905280516020909101209695505050505050565b600080826001600160a01b0316846001600160a01b031614156123985760405162461bcd60e51b8152600401610a5f906135ee565b826001600160a01b0316846001600160a01b0316106123b85782846123bb565b83835b90925090506001600160a01b0382166123e65760405162461bcd60e51b8152600401610a5f90613786565b9250929050565b60006119f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cda565b6000612439612e49565b6040518060200160405280858888038161244f57fe5b046001600160e01b03169052905061246f61246a8285612d06565b612d65565b71ffffffffffffffffffffffffffffffffffff169695505050505050565b6001600160a01b03811660009081526008602052604090205460ff16156124c65760405162461bcd60e51b8152600401610a5f906136ed565b6001600160a01b0381166000818152600860205260408120805460ff1916600190811790915560078054918201815582527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169092179091558061253583612b05565b506001600160a01b039094166000908152600960209081526040808320815160608101835242815280840195865291820197885280546001818101835591855292909320905160039092020190815591519082015592516002909301929092555050565b60006125a3612e28565b6125ac83611118565b80519091504203610708811115612634576000806125c986612b05565b506001600160a01b03881660009081526009602090815260408083208151606081018352428152808401968752918201948552805460018181018355918552929093209051600390920201908155925183820155905160029092019190915594506111139350505050565b5060009392505050565b6000805b60075481101561266e5761265c6007828154811061212957fe5b1561266657600191505b600101612642565b5090565b6000828201838110156119f85760405162461bcd60e51b8152600401610a5f90613553565b6040805160028082526060808301845260009390929190602083019080368337019050509050600080516020613912833981519152816000815181106126d957fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061271b57fe5b6001600160a01b03909216602092830291909101909101526060737a250d5630b4cf539739df2c5dacb4c659f2488d6338ed1739866000853061276042610708612672565b6040518663ffffffff1660e01b815260040161278095949392919061384e565b600060405180830381600087803b15801561279a57600080fd5b505af11580156127ae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127d69190810190613126565b905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d8260018151811061280857fe5b60200260200101516040518263ffffffff1660e01b815260040161282c9190613845565b600060405180830381600087803b15801561284657600080fd5b505af115801561285a573d6000803e3d6000fd5b5050604080516003808252608082019092526060935091506020820183803683370190505090506000805160206139128339815191528160008151811061289d57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106128df57fe5b6001600160a01b03928316602091820292909201015260065482519116908290600290811061290a57fe5b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d6338ed1739866000843061294d42610708612672565b6040518663ffffffff1660e01b815260040161296d95949392919061384e565b600060405180830381600087803b15801561298757600080fd5b505af115801561299b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526129c39190810190613126565b50816001815181106129d157fe5b6020026020010151935050505092915050565b6000826129f3575060006119fb565b82820282848281612a0057fe5b04146119f85760405162461bcd60e51b8152600401610a5f90613677565b60006119f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d6c565b816001600160a01b031663a9059cbb82612a7985611657565b6040518363ffffffff1660e01b8152600401612a969291906133c9565b602060405180830381600087803b158015612ab057600080fd5b505af1158015612ac4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae891906131f6565b505050565b600081612af984611118565b51420311159392505050565b6000806000612b12612da3565b9050836001600160a01b0316635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b158015612b4d57600080fd5b505afa158015612b61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b859190613277565b9250836001600160a01b0316635a3d54936040518163ffffffff1660e01b815260040160206040518083038186803b158015612bc057600080fd5b505afa158015612bd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf89190613277565b91506000806000866001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015612c3857600080fd5b505afa158015612c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c709190613216565b9250925092508363ffffffff168163ffffffff1614612cd05780840363ffffffff8116612c9d8486612dad565b516001600160e01b031602969096019563ffffffff8116612cbe8585612dad565b516001600160e01b0316029590950194505b5050509193909250565b60008184841115612cfe5760405162461bcd60e51b8152600401610a5f919061348e565b505050900390565b612d0e612e5b565b6000821580612d3457505082516001600160e01b031682810290838281612d3157fe5b04145b612d505760405162461bcd60e51b8152600401610a5f90613743565b60408051602081019091529081529392505050565b5160701c90565b60008183612d8d5760405162461bcd60e51b8152600401610a5f919061348e565b506000838581612d9957fe5b0495945050505050565b63ffffffff421690565b612db5612e49565b6000826001600160701b031611612dde5760405162461bcd60e51b8152600401610a5f906137bd565b6040805160208101909152806001600160701b0384166dffffffffffffffffffffffffffff60701b607087901b1681612e1357fe5b046001600160e01b0316815250905092915050565b60405180606001604052806000815260200160008152602001600081525090565b60408051602081019091526000815290565b6040518060200160405280600081525090565b80356119fb816138e7565b600082601f830112612e89578081fd5b8135612e9c612e97826138c7565b6138a0565b818152915060208083019084810181840286018201871015612ebd57600080fd5b60005b84811015612edc57813584529282019290820190600101612ec0565b505050505092915050565b600060208284031215612ef8578081fd5b81356119f8816138e7565b600060208284031215612f14578081fd5b81516119f8816138e7565b60008060408385031215612f31578081fd5b8235612f3c816138e7565b91506020830135612f4c816138e7565b809150509250929050565b60008060408385031215612f69578182fd5b8235612f74816138e7565b946020939093013593505050565b600080600060608486031215612f96578081fd5b8335612fa1816138e7565b9250602084013591506040840135612fb8816138e7565b809150509250925092565b60008060008060808587031215612fd8578081fd5b8435612fe3816138e7565b9350602085013592506040850135612ffa816138e7565b9396929550929360600135925050565b600080600080600060a08688031215613021578081fd5b853561302c816138e7565b9450602086013593506040860135613043816138e7565b94979396509394606081013594506080013592915050565b6000602080838503121561306d578182fd5b823567ffffffffffffffff811115613083578283fd5b8301601f81018513613093578283fd5b80356130a1612e97826138c7565b81815283810190838501858402850186018910156130bd578687fd5b8694505b838510156130e7576130d38982612e6e565b8352600194909401939185019185016130c1565b50979650505050505050565b600060208284031215613104578081fd5b813567ffffffffffffffff81111561311a578182fd5b6119cf84828501612e79565b60006020808385031215613138578182fd5b825167ffffffffffffffff81111561314e578283fd5b8301601f8101851361315e578283fd5b805161316c612e97826138c7565b8181528381019083850185840285018601891015613188578687fd5b8694505b838510156130e757805183526001949094019391850191850161318c565b6000806000606084860312156131be578283fd5b833567ffffffffffffffff8111156131d4578384fd5b6131e086828701612e79565b9660208601359650604090950135949350505050565b600060208284031215613207578081fd5b815180151581146119f8578182fd5b60008060006060848603121561322a578081fd5b8351613235816138fc565b6020850151909350613246816138fc565b604085015190925063ffffffff81168114612fb8578182fd5b600060208284031215613270578081fd5b5035919050565b600060208284031215613288578081fd5b5051919050565b600080604083850312156132a1578182fd5b50508035926020909101359150565b6000806000606084860312156132c4578081fd5b505081359360208301359350604090920135919050565b6000815180845260208085019450808401835b838110156133135781516001600160a01b0316875295820195908201906001016132ee565b509495945050505050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b6001600160f81b0319815260609290921b6bffffffffffffffffffffffff1916600183015260158201527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f603582015260550190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602082526119f860208301846132db565b6020808252825182820181905260009190848201906040850190845b818110156134775783518352928401929184019160010161345b565b50909695505050505050565b901515815260200190565b6000602080835283518082850152825b818110156134ba5785810183015185820160400152820161349e565b818111156134cb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601290820152711d1d34b9a637b1b5b2b91d10b637b1b599b960711b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601a908201527f556e697377617056324f7261636c653a3a6164643a2021676f76000000000000604082015260600190565b60208082526013908201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604082015260600190565b60208082526025908201527f556e697377617056324c6962726172793a204944454e544943414c5f41444452604082015264455353455360d81b606082015260800190565b60208082526024908201527f556e697377617056324f7261636c653a3a71756f74653a207374616c652070726040820152636963657360e01b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526005908201526435b737bbb760d91b604082015260600190565b6020808252601d908201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604082015260600190565b60208082526023908201527f4669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552466040820152624c4f5760e81b606082015260800190565b6020808252601e908201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604082015260600190565b60208082526017908201527f4669786564506f696e743a204449565f42595f5a45524f000000000000000000604082015260600190565b602080825260169082015275556e697377617056324f7261636c653a2021776f726b60501b604082015260600190565b81518152602080830151908201526040918201519181019190915260600190565b90815260200190565b600086825285602083015260a0604083015261386d60a08301866132db565b6001600160a01b0394909416606083015250608001529392505050565b9283526020830191909152604082015260600190565b60405181810167ffffffffffffffff811182821017156138bf57600080fd5b604052919050565b600067ffffffffffffffff8211156138dd578081fd5b5060209081020190565b6001600160a01b038116811461165457600080fd5b6001600160701b038116811461165457600080fdfe000000000000000000000000e3f3869ddd41c23eff3630f58e5bfa584c770d67a2646970667358221220926a40dc4d5950507fc1bc8432a750e62dcf066bf4750c2315cf15426ab4db8564736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106103545760003560e01c80638373a7ab116101c6578063c2b7bbb6116100f7578063e4463eb211610095578063f2fde38b1161006f578063f2fde38b14610960578063f39c38a014610980578063f9b7e3e014610995578063ffb0a4a0146109aa5761035b565b8063e4463eb214610916578063ec342ad01461092b578063efa7dbbd146109405761035b565b8063c88fa159116100d1578063c88fa15914610896578063c9ff6f4d146108b6578063ce16b770146108d6578063de4b5e07146108f65761035b565b8063c2b7bbb614610841578063c45a015514610861578063c640752d146108765761035b565b8063a75d39c211610164578063ae6ec9b71161013e578063ae6ec9b7146107c1578063b1f0cad1146107e1578063b866e06614610801578063bc9c5941146108215761035b565b8063a75d39c21461076c578063ab033ea91461078c578063ad5c4648146107ac5761035b565b806396ed28f9116101a057806396ed28f9146106ec5780639e8c708e1461070c5780639f4713031461072c578063a10d04381461074c5761035b565b80638373a7ab146106975780638da5cb5b146106b75780639119a8d5146106cc5761035b565b80634411935e116102a05780635aa6e6751161023e5780636a5b266d116102185780636a5b266d14610638578063715018a61461064d57806380bb2bac1461066257806381bfb885146106775761035b565b80635aa6e675146105e35780635e3198f8146105f8578063677342ce146106185761035b565b80634b71c33c1161027a5780634b71c33c146105795780634d8ea0de1461059957806352c28fab146105ae578063541bcb76146105ce5761035b565b80634411935e1461050c578063470838a01461052c5780634761703c146105595761035b565b806311a9b1281161030d578063238efcbc116102e7578063238efcbc146104ad578063322e9f04146104c2578063399b2fb9146104d75780633aecd0e3146104ec5761035b565b806311a9b1281461043e5780631b56bbf914610453578063202e1e43146104805761035b565b80630245996614610360578063064141e51461039857806309f33a70146103ba5780630a793398146103cf5780630d1e676e146103fc57806310458ddf1461041c5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b366004612f57565b6109cc565b60405161038f9392919061388a565b60405180910390f35b3480156103a457600080fd5b506103b86103b33660046131aa565b610a0b565b005b3480156103c657600080fd5b506103b8610a2a565b3480156103db57600080fd5b506103ef6103ea36600461300a565b610d0e565b60405161038f919061343f565b34801561040857600080fd5b506103b861041736600461305b565b610ff3565b34801561042857600080fd5b50610431611051565b60405161038f9190613845565b34801561044a57600080fd5b50610431611057565b34801561045f57600080fd5b5061047361046e366004612ee7565b61105d565b60405161038f9190613483565b34801561048c57600080fd5b506104a061049b366004612ee7565b611118565b60405161038f9190613824565b3480156104b957600080fd5b506103b8611186565b3480156104ce57600080fd5b506103b86111d4565b3480156104e357600080fd5b506103b8611584565b3480156104f857600080fd5b50610431610507366004612ee7565b611657565b34801561051857600080fd5b506104316105273660046132b0565b6116d6565b34801561053857600080fd5b5061054c610547366004612ee7565b6116f2565b60405161038f919061339b565b34801561056557600080fd5b506103ef610574366004612fc3565b611727565b34801561058557600080fd5b506103ef610594366004612fc3565b611741565b3480156105a557600080fd5b5061054c611751565b3480156105ba57600080fd5b506103b86105c9366004612f1f565b611763565b3480156105da57600080fd5b5061054c611785565b3480156105ef57600080fd5b5061054c61179d565b34801561060457600080fd5b506103b861061336600461325f565b6117ac565b34801561062457600080fd5b5061043161063336600461325f565b6117e6565b34801561064457600080fd5b5061054c611818565b34801561065957600080fd5b506103b8611827565b34801561066e57600080fd5b506104736118a6565b34801561068357600080fd5b50610431610692366004612ee7565b6118fe565b3480156106a357600080fd5b506104316106b23660046130f3565b611919565b3480156106c357600080fd5b5061054c6119ac565b3480156106d857600080fd5b506104316106e7366004612f82565b6119bb565b3480156106f857600080fd5b5061054c610707366004612f1f565b6119d7565b34801561071857600080fd5b506103b8610727366004612ee7565b611a01565b34801561073857600080fd5b50610473610747366004612ee7565b611a47565b34801561075857600080fd5b50610431610767366004612f82565b611a5f565b34801561077857600080fd5b50610431610787366004612f82565b611a73565b34801561079857600080fd5b506103b86107a7366004612ee7565b611bc4565b3480156107b857600080fd5b5061054c611c10565b3480156107cd57600080fd5b506104316107dc366004612fc3565b611c28565b3480156107ed57600080fd5b506104316107fc36600461300a565b611ece565b34801561080d57600080fd5b5061043161081c36600461325f565b611eea565b34801561082d57600080fd5b506103ef61083c366004612fc3565b611f07565b34801561084d57600080fd5b506103b861085c366004612ee7565b611f17565b34801561086d57600080fd5b5061054c611f4a565b34801561088257600080fd5b50610473610891366004612f1f565b611f62565b3480156108a257600080fd5b506103b86108b136600461325f565b612038565b3480156108c257600080fd5b506104736108d136600461328f565b612067565b3480156108e257600080fd5b506103b86108f136600461325f565b612157565b34801561090257600080fd5b50610431610911366004612f82565b612191565b34801561092257600080fd5b506104316121a6565b34801561093757600080fd5b506104316121ac565b34801561094c57600080fd5b506103ef61095b366004612fc3565b6121b2565b34801561096c57600080fd5b506103b861097b366004612ee7565b6121c2565b34801561098c57600080fd5b5061054c612278565b3480156109a157600080fd5b50610431612287565b3480156109b657600080fd5b506109bf61228d565b60405161038f919061342c565b600960205281600052604060002081815481106109e557fe5b600091825260209091206003909102018054600182015460029092015490935090915083565b6000610a1684611919565b9050610a238184846116d6565b5050505050565b610a326122ef565b6000546001600160a01b03908116911614610a685760405162461bcd60e51b8152600401610a5f906136b8565b60405180910390fd5b604051630637cd7f60e41b81526000906000805160206139128339815191529063637cd7f090610a9e90309084906004016133af565b60206040518083038186803b158015610ab657600080fd5b505afa158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aee9190613277565b905060006000805160206139128339815191526001600160a01b031663637cd7f0306000805160206139128339815191526001600160a01b0316638322fff26040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5757600080fd5b505afa158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8f9190612f03565b6040518363ffffffff1660e01b8152600401610bac9291906133af565b60206040518083038186803b158015610bc457600080fd5b505afa158015610bd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfc9190613277565b90508115610c7357600080516020613912833981519152638d9acd2e81610c216119ac565b856040518463ffffffff1660e01b8152600401610c4093929190613408565b600060405180830381600087803b158015610c5a57600080fd5b505af1158015610c6e573d6000803e3d6000fd5b505050505b8015610ce657600080516020613912833981519152632119a62a610c956119ac565b836040518363ffffffff1660e01b8152600401610cb39291906133c9565b600060405180830381600087803b158015610ccd57600080fd5b505af1158015610ce1573d6000803e3d6000fd5b505050505b600654610cfb906001600160a01b0316611a01565b610d036119ac565b6001600160a01b0316ff5b60606000610d31735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f88876122f3565b90506000610d3f8887612363565b50905060608567ffffffffffffffff81118015610d5b57600080fd5b50604051908082528060200260200182016040528015610d85578160200160208202803683370190505b506001600160a01b03841660009081526009602052604081205491925060001990910190610db5828989026123ed565b90506000808c6001600160a01b0316866001600160a01b03161415610f05575b83831015610f00576001600160a01b03871660009081526009602052604090208054848b019350610edd919085908110610e0b57fe5b906000526020600020906003020160010154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208481548110610e4d57fe5b906000526020600020906003020160010154600960008b6001600160a01b03166001600160a01b031681526020019081526020016000208681548110610e8f57fe5b600091825260208083206003909202909101546001600160a01b038d16835260099091526040909120805487908110610ec457fe5b906000526020600020906003020160000154038f61242f565b858281518110610ee957fe5b602090810291909101015291880191600101610dd5565b610fe2565b83831015610fe2576001600160a01b03871660009081526009602052604090208054848b019350610fbf919085908110610f3b57fe5b906000526020600020906003020160020154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208481548110610f7d57fe5b906000526020600020906003020160020154600960008b6001600160a01b03166001600160a01b031681526020019081526020016000208681548110610e8f57fe5b858281518110610fcb57fe5b602090810291909101015291880191600101610f05565b50929b9a5050505050505050505050565b6004546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610a5f9061358a565b60005b815181101561104d5761104582828151811061103857fe5b602002602001015161248d565b600101611020565b5050565b60025481565b60035481565b600354604051630e4b131b60e21b81526000916000805160206139128339815191529163392c4c6c9161109991339190869081906004016133e2565b602060405180830381600087803b1580156110b357600080fd5b505af11580156110c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110eb91906131f6565b6111075760405162461bcd60e51b8152600401610a5f906134e1565b61111082612599565b90505b919050565b611120612e28565b6001600160a01b03821660009081526009602052604090208054600019810190811061114857fe5b906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820154815250509050919050565b6005546001600160a01b031633146111b05760405162461bcd60e51b8152600401610a5f9061370c565b600554600480546001600160a01b0319166001600160a01b03909216919091179055565b60005a600354604051630e4b131b60e21b81529192506000805160206139128339815191529163392c4c6c916112149133919060009081906004016133e2565b602060405180830381600087803b15801561122e57600080fd5b505af1158015611242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126691906131f6565b6112825760405162461bcd60e51b8152600401610a5f906134e1565b600061128c61263e565b9050806112ab5760405162461bcd60e51b8152600401610a5f906137f4565b5060006112b95a83906123ed565b60065460405163079d229f60e01b81529192506010360283016152088101926001600160a01b039092169163079d229f9161130391309161a3db61895290910104906004016133c9565b602060405180830381600087803b15801561131d57600080fd5b505af1158015611331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113559190613277565b5060006000805160206139128339815191526001600160a01b031663f57cb3826040518163ffffffff1660e01b815260040160206040518083038186803b15801561139f57600080fd5b505afa1580156113b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d79190612f03565b6001600160a01b031663525ea631846040518263ffffffff1660e01b81526004016114029190613845565b60206040518083038186803b15801561141a57600080fd5b505afa15801561142e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114529190613277565b9050600061145f82611eea565b9050600080516020613912833981519152638d9acd2e81306114818686612672565b6040518463ffffffff1660e01b815260040161149f93929190613408565b600060405180830381600087803b1580156114b957600080fd5b505af11580156114cd573d6000803e3d6000fd5b505050506114db8282612697565b9150600061150a6115036127106114fd600254876129e490919063ffffffff16565b90612a1e565b84906123ed565b604051909150339082156108fc029083906000818181858888f1935050505015801561153a573d6000803e3d6000fd5b506115436119ac565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561157b573d6000803e3d6000fd5b50505050505050565b600354604051630e4b131b60e21b81526000805160206139128339815191529163392c4c6c916115bd91339160009081906004016133e2565b602060405180830381600087803b1580156115d757600080fd5b505af11580156115eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160f91906131f6565b61162b5760405162461bcd60e51b8152600401610a5f906134e1565b600061163561263e565b9050806116545760405162461bcd60e51b8152600401610a5f906137f4565b50565b6040516370a0823160e01b81526000906001600160a01b038316906370a082319061168690309060040161339b565b60206040518083038186803b15801561169e57600080fd5b505afa1580156116b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111109190613277565b60006116e1826117e6565b8385602802020290505b9392505050565b6000611110735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26122f3565b606061173885858585610150610d0e565b95945050505050565b6060611738858585856030610d0e565b60008051602061391283398151915281565b61104d61085c735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f84846122f3565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6004546001600160a01b031681565b6117b46122ef565b6000546001600160a01b039081169116146117e15760405162461bcd60e51b8152600401610a5f906136b8565b600255565b600060026001830104825b808210156116eb57508060028180868161180757fe5b04018161181057fe5b0491506117f1565b6006546001600160a01b031681565b61182f6122ef565b6000546001600160a01b0390811691161461185c5760405162461bcd60e51b8152600401610a5f906136b8565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000805b6007548110156118f5576118de600782815481106118c457fe5b6000918252602090912001546001600160a01b0316611a47565b156118ed5760019150506118fb565b6001016118aa565b50600090505b90565b6001600160a01b031660009081526009602052604090205490565b600080805b835181101561194c5783818151811061193357fe5b602002602001015182019150808060010191505061191e565b5060008351828161195957fe5b0490506000915060005b84518110156119965760028286838151811061197b57fe5b6020026020010151030a830192508080600101915050611963565b611738600186510384816119a657fe5b046117e6565b6000546001600160a01b031690565b60006119cf6106b285858560016030610d0e565b949350505050565b60006119f8735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f84846122f3565b90505b92915050565b611a096122ef565b6000546001600160a01b03908116911614611a365760405162461bcd60e51b8152600401610a5f906136b8565b61165481611a426119ac565b612a60565b6000610708611a5583611118565b5142031192915050565b60006119cf6106b285858560016002610d0e565b600080611a95735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f86856122f3565b9050611aad81611aa861070860026129e4565b612aed565b611ac95760405162461bcd60e51b8152600401610a5f90613633565b6000611ad58685612363565b509050611ae0612e28565b611ae983611118565b9050600080611af785612b05565b5084519193509150421415611b68576001600160a01b038516600090815260096020526040902080546001198101908110611b2e57fe5b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505b825142038015611b785780611b7b565b60015b9050896001600160a01b0316856001600160a01b03161415611bb457611ba7846020015184838c61242f565b96505050505050506116eb565b611ba7846040015183838c61242f565b6004546001600160a01b03163314611bee5760405162461bcd60e51b8152600401610a5f906135c1565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600080611c4a735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f87866122f3565b9050611c5c81611aa8610708866129e4565b611c785760405162461bcd60e51b8152600401610a5f90613633565b6000611c848786612363565b506001600160a01b038316600090815260096020526040812054919250906000190181611cb182886123ed565b905060008a6001600160a01b0316856001600160a01b03161415611dec575b82821015611de757506001600160a01b038516600090815260096020526040902080546001830191611dd89184908110611d0657fe5b90600052602060002090600302016001015460096000896001600160a01b03166001600160a01b031681526020019081526020016000208381548110611d4857fe5b906000526020600020906003020160010154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208581548110611d8a57fe5b600091825260208083206003909202909101546001600160a01b038c16835260099091526040909120805486908110611dbf57fe5b906000526020600020906003020160000154038d61242f565b90930192600190910190611cd0565b611eb5565b82821015611eb557506001600160a01b038516600090815260096020526040902080546001830191611ea69184908110611e2257fe5b90600052602060002090600302016002015460096000896001600160a01b03166001600160a01b031681526020019081526020016000208381548110611e6457fe5b906000526020600020906003020160020154600960008a6001600160a01b03166001600160a01b031681526020019081526020016000208581548110611d8a57fe5b90930192600190910190611dec565b611ebf8489612a1e565b9b9a5050505050505050505050565b6000611ee06106b28787878787610d0e565b9695505050505050565b60006111106127106114fd600154856129e490919063ffffffff16565b6060611738858585856001610d0e565b6004546001600160a01b03163314611f415760405162461bcd60e51b8152600401610a5f9061358a565b6116548161248d565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b600354604051630e4b131b60e21b81526000916000805160206139128339815191529163392c4c6c91611f9e91339190869081906004016133e2565b602060405180830381600087803b158015611fb857600080fd5b505af1158015611fcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff091906131f6565b61200c5760405162461bcd60e51b8152600401610a5f906134e1565b600061202d735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f85856122f3565b90506119cf81612599565b6004546001600160a01b031633146120625760405162461bcd60e51b8152600401610a5f906135c1565b600355565b600354604051630e4b131b60e21b81526000916000805160206139128339815191529163392c4c6c916120a391339190869081906004016133e2565b602060405180830381600087803b1580156120bd57600080fd5b505af11580156120d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f591906131f6565b6121115760405162461bcd60e51b8152600401610a5f906134e1565b818310156119fb576121436007848154811061212957fe5b6000918252602090912001546001600160a01b0316612599565b1561214c575060015b600190920191612111565b61215f6122ef565b6000546001600160a01b0390811691161461218c5760405162461bcd60e51b8152600401610a5f906136b8565b600155565b60006119cf6106b28585856001610150610d0e565b61070881565b61271081565b6060611738858585856002610d0e565b6121ca6122ef565b6000546001600160a01b039081169116146121f75760405162461bcd60e51b8152600401610a5f906136b8565b6001600160a01b03811661221d5760405162461bcd60e51b8152600401610a5f9061350d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031681565b60015481565b606060078054806020026020016040519081016040528092919081815260200182805480156122e557602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116122c7575b5050505050905090565b3390565b60008060006123028585612363565b9150915085828260405160200161231a92919061331e565b60405160208183030381529060405280519060200120604051602001612341929190613345565b60408051601f1981840301815291905280516020909101209695505050505050565b600080826001600160a01b0316846001600160a01b031614156123985760405162461bcd60e51b8152600401610a5f906135ee565b826001600160a01b0316846001600160a01b0316106123b85782846123bb565b83835b90925090506001600160a01b0382166123e65760405162461bcd60e51b8152600401610a5f90613786565b9250929050565b60006119f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cda565b6000612439612e49565b6040518060200160405280858888038161244f57fe5b046001600160e01b03169052905061246f61246a8285612d06565b612d65565b71ffffffffffffffffffffffffffffffffffff169695505050505050565b6001600160a01b03811660009081526008602052604090205460ff16156124c65760405162461bcd60e51b8152600401610a5f906136ed565b6001600160a01b0381166000818152600860205260408120805460ff1916600190811790915560078054918201815582527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169092179091558061253583612b05565b506001600160a01b039094166000908152600960209081526040808320815160608101835242815280840195865291820197885280546001818101835591855292909320905160039092020190815591519082015592516002909301929092555050565b60006125a3612e28565b6125ac83611118565b80519091504203610708811115612634576000806125c986612b05565b506001600160a01b03881660009081526009602090815260408083208151606081018352428152808401968752918201948552805460018181018355918552929093209051600390920201908155925183820155905160029092019190915594506111139350505050565b5060009392505050565b6000805b60075481101561266e5761265c6007828154811061212957fe5b1561266657600191505b600101612642565b5090565b6000828201838110156119f85760405162461bcd60e51b8152600401610a5f90613553565b6040805160028082526060808301845260009390929190602083019080368337019050509050600080516020613912833981519152816000815181106126d957fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061271b57fe5b6001600160a01b03909216602092830291909101909101526060737a250d5630b4cf539739df2c5dacb4c659f2488d6338ed1739866000853061276042610708612672565b6040518663ffffffff1660e01b815260040161278095949392919061384e565b600060405180830381600087803b15801561279a57600080fd5b505af11580156127ae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127d69190810190613126565b905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d8260018151811061280857fe5b60200260200101516040518263ffffffff1660e01b815260040161282c9190613845565b600060405180830381600087803b15801561284657600080fd5b505af115801561285a573d6000803e3d6000fd5b5050604080516003808252608082019092526060935091506020820183803683370190505090506000805160206139128339815191528160008151811061289d57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106128df57fe5b6001600160a01b03928316602091820292909201015260065482519116908290600290811061290a57fe5b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d6338ed1739866000843061294d42610708612672565b6040518663ffffffff1660e01b815260040161296d95949392919061384e565b600060405180830381600087803b15801561298757600080fd5b505af115801561299b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526129c39190810190613126565b50816001815181106129d157fe5b6020026020010151935050505092915050565b6000826129f3575060006119fb565b82820282848281612a0057fe5b04146119f85760405162461bcd60e51b8152600401610a5f90613677565b60006119f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d6c565b816001600160a01b031663a9059cbb82612a7985611657565b6040518363ffffffff1660e01b8152600401612a969291906133c9565b602060405180830381600087803b158015612ab057600080fd5b505af1158015612ac4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae891906131f6565b505050565b600081612af984611118565b51420311159392505050565b6000806000612b12612da3565b9050836001600160a01b0316635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b158015612b4d57600080fd5b505afa158015612b61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b859190613277565b9250836001600160a01b0316635a3d54936040518163ffffffff1660e01b815260040160206040518083038186803b158015612bc057600080fd5b505afa158015612bd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf89190613277565b91506000806000866001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015612c3857600080fd5b505afa158015612c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c709190613216565b9250925092508363ffffffff168163ffffffff1614612cd05780840363ffffffff8116612c9d8486612dad565b516001600160e01b031602969096019563ffffffff8116612cbe8585612dad565b516001600160e01b0316029590950194505b5050509193909250565b60008184841115612cfe5760405162461bcd60e51b8152600401610a5f919061348e565b505050900390565b612d0e612e5b565b6000821580612d3457505082516001600160e01b031682810290838281612d3157fe5b04145b612d505760405162461bcd60e51b8152600401610a5f90613743565b60408051602081019091529081529392505050565b5160701c90565b60008183612d8d5760405162461bcd60e51b8152600401610a5f919061348e565b506000838581612d9957fe5b0495945050505050565b63ffffffff421690565b612db5612e49565b6000826001600160701b031611612dde5760405162461bcd60e51b8152600401610a5f906137bd565b6040805160208101909152806001600160701b0384166dffffffffffffffffffffffffffff60701b607087901b1681612e1357fe5b046001600160e01b0316815250905092915050565b60405180606001604052806000815260200160008152602001600081525090565b60408051602081019091526000815290565b6040518060200160405280600081525090565b80356119fb816138e7565b600082601f830112612e89578081fd5b8135612e9c612e97826138c7565b6138a0565b818152915060208083019084810181840286018201871015612ebd57600080fd5b60005b84811015612edc57813584529282019290820190600101612ec0565b505050505092915050565b600060208284031215612ef8578081fd5b81356119f8816138e7565b600060208284031215612f14578081fd5b81516119f8816138e7565b60008060408385031215612f31578081fd5b8235612f3c816138e7565b91506020830135612f4c816138e7565b809150509250929050565b60008060408385031215612f69578182fd5b8235612f74816138e7565b946020939093013593505050565b600080600060608486031215612f96578081fd5b8335612fa1816138e7565b9250602084013591506040840135612fb8816138e7565b809150509250925092565b60008060008060808587031215612fd8578081fd5b8435612fe3816138e7565b9350602085013592506040850135612ffa816138e7565b9396929550929360600135925050565b600080600080600060a08688031215613021578081fd5b853561302c816138e7565b9450602086013593506040860135613043816138e7565b94979396509394606081013594506080013592915050565b6000602080838503121561306d578182fd5b823567ffffffffffffffff811115613083578283fd5b8301601f81018513613093578283fd5b80356130a1612e97826138c7565b81815283810190838501858402850186018910156130bd578687fd5b8694505b838510156130e7576130d38982612e6e565b8352600194909401939185019185016130c1565b50979650505050505050565b600060208284031215613104578081fd5b813567ffffffffffffffff81111561311a578182fd5b6119cf84828501612e79565b60006020808385031215613138578182fd5b825167ffffffffffffffff81111561314e578283fd5b8301601f8101851361315e578283fd5b805161316c612e97826138c7565b8181528381019083850185840285018601891015613188578687fd5b8694505b838510156130e757805183526001949094019391850191850161318c565b6000806000606084860312156131be578283fd5b833567ffffffffffffffff8111156131d4578384fd5b6131e086828701612e79565b9660208601359650604090950135949350505050565b600060208284031215613207578081fd5b815180151581146119f8578182fd5b60008060006060848603121561322a578081fd5b8351613235816138fc565b6020850151909350613246816138fc565b604085015190925063ffffffff81168114612fb8578182fd5b600060208284031215613270578081fd5b5035919050565b600060208284031215613288578081fd5b5051919050565b600080604083850312156132a1578182fd5b50508035926020909101359150565b6000806000606084860312156132c4578081fd5b505081359360208301359350604090920135919050565b6000815180845260208085019450808401835b838110156133135781516001600160a01b0316875295820195908201906001016132ee565b509495945050505050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b6001600160f81b0319815260609290921b6bffffffffffffffffffffffff1916600183015260158201527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f603582015260550190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602082526119f860208301846132db565b6020808252825182820181905260009190848201906040850190845b818110156134775783518352928401929184019160010161345b565b50909695505050505050565b901515815260200190565b6000602080835283518082850152825b818110156134ba5785810183015185820160400152820161349e565b818111156134cb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601290820152711d1d34b9a637b1b5b2b91d10b637b1b599b960711b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601a908201527f556e697377617056324f7261636c653a3a6164643a2021676f76000000000000604082015260600190565b60208082526013908201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604082015260600190565b60208082526025908201527f556e697377617056324c6962726172793a204944454e544943414c5f41444452604082015264455353455360d81b606082015260800190565b60208082526024908201527f556e697377617056324f7261636c653a3a71756f74653a207374616c652070726040820152636963657360e01b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526005908201526435b737bbb760d91b604082015260600190565b6020808252601d908201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604082015260600190565b60208082526023908201527f4669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552466040820152624c4f5760e81b606082015260800190565b6020808252601e908201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604082015260600190565b60208082526017908201527f4669786564506f696e743a204449565f42595f5a45524f000000000000000000604082015260600190565b602080825260169082015275556e697377617056324f7261636c653a2021776f726b60501b604082015260600190565b81518152602080830151908201526040918201519181019190915260600190565b90815260200190565b600086825285602083015260a0604083015261386d60a08301866132db565b6001600160a01b0394909416606083015250608001529392505050565b9283526020830191909152604082015260600190565b60405181810167ffffffffffffffff811182821017156138bf57600080fd5b604052919050565b600067ffffffffffffffff8211156138dd578081fd5b5060209081020190565b6001600160a01b038116811461165457600080fd5b6001600160701b038116811461165457600080fdfe000000000000000000000000e3f3869ddd41c23eff3630f58e5bfa584c770d67a2646970667358221220926a40dc4d5950507fc1bc8432a750e62dcf066bf4750c2315cf15426ab4db8564736f6c634300060c0033
Deployed Bytecode Sourcemap
28635:18643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32147:53;;;;;;;;;;-1:-1:-1;32147:53:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;45003:251;;;;;;;;;;-1:-1:-1;45003:251:0;;;;;:::i;:::-;;:::i;:::-;;46549:726;;;;;;;;;;;;;:::i;39539:1441::-;;;;;;;;;;-1:-1:-1;39539:1441:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33839:226::-;;;;;;;;;;-1:-1:-1;33839:226:0;;;;;:::i;:::-;;:::i;28876:23::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29072:28::-;;;;;;;;;;;;;:::i;32940:104::-;;;;;;;;;;-1:-1:-1;32940:104:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34554:153::-;;;;;;;;;;-1:-1:-1;34554:153:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31181:170::-;;;;;;;;;;;;;:::i;34277:127::-;;;;;;;;;;;;;:::i;34412:134::-;;;;;;;;;;;;;:::i;46052:148::-;;;;;;;;;;-1:-1:-1;46052:148:0;;;;;:::i;:::-;;:::i;44322:246::-;;;;;;;;;;-1:-1:-1;44322:246:0;;;;;:::i;:::-;;:::i;32502:151::-;;;;;;;;;;-1:-1:-1;32502:151:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41382:191::-;;;;;;;;;;-1:-1:-1;41382:191:0;;;;;:::i;:::-;;:::i;41185:189::-;;;;;;;;;;-1:-1:-1;41185:189:0;;;;;:::i;:::-;;:::i;31359:94::-;;;;;;;;;;;;;:::i;34073:196::-;;;;;;;;;;-1:-1:-1;34073:196:0;;;;;:::i;:::-;;:::i;31545:99::-;;;;;;;;;;;;;:::i;30188:25::-;;;;;;;;;;;;;:::i;30485:88::-;;;;;;;;;;-1:-1:-1;30485:88:0;;;;;:::i;:::-;;:::i;42669:230::-;;;;;;;;;;-1:-1:-1;42669:230:0;;;;;:::i;:::-;;:::i;31651:66::-;;;;;;;;;;;;;:::i;5424:148::-;;;;;;;;;;;;;:::i;35320:228::-;;;;;;;;;;;;;:::i;32209:121::-;;;;;;;;;;-1:-1:-1;32209:121:0;;;;;:::i;:::-;;:::i;43228:564::-;;;;;;;;;;-1:-1:-1;43228:564:0;;;;;:::i;:::-;;:::i;4782:79::-;;;;;;;;;;;;;:::i;42003:188::-;;;;;;;;;;-1:-1:-1;42003:188:0;;;;;:::i;:::-;;:::i;32338:156::-;;;;;;;;;;-1:-1:-1;32338:156:0;;;;;:::i;:::-;;:::i;46372:97::-;;;;;;;;;;-1:-1:-1;46372:97:0;;;;;:::i;:::-;;:::i;35163:149::-;;;;;;;;;;-1:-1:-1;35163:149:0;;;;;:::i;:::-;;:::i;41807:188::-;;;;;;;;;;-1:-1:-1;41807:188:0;;;;;:::i;:::-;;:::i;36775:1101::-;;;;;;;;;;-1:-1:-1;36775:1101:0;;;;;:::i;:::-;;:::i;30888:170::-;;;;;;;;;;-1:-1:-1;30888:170:0;;;;;:::i;:::-;;:::i;31460:78::-;;;;;;;;;;;;;:::i;37884:1450::-;;;;;;;;;;-1:-1:-1;37884:1450:0;;;;;:::i;:::-;;:::i;41581:218::-;;;;;;;;;;-1:-1:-1;41581:218:0;;;;;:::i;:::-;;:::i;30261:116::-;;;;;;;;;;-1:-1:-1;30261:116:0;;;;;:::i;:::-;;:::i;39342:189::-;;;;;;;;;;-1:-1:-1;39342:189:0;;;;;:::i;:::-;;:::i;33651:145::-;;;;;;;;;;-1:-1:-1;33651:145:0;;;;;:::i;:::-;;:::i;31726:76::-;;;;;;;;;;;;;:::i;33052:193::-;;;;;;;;;;-1:-1:-1;33052:193:0;;;;;:::i;:::-;;:::i;30581:142::-;;;;;;;;;;-1:-1:-1;30581:142:0;;;;;:::i;:::-;;:::i;34935:220::-;;;;;;;;;;-1:-1:-1;34935:220:0;;;;;:::i;:::-;;:::i;30385:92::-;;;;;;;;;;-1:-1:-1;30385:92:0;;;;;:::i;:::-;;:::i;42199:190::-;;;;;;;;;;-1:-1:-1;42199:190:0;;;;;:::i;:::-;;:::i;31921:38::-;;;;;;;;;;;;;:::i;28906:33::-;;;;;;;;;;;;;:::i;40988:189::-;;;;;;;;;;-1:-1:-1;40988:189:0;;;;;:::i;:::-;;:::i;5727:244::-;;;;;;;;;;-1:-1:-1;5727:244:0;;;;;:::i;:::-;;:::i;30220:32::-;;;;;;;;;;;;;:::i;28783:25::-;;;;;;;;;;;;;:::i;32049:90::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32147:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32147:53:0;;-1:-1:-1;32147:53:0;:::o;45003:251::-;45161:9;45173:16;45180:8;45173:6;:16::i;:::-;45161:28;;45200:46;45221:4;45227:11;45240:5;45200:20;:46::i;:::-;;45003:251;;;;:::o;46549:726::-;5004:12;:10;:12::i;:::-;4994:6;;-1:-1:-1;;;;;4994:6:0;;;:22;;;4986:67;;;;-1:-1:-1;;;4986:67:0;;;;;;;:::i;:::-;;;;;;;;;46664:41:::1;::::0;-1:-1:-1;;;46664:41:0;;46640:21:::1;::::0;-1:-1:-1;;;;;;;;;;;31410:42:0;46664:12:::1;::::0;:41:::1;::::0;46685:4:::1;::::0;31410:42;;46664:41:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46640:65;;46713:20;-1:-1:-1::0;;;;;;;;;;;;;;;;46736:12:0::1;;46757:4;-1:-1:-1::0;;;;;;;;;;;;;;;;46763:8:0::1;;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46736:38;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46713:61:::0;-1:-1:-1;46822:17:0;;46819:157:::1;;-1:-1:-1::0;;;;;;;;;;;46918:12:0::1;31410:42:::0;46945:7:::1;:5;:7::i;:::-;46953:13;46918:49;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46819:157;47023:16:::0;;47019:79:::1;;-1:-1:-1::0;;;;;;;;;;;47052:15:0::1;47068:7;:5;:7::i;:::-;47076:12;47052:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;47019:79;47155:3;::::0;47134:26:::1;::::0;-1:-1:-1;;;;;47155:3:0::1;47134:12;:26::i;:::-;47258:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;47237:30:0::1;;39539:1441:::0;39652:13;39678:12;39693:52;31760:42;39727:7;39736:8;39693:24;:52::i;:::-;39678:67;;39757:14;39776:46;39804:7;39813:8;39776:27;:46::i;:::-;39756:66;;;39833:21;39868:6;39857:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39857:18:0;-1:-1:-1;;;;;;39902:18:0;;39888:11;39902:18;;;:12;:18;;;;;:25;39833:42;;-1:-1:-1;;;39902:27:0;;;;39949;39902;39960:15;;;39949:10;:27::i;:::-;39940:36;;39987:14;40016:10;40057:7;-1:-1:-1;;;;;40047:17:0;:6;-1:-1:-1;;;;;40047:17:0;;40043:905;;;40081:412;40092:6;40088:1;:10;40081:412;;;-1:-1:-1;;;;;40227:18:0;;;;;;:12;:18;;;;;:21;;40142:10;;;;-1:-1:-1;40188:253:0;;40227:18;40142:1;;40227:21;;;;;;;;;;;;;;;;:38;;;40288:12;:18;40301:4;-1:-1:-1;;;;;40288:18:0;-1:-1:-1;;;;;40288:18:0;;;;;;;;;;;;40307:9;40288:29;;;;;;;;;;;;;;;;;;:46;;;40399:12;:18;40412:4;-1:-1:-1;;;;;40399:18:0;-1:-1:-1;;;;;40399:18:0;;;;;;;;;;;;40418:1;40399:21;;;;;;;;;;;;;;;;;;;;;;;:31;-1:-1:-1;;;;;40357:18:0;;;;:12;:18;;;;;;;:29;;40376:9;;40357:29;;;;;;;;;;;;;;;;:39;;;:73;40432:8;40188:16;:253::i;:::-;40171:7;40179:5;40171:14;;;;;;;;;;;;;;;;;:270;40100:9;;;;40476:1;40468:9;40081:412;;;40043:905;;;40536:6;40532:1;:10;40525:412;;;-1:-1:-1;;;;;40671:18:0;;;;;;:12;:18;;;;;:21;;40586:10;;;;-1:-1:-1;40632:253:0;;40671:18;40586:1;;40671:21;;;;;;;;;;;;;;;;:38;;;40732:12;:18;40745:4;-1:-1:-1;;;;;40732:18:0;-1:-1:-1;;;;;40732:18:0;;;;;;;;;;;;40751:9;40732:29;;;;;;;;;;;;;;;;;;:46;;;40843:12;:18;40856:4;-1:-1:-1;;;;;40843:18:0;-1:-1:-1;;;;;40843:18:0;;;;;;;;;;;;40862:1;40843:21;;;;;;;40632:253;40615:7;40623:5;40615:14;;;;;;;;;;;;;;;;;:270;40544:9;;;;40920:1;40912:9;40525:412;;;-1:-1:-1;40965:7:0;;39539:1441;-1:-1:-1;;;;;;;;;;;39539:1441:0:o;33839:226::-;33931:10;;-1:-1:-1;;;;;33931:10:0;33917;:24;33909:63;;;;-1:-1:-1;;;33909:63:0;;;;;;;:::i;:::-;33987:6;33983:74;33998:10;:17;33996:1;:19;33983:74;;;34034:23;34043:10;34054:1;34043:13;;;;;;;;;;;;;;34034:8;:23::i;:::-;34016:3;;33983:74;;;;33839:226;:::o;28876:23::-;;;;:::o;29072:28::-;;;;:::o;32940:104::-;29175:7;;29146:43;;-1:-1:-1;;;29146:43:0;;32999:4;;-1:-1:-1;;;;;;;;;;;31410:42:0;29146:16;;:43;;29163:10;;29175:7;32999:4;;;;29146:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29138:74;;;;-1:-1:-1;;;29138:74:0;;;;;;;:::i;:::-;33023:13:::1;33031:4;33023:7;:13::i;:::-;33016:20;;29223:1;32940:104:::0;;;:::o;34554:153::-;34614:18;;:::i;:::-;-1:-1:-1;;;;;34652:18:0;;;;;;:12;:18;;;;;34671:25;;-1:-1:-1;;34671:27:0;;;34652:47;;;;;;;;;;;;;;;;34645:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34554:153;;;:::o;31181:170::-;31251:17;;-1:-1:-1;;;;;31251:17:0;31237:10;:31;31229:73;;;;-1:-1:-1;;;31229:73:0;;;;;;;:::i;:::-;31326:17;;31313:10;:30;;-1:-1:-1;;;;;;31313:30:0;-1:-1:-1;;;;;31326:17:0;;;31313:30;;;;;;31181:170::o;34277:127::-;29269:13;29285:9;29342:7;;29313:43;;-1:-1:-1;;;29313:43:0;;29269:25;;-1:-1:-1;;;;;;;;;;;;31410:42:0;29313:16;;:43;;29330:10;;29342:7;29351:1;;;;29313:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29305:74;;;;-1:-1:-1;;;29305:74:0;;;;;;;:::i;:::-;34318:11:::1;34332:12;:10;:12::i;:::-;34318:26;;34363:6;34355:41;;;;-1:-1:-1::0;;;34355:41:0::1;;;;;;;:::i;:::-;29390:1;29423:15:::0;29441:23;29454:9;29441:8;;:12;:23::i;:::-;29543:3;;:59;;-1:-1:-1;;;29543:59:0;;29423:41;;-1:-1:-1;29512:2:0;29517:8;29512:20;29494:38;;:5;:38;;;-1:-1:-1;;;;;29543:3:0;;;;:16;;:59;;29568:4;;29596:5;29576:16;;;;29575:26;;29543:59;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29615:12;-1:-1:-1;;;;;;;;;;;;;;;;29630:10:0;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29630:26:0;;29657:7;29630:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29615:50;;29708:14;29725:21;29738:7;29725:12;:21::i;:::-;29708:38;-1:-1:-1;;;;;;;;;;;;29803:12:0;31410:42;29839:4;29846:22;:7;29708:38;29846:11;:22::i;:::-;29803:66;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29930:24;29936:7;29944:9;29930:5;:24::i;:::-;29920:34;;30000:23;30026:40;30038:27;28934:5;30038:17;30050:4;;30038:7;:11;;:17;;;;:::i;:::-;:21;;:27::i;:::-;30026:7;;:11;:40::i;:::-;30077:36;;30000:66;;-1:-1:-1;30077:10:0;;:36;;;;;30000:66;;30077:36;;;;30000:66;30077:10;:36;;;;;;;;;;;;;;;;;;;;;30132:7;:5;:7::i;:::-;-1:-1:-1;;;;;30124:25:0;:48;30150:21;30124:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34277:127;;;;;;:::o;34412:134::-;29175:7;;29146:43;;-1:-1:-1;;;29146:43:0;;-1:-1:-1;;;;;;;;;;;31410:42:0;29146:16;;:43;;29163:10;;29184:1;;;;29146:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29138:74;;;;-1:-1:-1;;;29138:74:0;;;;;;;:::i;:::-;34460:11:::1;34474:12;:10;:12::i;:::-;34460:26;;34505:6;34497:41;;;;-1:-1:-1::0;;;34497:41:0::1;;;;;;;:::i;:::-;29223:1;34412:134::o:0;46052:148::-;46147:45;;-1:-1:-1;;;46147:45:0;;46120:7;;-1:-1:-1;;;;;46147:30:0;;;;;:45;;46186:4;;46147:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;44322:246::-;44457:16;44523:11;44528:5;44523:4;:11::i;:::-;44509;44502:4;44497:2;:9;:23;:37;44486:48;;44322:246;;;;;;:::o;32502:151::-;32562:7;32589:56;31760:42;32623:6;31495:42;32589:24;:56::i;41382:191::-;41484:13;41517:48;41524:7;41533:8;41543;41553:6;41561:3;41517:6;:48::i;:::-;41510:55;41382:191;-1:-1:-1;;;;;41382:191:0:o;41185:189::-;41286:13;41319:47;41326:7;41335:8;41345;41355:6;41363:2;41319:6;:47::i;31359:94::-;-1:-1:-1;;;;;;;;;;;31359:94:0;:::o;34073:196::-;34203:58;34211:49;31760:42;34245:6;34253;34211:24;:49::i;31545:99::-;31601:42;31545:99;:::o;30188:25::-;;;-1:-1:-1;;;;;30188:25:0;;:::o;30485:88::-;5004:12;:10;:12::i;:::-;4994:6;;-1:-1:-1;;;;;4994:6:0;;;:22;;;4986:67;;;;-1:-1:-1;;;4986:67:0;;;;;;;:::i;:::-;30549:4:::1;:16:::0;30485:88::o;42669:230::-;42715:7;42757:1;42752;42748:5;;42747:11;42748:5;42793:80;42804:1;42800;:5;42793:80;;;-1:-1:-1;42826:1:0;42860;42826;;42847;42826;42847:5;;;;;:9;42846:15;;;;;;42842:19;;42793:80;;31651:66;;;-1:-1:-1;;;;;31651:66:0;;:::o;5424:148::-;5004:12;:10;:12::i;:::-;4994:6;;-1:-1:-1;;;;;4994:6:0;;;:22;;;4986:67;;;;-1:-1:-1;;;4986:67:0;;;;;;;:::i;:::-;5531:1:::1;5515:6:::0;;5494:40:::1;::::0;-1:-1:-1;;;;;5515:6:0;;::::1;::::0;5494:40:::1;::::0;5531:1;;5494:40:::1;5562:1;5545:19:::0;;-1:-1:-1;;;;;;5545:19:0::1;::::0;;5424:148::o;35320:228::-;35363:4;;35380:138;35401:6;:13;35397:17;;35380:138;;;35440:19;35449:6;35456:1;35449:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35449:9:0;35440:8;:19::i;:::-;35436:71;;;35487:4;35480:11;;;;;35436:71;35416:3;;35380:138;;;;35535:5;35528:12;;35320:228;;:::o;32209:121::-;-1:-1:-1;;;;;32297:18:0;32273:4;32297:18;;;:12;:18;;;;;:25;;32209:121::o;43228:564::-;43288:10;;;43334:85;43354:7;:14;43350:1;:18;43334:85;;;43397:7;43405:1;43397:10;;;;;;;;;;;;;;43390:17;;;;43370:3;;;;;;;43334:85;;;;43429:12;43450:7;:14;43444:3;:20;;;;;;43429:35;;43539:1;43533:7;;43551:6;43568:94;43583:7;:14;43579:1;:18;43568:94;;;43649:1;43640:4;43627:7;43635:1;43627:10;;;;;;;;;;;;;;:17;43626:24;43619:31;;;;43599:3;;;;;;;43568:94;;;43677:32;43706:1;43689:7;:14;:18;43682:3;:26;;;;;;43677:4;:32::i;4782:79::-;4820:7;4847:6;-1:-1:-1;;;;;4847:6:0;4782:79;:::o;42003:188::-;42109:4;42133:50;42140:42;42147:7;42156:8;42166;42176:1;42179:2;42140:6;:42::i;42133:50::-;42126:57;42003:188;-1:-1:-1;;;;42003:188:0:o;32338:156::-;32410:7;32437:49;31760:42;32471:6;32479;32437:24;:49::i;:::-;32430:56;;32338:156;;;;;:::o;46372:97::-;5004:12;:10;:12::i;:::-;4994:6;;-1:-1:-1;;;;;4994:6:0;;;:22;;;4986:67;;;;-1:-1:-1;;;4986:67:0;;;;;;;:::i;:::-;46437:24:::1;46447:5;46453:7;:5;:7::i;:::-;46437:9;:24::i;35163:149::-:0;35216:4;31955;35259:21;35275:4;35259:15;:21::i;:::-;:31;35241:15;:49;35240:64;;35163:149;-1:-1:-1;;35163:149:0:o;41807:188::-;41914:4;41938:49;41945:41;41952:7;41961:8;41971;41981:1;41984;41945:6;:41::i;36775:1101::-;36865:14;36892:12;36907:52;31760:42;36941:7;36950:8;36907:24;:52::i;:::-;36892:67;-1:-1:-1;36978:31:0;36892:67;36991:17;31955:4;37006:1;36991:14;:17::i;:::-;36978:6;:31::i;:::-;36970:80;;;;-1:-1:-1;;;36970:80:0;;;;;;;:::i;:::-;37062:14;37081:46;37109:7;37118:8;37081:27;:46::i;:::-;37061:66;;;37140:31;;:::i;:::-;37174:21;37190:4;37174:15;:21::i;:::-;37140:55;;37207:21;37230;37256:52;37303:4;37256:46;:52::i;:::-;-1:-1:-1;37342:22:0;;37206:102;;-1:-1:-1;37206:102:0;-1:-1:-1;37323:15:0;:41;37319:136;;;-1:-1:-1;;;;;37396:18:0;;;;;;:12;:18;;;;;37415:25;;-1:-1:-1;;37415:27:0;;;37396:47;;;;;;;;;;;;;;;;37381:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37319:136;37504:22;;37486:15;:40;37551:16;;:34;;37574:11;37551:34;;;37570:1;37551:34;37537:48;;37610:7;-1:-1:-1;;;;;37600:17:0;:6;-1:-1:-1;;;;;37600:17:0;;37596:273;;;37641:88;37658:12;:29;;;37689:16;37707:11;37720:8;37641:16;:88::i;:::-;37634:95;;;;;;;;;;37596:273;37769:88;37786:12;:29;;;37817:16;37835:11;37848:8;37769:16;:88::i;30888:170::-;30974:10;;-1:-1:-1;;;;;30974:10:0;30960;:24;30952:56;;;;-1:-1:-1;;;30952:56:0;;;;;;;:::i;:::-;31019:17;:31;;-1:-1:-1;;;;;;31019:31:0;-1:-1:-1;;;;;31019:31:0;;;;;;;;;;30888:170::o;31460:78::-;31495:42;31460:78;:::o;37884:1450::-;37990:14;38017:12;38032:52;31760:42;38066:7;38075:8;38032:24;:52::i;:::-;38017:67;-1:-1:-1;38103:41:0;38017:67;38116:27;31955:4;38131:11;38116:14;:27::i;38103:41::-;38095:90;;;;-1:-1:-1;;;38095:90:0;;;;;;;:::i;:::-;38197:14;38216:46;38244:7;38253:8;38216:27;:46::i;:::-;-1:-1:-1;;;;;;38331:18:0;;38275:27;38331:18;;;:12;:18;;;;;:25;38196:66;;-1:-1:-1;38275:27:0;-1:-1:-1;;38331:27:0;38275;38378:23;38331:27;38389:11;38378:10;:23::i;:::-;38369:32;;38416:14;38459:7;-1:-1:-1;;;;;38449:17:0;:6;-1:-1:-1;;;;;38449:17:0;;38445:825;;;38483:372;38494:6;38490:1;:10;38483:372;;;-1:-1:-1;;;;;;38625:18:0;;;;;;:12;:18;;;;;:21;;38540:1;38538:3;;;38586:253;;38538:1;;38625:21;;;;;;;;;;;;;;;;:38;;;38686:12;:18;38699:4;-1:-1:-1;;;;;38686:18:0;-1:-1:-1;;;;;38686:18:0;;;;;;;;;;;;38705:9;38686:29;;;;;;;;;;;;;;;;;;:46;;;38797:12;:18;38810:4;-1:-1:-1;;;;;38797:18:0;-1:-1:-1;;;;;38797:18:0;;;;;;;;;;;;38816:1;38797:21;;;;;;;;;;;;;;;;;;;;;;;:31;-1:-1:-1;;;;;38755:18:0;;;;:12;:18;;;;;;;:29;;38774:9;;38755:29;;;;;;;;;;;;;;;;:39;;;:73;38830:8;38586:16;:253::i;:::-;38560:279;;;;38502:3;;;;;38483:372;;;38445:825;;;38898:6;38894:1;:10;38887:372;;;-1:-1:-1;;;;;;39029:18:0;;;;;;:12;:18;;;;;:21;;38944:1;38942:3;;;38990:253;;38942:1;;39029:21;;;;;;;;;;;;;;;;:38;;;39090:12;:18;39103:4;-1:-1:-1;;;;;39090:18:0;-1:-1:-1;;;;;39090:18:0;;;;;;;;;;;;39109:9;39090:29;;;;;;;;;;;;;;;;;;:46;;;39201:12;:18;39214:4;-1:-1:-1;;;;;39201:18:0;-1:-1:-1;;;;;39201:18:0;;;;;;;;;;;;39220:1;39201:21;;;;;;;38990:253;38964:279;;;;38906:3;;;;;38887:372;;;39287:39;:22;39314:11;39287:26;:39::i;:::-;39280:46;37884:1450;-1:-1:-1;;;;;;;;;;;37884:1450:0:o;41581:218::-;41708:4;41732:59;41739:51;41746:7;41755:8;41765;41775:6;41783;41739;:51::i;41732:59::-;41725:66;41581:218;-1:-1:-1;;;;;;41581:218:0:o;30261:116::-;30317:4;30341:28;28934:5;30341:18;30352:6;;30341;:10;;:18;;;;:::i;39342:189::-;39444:13;39477:46;39484:7;39493:8;39503;39513:6;39521:1;39477:6;:46::i;33651:145::-;33722:10;;-1:-1:-1;;;;;33722:10:0;33708;:24;33700:63;;;;-1:-1:-1;;;33700:63:0;;;;;;;:::i;:::-;33774:14;33783:4;33774:8;:14::i;31726:76::-;31760:42;31726:76;:::o;33052:193::-;29175:7;;29146:43;;-1:-1:-1;;;29146:43:0;;33125:4;;-1:-1:-1;;;;;;;;;;;31410:42:0;29146:16;;:43;;29163:10;;29175:7;33125:4;;;;29146:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29138:74;;;;-1:-1:-1;;;29138:74:0;;;;;;;:::i;:::-;33142:12:::1;33157:49;31760:42;33191:6;33199;33157:24;:49::i;:::-;33142:64;;33224:13;33232:4;33224:7;:13::i;30581:142::-:0;30655:10;;-1:-1:-1;;;;;30655:10:0;30641;:24;30633:56;;;;-1:-1:-1;;;30633:56:0;;;;;;;:::i;:::-;30700:7;:15;30581:142::o;34935:220::-;29175:7;;29146:43;;-1:-1:-1;;;29146:43:0;;35000:12;;-1:-1:-1;;;;;;;;;;;31410:42:0;29146:16;;:43;;29163:10;;29175:7;35000:12;;;;29146:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29138:74;;;;-1:-1:-1;;;29138:74:0;;;;;;;:::i;:::-;35036:6:::1;35032:1;:10;35025:123;;;35068:18;35076:6;35083:1;35076:9;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35076:9:0::1;35068:7;:18::i;:::-;35064:73;;;-1:-1:-1::0;35117:4:0::1;35064:73;35044:3;::::0;;::::1;::::0;35025:123:::1;;30385:92:::0;5004:12;:10;:12::i;:::-;4994:6;;-1:-1:-1;;;;;4994:6:0;;;:22;;;4986:67;;;;-1:-1:-1;;;4986:67:0;;;;;;;:::i;:::-;30451:6:::1;:18:::0;30385:92::o;42199:190::-;42306:4;42330:51;42337:43;42344:7;42353:8;42363;42373:1;42376:3;42337:6;:43::i;31921:38::-;31955:4;31921:38;:::o;28906:33::-;28934:5;28906:33;:::o;40988:189::-;41090:13;41123:46;41130:7;41139:8;41149;41159:6;41167:1;41123:6;:46::i;5727:244::-;5004:12;:10;:12::i;:::-;4994:6;;-1:-1:-1;;;;;4994:6:0;;;:22;;;4986:67;;;;-1:-1:-1;;;4986:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5816:22:0;::::1;5808:73;;;;-1:-1:-1::0;;;5808:73:0::1;;;;;;;:::i;:::-;5918:6;::::0;;5897:38:::1;::::0;-1:-1:-1;;;;;5897:38:0;;::::1;::::0;5918:6;::::1;::::0;5897:38:::1;::::0;::::1;5946:6;:17:::0;;-1:-1:-1;;;;;;5946:17:0::1;-1:-1:-1::0;;;;;5946:17:0;;;::::1;::::0;;;::::1;::::0;;5727:244::o;30220:32::-;;;-1:-1:-1;;;;;30220:32:0;;:::o;28783:25::-;;;;:::o;32049:90::-;32089:16;32125:6;32118:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32118:13:0;;;;;;;;;;;;;;;;;;;;;;;32049:90;:::o;3422:106::-;3510:10;3422:106;:::o;18251:478::-;18340:12;18366:14;18382;18400:26;18411:6;18419;18400:10;:26::i;:::-;18365:61;;;;18528:7;18581:6;18589;18564:32;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18554:43;;;;;;18467:251;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;18467:251:0;;;;;;;;;18457:262;;18467:251;18457:262;;;;;18251:478;-1:-1:-1;;;;;;18251:478:0:o;17810:349::-;17885:14;17901;17946:6;-1:-1:-1;;;;;17936:16:0;:6;-1:-1:-1;;;;;17936:16:0;;;17928:66;;;;-1:-1:-1;;;17928:66:0;;;;;;;:::i;:::-;18033:6;-1:-1:-1;;;;;18024:15:0;:6;-1:-1:-1;;;;;18024:15:0;;:53;;18062:6;18070;18024:53;;;18043:6;18051;18024:53;18005:72;;-1:-1:-1;18005:72:0;-1:-1:-1;;;;;;18096:20:0;;18088:63;;;;-1:-1:-1;;;18088:63:0;;;;;;;:::i;:::-;17810:349;;;;;:::o;7282:136::-;7340:7;7367:43;7371:1;7374;7367:43;;;;;;;;;;;;;;;;;:3;:43::i;36164:442::-;36322:14;36382:40;;:::i;:::-;36425:112;;;;;;;;36514:11;36490:20;36469:18;:41;36468:57;;;;;;-1:-1:-1;;;;;36425:112:0;;;36382:155;-1:-1:-1;36560:38:0;:26;36382:155;36577:8;36560:16;:26::i;:::-;:36;:38::i;:::-;36548:50;;;36164:442;-1:-1:-1;;;;;;36164:442:0:o;33253:364::-;-1:-1:-1;;;;;33314:12:0;;;;;;:6;:12;;;;;;;;33313:13;33305:31;;;;-1:-1:-1;;;33305:31:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33347:12:0;;;;;;:6;:12;;;;;:19;;-1:-1:-1;;33347:19:0;33362:4;33347:19;;;;;;33377:6;:17;;;;;;;;;;;;;-1:-1:-1;;;;;;33377:17:0;;;;;;;33347:12;33457:52;33354:4;33457:46;:52::i;:::-;-1:-1:-1;;;;;;33520:18:0;;;;;;;:12;:18;;;;;;;;33544:64;;;;;;;33556:15;33544:64;;;;;;;;;;;;;;33520:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33253:364:0:o;35556:600::-;35605:4;35713:25;;:::i;:::-;35741:21;35757:4;35741:15;:21::i;:::-;35810:16;;35713:49;;-1:-1:-1;35792:15:0;:34;31955:4;35841:24;;35837:289;;;35883:21;35906;35932:52;35979:4;35932:46;:52::i;:::-;-1:-1:-1;;;;;;35999:18:0;;;;;;:12;:18;;;;;;;;36023:64;;;;;;;36035:15;36023:64;;;;;;;;;;;;;;35999:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36103:11:0;;-1:-1:-1;;;;36103:11:0;35837:289;-1:-1:-1;36143:5:0;;35556:600;-1:-1:-1;;;35556:600:0:o;34715:212::-;34755:12;;34780:140;34801:6;:13;34797:17;;34780:140;;;34840:18;34848:6;34855:1;34848:9;;;;;;;34840:18;34836:73;;;34889:4;34879:14;;34836:73;34816:3;;34780:140;;;;34715:212;:::o;6818:181::-;6876:7;6908:5;;;6932:6;;;;6924:46;;;;-1:-1:-1;;;6924:46:0;;;;;;;:::i;45299:745::-;45402:16;;;45416:1;45402:16;;;45378:21;45402:16;;;;;45361:4;;45378:21;;45402:16;45416:1;45402:16;;;;;;;;;;-1:-1:-1;45402:16:0;45378:40;;-1:-1:-1;;;;;;;;;;;45429:4:0;45434:1;45429:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;45429:23:0;;;-1:-1:-1;;;;;45429:23:0;;;;;31495:42;45463:4;45468:1;45463:7;;;;;;;;-1:-1:-1;;;;;45463:23:0;;;:7;;;;;;;;;;;:23;45520:21;31601:42;45544:28;45573:7;45590:1;45594:4;45608;45615:13;:3;45623:4;45615:7;:13::i;:::-;45544:85;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45544:85:0;;;;;;;;;;;;:::i;:::-;45520:109;;31495:42;-1:-1:-1;;;;;45640:13:0;;45654:7;45662:1;45654:10;;;;;;;;;;;;;;45640:25;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45746:16:0;;;45760:1;45746:16;;;;;;;;;45717:26;;-1:-1:-1;45746:16:0;-1:-1:-1;45746:16:0;;;45717:26;;45746:16;;;;;-1:-1:-1;45746:16:0;45717:45;;-1:-1:-1;;;;;;;;;;;45775:9:0;45785:1;45775:12;;;;;;;;;;;;;:28;-1:-1:-1;;;;;45775:28:0;;;-1:-1:-1;;;;;45775:28:0;;;;;31495:42;45814:9;45824:1;45814:12;;;;;;;;-1:-1:-1;;;;;45814:28:0;;;:12;;;;;;;;;:28;45876:3;;45853:12;;45876:3;;;45853:9;;45863:1;;45853:12;;;;;;-1:-1:-1;;;;;45853:27:0;;;:12;;;;;;;;;;;:27;31601:42;45914:28;45943:9;45962:1;45966:9;45985:4;45992:13;:3;46000:4;45992:7;:13::i;:::-;45914:92;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45914:92:0;;;;;;;;;;;;:::i;:::-;;46026:7;46034:1;46026:10;;;;;;;;;;;;;;46019:17;;;;;45299:745;;;;:::o;8172:471::-;8230:7;8475:6;8471:47;;-1:-1:-1;8505:1:0;8498:8;;8471:47;8542:5;;;8546:1;8542;:5;:1;8566:5;;;;;:10;8558:56;;;;-1:-1:-1;;;8558:56:0;;;;;;;:::i;9119:132::-;9177:7;9204:39;9208:1;9211;9204:39;;;;;;;;;;;;;;;;;:3;:39::i;46208:156::-;46293:12;-1:-1:-1;;;;;46286:29:0;;46316:8;46326:29;46342:12;46326:15;:29::i;:::-;46286:70;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46208:156;;:::o;36614:153::-;36677:4;36756:3;36720:21;36736:4;36720:15;:21::i;:::-;:31;36702:15;:49;36701:58;;;36614:153;-1:-1:-1;;;36614:153:0:o;16578:1058::-;16664:21;16687;16710;16761:23;:21;:23::i;:::-;16744:40;;16829:4;-1:-1:-1;;;;;16814:41:0;;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16795:62;;16902:4;-1:-1:-1;;;;;16887:41:0;;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16868:62;;17045:16;17063;17081:25;17125:4;-1:-1:-1;;;;;17110:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17044:100;;;;;;17181:14;17159:36;;:18;:36;;;17155:474;;17281:35;;;17427:62;;;17432:39;17452:8;17462;17432:19;:39::i;:::-;:42;-1:-1:-1;;;;;17427:48:0;:62;17407:82;;;;;17555:62;;;17560:39;17580:8;17590;17560:19;:39::i;:::-;:42;-1:-1:-1;;;;;17555:48:0;:62;17535:82;;;;;-1:-1:-1;17155:474:0;16578:1058;;;;;;;;:::o;7721:192::-;7807:7;7843:12;7835:6;;;;7827:29;;;;-1:-1:-1;;;7827:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7879:5:0;;;7721:192::o;14981:253::-;15048:16;;:::i;:::-;15077:6;15102;;;:54;;-1:-1:-1;;15148:7:0;;-1:-1:-1;;;;;15143:13:0;15117:17;;;;15138:1;15117:17;15138:1;15112:27;;;;;:44;15102:54;15094:102;;;;-1:-1:-1;;;15094:102:0;;;;;;;:::i;:::-;15214:12;;;;;;;;;;;;;14981:253;-1:-1:-1;;;14981:253:0:o;15935:130::-;16035:7;14252:3;16035:21;;15935:130::o;9747:278::-;9833:7;9868:12;9861:5;9853:28;;;;-1:-1:-1;;;9853:28:0;;;;;;;;:::i;:::-;;9892:9;9908:1;9904;:5;;;;;;;9747:278;-1:-1:-1;;;;;9747:278:0:o;16349:123::-;16438:25;:15;:25;;16349:123::o;15390:246::-;15471:16;;:::i;:::-;15522:1;15508:11;-1:-1:-1;;;;;15508:15:0;;15500:51;;;;-1:-1:-1;;;15500:51:0;;;;;;;:::i;:::-;15569:59;;;;;;;;;;-1:-1:-1;;;;;15579:48:0;;-1:-1:-1;;;14252:3:0;15580:32;;;;15579:48;;;;;;-1:-1:-1;;;;;15569:59:0;;;;15562:66;;15390:246;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;:::o;5:130::-;72:20;;97:33;72:20;97:33;:::i;1034:707::-;;1151:3;1144:4;1136:6;1132:17;1128:27;1118:2;;-1:-1;;1159:12;1118:2;1206:6;1193:20;1228:80;1243:64;1300:6;1243:64;:::i;:::-;1228:80;:::i;:::-;1336:21;;;1219:89;-1:-1;1380:4;1393:14;;;;1368:17;;;1482;;;1473:27;;;;1470:36;-1:-1;1467:2;;;1519:1;;1509:12;1467:2;1544:1;1529:206;1554:6;1551:1;1548:13;1529:206;;;3029:20;;1622:50;;1686:14;;;;1714;;;;1576:1;1569:9;1529:206;;;1533:14;;;;;1111:630;;;;:::o;3379:241::-;;3483:2;3471:9;3462:7;3458:23;3454:32;3451:2;;;-1:-1;;3489:12;3451:2;85:6;72:20;97:33;124:5;97:33;:::i;3627:263::-;;3742:2;3730:9;3721:7;3717:23;3713:32;3710:2;;;-1:-1;;3748:12;3710:2;226:6;220:13;238:33;265:5;238:33;:::i;3897:366::-;;;4018:2;4006:9;3997:7;3993:23;3989:32;3986:2;;;-1:-1;;4024:12;3986:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4076:63;-1:-1;4176:2;4215:22;;72:20;97:33;72:20;97:33;:::i;:::-;4184:63;;;;3980:283;;;;;:::o;4270:366::-;;;4391:2;4379:9;4370:7;4366:23;4362:32;4359:2;;;-1:-1;;4397:12;4359:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4449:63;4549:2;4588:22;;;;3029:20;;-1:-1;;;4353:283::o;4643:491::-;;;;4781:2;4769:9;4760:7;4756:23;4752:32;4749:2;;;-1:-1;;4787:12;4749:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4839:63;-1:-1;4939:2;4978:22;;3029:20;;-1:-1;5047:2;5086:22;;72:20;97:33;72:20;97:33;:::i;:::-;5055:63;;;;4743:391;;;;;:::o;5141:617::-;;;;;5296:3;5284:9;5275:7;5271:23;5267:33;5264:2;;;-1:-1;;5303:12;5264:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5355:63;-1:-1;5455:2;5494:22;;3029:20;;-1:-1;5563:2;5602:22;;72:20;97:33;72:20;97:33;:::i;:::-;5258:500;;;;-1:-1;5571:63;;5671:2;5710:22;3029:20;;-1:-1;;5258:500::o;5765:743::-;;;;;;5937:3;5925:9;5916:7;5912:23;5908:33;5905:2;;;-1:-1;;5944:12;5905:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5996:63;-1:-1;6096:2;6135:22;;3029:20;;-1:-1;6204:2;6243:22;;72:20;97:33;72:20;97:33;:::i;:::-;5899:609;;;;-1:-1;6212:63;;6312:2;6351:22;;3029:20;;-1:-1;6420:3;6460:22;3029:20;;5899:609;-1:-1;;5899:609::o;6515:377::-;;6644:2;;6632:9;6623:7;6619:23;6615:32;6612:2;;;-1:-1;;6650:12;6612:2;6708:17;6695:31;6746:18;6738:6;6735:30;6732:2;;;-1:-1;;6768:12;6732:2;6844:22;;411:4;399:17;;395:27;-1:-1;385:2;;-1:-1;;426:12;385:2;473:6;460:20;495:80;510:64;567:6;510:64;:::i;495:80::-;603:21;;;660:14;;;;635:17;;;749;;;740:27;;;;737:36;-1:-1;734:2;;;-1:-1;;776:12;734:2;-1:-1;802:10;;796:206;821:6;818:1;815:13;796:206;;;901:37;934:3;922:10;901:37;:::i;:::-;889:50;;843:1;836:9;;;;;953:14;;;;981;;796:206;;;-1:-1;6788:88;6606:286;-1:-1;;;;;;;6606:286::o;6899:377::-;;7028:2;7016:9;7007:7;7003:23;6999:32;6996:2;;;-1:-1;;7034:12;6996:2;7092:17;7079:31;7130:18;7122:6;7119:30;7116:2;;;-1:-1;;7152:12;7116:2;7182:78;7252:7;7243:6;7232:9;7228:22;7182:78;:::i;7283:392::-;;7423:2;;7411:9;7402:7;7398:23;7394:32;7391:2;;;-1:-1;;7429:12;7391:2;7480:17;7474:24;7518:18;7510:6;7507:30;7504:2;;;-1:-1;;7540:12;7504:2;7627:22;;1888:4;1876:17;;1872:27;-1:-1;1862:2;;-1:-1;;1903:12;1862:2;1943:6;1937:13;1965:80;1980:64;2037:6;1980:64;:::i;1965:80::-;2073:21;;;2130:14;;;;2105:17;;;2219;;;2210:27;;;;2207:36;-1:-1;2204:2;;;-1:-1;;2246:12;2204:2;-1:-1;2272:10;;2266:217;2291:6;2288:1;2285:13;2266:217;;;3177:13;;2359:61;;2313:1;2306:9;;;;;2434:14;;;;2462;;2266:217;;7682:627;;;;7845:2;7833:9;7824:7;7820:23;7816:32;7813:2;;;-1:-1;;7851:12;7813:2;7909:17;7896:31;7947:18;7939:6;7936:30;7933:2;;;-1:-1;;7969:12;7933:2;7999:78;8069:7;8060:6;8049:9;8045:22;7999:78;:::i;:::-;7989:88;8114:2;8153:22;;3029:20;;-1:-1;8222:2;8261:22;;;3029:20;;7807:502;-1:-1;;;;7807:502::o;8316:257::-;;8428:2;8416:9;8407:7;8403:23;8399:32;8396:2;;;-1:-1;;8434:12;8396:2;2578:6;2572:13;42628:5;39322:13;39315:21;42606:5;42603:32;42593:2;;-1:-1;;42639:12;8898:533;;;;9046:2;9034:9;9025:7;9021:23;9017:32;9014:2;;;-1:-1;;9052:12;9014:2;2905:6;2899:13;2917:33;2944:5;2917:33;:::i;:::-;9215:2;9265:22;;2899:13;9104:74;;-1:-1;2917:33;2899:13;2917:33;:::i;:::-;9334:2;9383:22;;3317:13;9223:74;;-1:-1;39944:10;39933:22;;43143:34;;43133:2;;-1:-1;;43181:12;9438:241;;9542:2;9530:9;9521:7;9517:23;9513:32;9510:2;;;-1:-1;;9548:12;9510:2;-1:-1;3029:20;;9504:175;-1:-1;9504:175::o;9686:263::-;;9801:2;9789:9;9780:7;9776:23;9772:32;9769:2;;;-1:-1;;9807:12;9769:2;-1:-1;3177:13;;9763:186;-1:-1;9763:186::o;9956:366::-;;;10077:2;10065:9;10056:7;10052:23;10048:32;10045:2;;;-1:-1;;10083:12;10045:2;-1:-1;;3029:20;;;10235:2;10274:22;;;3029:20;;-1:-1;10039:283::o;10329:491::-;;;;10467:2;10455:9;10446:7;10442:23;10438:32;10435:2;;;-1:-1;;10473:12;10435:2;-1:-1;;3029:20;;;10625:2;10664:22;;3029:20;;-1:-1;10733:2;10772:22;;;3029:20;;10429:391;-1:-1;10429:391::o;11760:690::-;;11953:5;37914:12;38589:6;38584:3;38577:19;38626:4;;38621:3;38617:14;11965:93;;38626:4;12129:5;37610:14;-1:-1;12168:260;12193:6;12190:1;12187:13;12168:260;;;12254:13;;-1:-1;;;;;39727:54;11401:37;;10981:14;;;;38317;;;;6746:18;12208:9;12168:260;;;-1:-1;12434:10;;11884:566;-1:-1;;;;;11884:566::o;21664:392::-;-1:-1;;42395:2;42391:14;;;;;11659:58;;42391:14;;;;;21917:2;21908:12;;11659:58;22019:12;;;21808:248::o;22063:926::-;-1:-1;;;;;;17798:87;;42395:2;42391:14;;;;-1:-1;;42391:14;17783:1;17904:11;;11659:58;22675:12;;;13387:58;17410:66;22786:12;;;17390:87;17496:12;;;22409:580::o;22996:222::-;-1:-1;;;;;39727:54;;;;11401:37;;23123:2;23108:18;;23094:124::o;23470:349::-;-1:-1;;;;;39727:54;;;11270:58;;39727:54;;23805:2;23790:18;;11401:37;23633:2;23618:18;;23604:215::o;23826:349::-;-1:-1;;;;;39727:54;;;;11270:58;;24161:2;24146:18;;13387:58;23989:2;23974:18;;23960:215::o;24182:604::-;-1:-1;;;;;39727:54;;;;11270:58;;24590:2;24575:18;;13387:58;;;;24681:2;24666:18;;14214:58;24772:2;24757:18;;14214:58;24417:3;24402:19;;24388:398::o;24793:460::-;-1:-1;;;;;39727:54;;;11401:37;;39727:54;;;;25156:2;25141:18;;11270:58;25239:2;25224:18;;13387:58;;;;24984:2;24969:18;;24955:298::o;26051:370::-;;26228:2;26249:17;26242:47;26303:108;26228:2;26217:9;26213:18;26397:6;26303:108;:::i;26428:370::-;26605:2;26619:47;;;37914:12;;26590:18;;;38577:19;;;26428:370;;26605:2;37610:14;;;;38617;;;;26428:370;12897:260;12922:6;12919:1;12916:13;12897:260;;;12983:13;;13387:58;;38317:14;;;;11163;;;;12944:1;12937:9;12897:260;;;-1:-1;26672:116;;26576:222;-1:-1;;;;;;26576:222::o;26805:210::-;39322:13;;39315:21;13252:34;;26926:2;26911:18;;26897:118::o;28084:310::-;;28231:2;;28252:17;28245:47;14429:5;37914:12;38589:6;28231:2;28220:9;28216:18;38577:19;-1:-1;41733:101;41747:6;41744:1;41741:13;41733:101;;;41814:11;;;;;41808:18;41795:11;;;38617:14;41795:11;41788:39;41762:10;;41733:101;;;41849:6;41846:1;41843:13;41840:2;;;-1:-1;38617:14;41905:6;28220:9;41896:16;;41889:27;41840:2;-1:-1;42300:7;42284:14;-1:-1;;42280:28;14587:39;;;;38617:14;14587:39;;28202:192;-1:-1;;;28202:192::o;28401:416::-;28601:2;28615:47;;;14863:2;28586:18;;;38577:19;-1:-1;;;38617:14;;;14879:41;14939:12;;;28572:245::o;28824:416::-;29024:2;29038:47;;;15190:2;29009:18;;;38577:19;15226:34;38617:14;;;15206:55;-1:-1;;;15281:12;;;15274:30;15323:12;;;28995:245::o;29247:416::-;29447:2;29461:47;;;15574:2;29432:18;;;38577:19;15610:29;38617:14;;;15590:50;15659:12;;;29418:245::o;29670:416::-;29870:2;29884:47;;;15910:2;29855:18;;;38577:19;15946:28;38617:14;;;15926:49;15994:12;;;29841:245::o;30093:416::-;30293:2;30307:47;;;16245:2;30278:18;;;38577:19;-1:-1;;;38617:14;;;16261:42;16322:12;;;30264:245::o;30516:416::-;30716:2;30730:47;;;16573:2;30701:18;;;38577:19;16609:34;38617:14;;;16589:55;-1:-1;;;16664:12;;;16657:29;16705:12;;;30687:245::o;30939:416::-;31139:2;31153:47;;;16956:2;31124:18;;;38577:19;16992:34;38617:14;;;16972:55;-1:-1;;;17047:12;;;17040:28;17087:12;;;31110:245::o;31362:416::-;31562:2;31576:47;;;18154:2;31547:18;;;38577:19;18190:34;38617:14;;;18170:55;-1:-1;;;18245:12;;;18238:25;18282:12;;;31533:245::o;31785:416::-;31985:2;31999:47;;;31970:18;;;38577:19;18569:34;38617:14;;;18549:55;18623:12;;;31956:245::o;32208:416::-;32408:2;32422:47;;;18874:1;32393:18;;;38577:19;-1:-1;;;38617:14;;;18889:28;18936:12;;;32379:245::o;32631:416::-;32831:2;32845:47;;;19187:2;32816:18;;;38577:19;19223:31;38617:14;;;19203:52;19274:12;;;32802:245::o;33054:416::-;33254:2;33268:47;;;19525:2;33239:18;;;38577:19;19561:34;38617:14;;;19541:55;-1:-1;;;19616:12;;;19609:27;19655:12;;;33225:245::o;33477:416::-;33677:2;33691:47;;;19906:2;33662:18;;;38577:19;19942:32;38617:14;;;19922:53;19994:12;;;33648:245::o;33900:416::-;34100:2;34114:47;;;20245:2;34085:18;;;38577:19;20281:25;38617:14;;;20261:46;20326:12;;;34071:245::o;34323:416::-;34523:2;34537:47;;;20577:2;34508:18;;;38577:19;-1:-1;;;38617:14;;;20593:45;20657:12;;;34494:245::o;34746:338::-;20982:23;;13387:58;;21165:4;21154:16;;;21148:23;21225:14;;;13387:58;21331:4;21320:16;;;21314:23;21391:14;;;13387:58;;;;34931:2;34916:18;;34902:182::o;35091:222::-;13387:58;;;35218:2;35203:18;;35189:124::o;35320:832::-;;13437:5;13394:3;13387:58;13437:5;35782:2;35771:9;35767:18;13387:58;35617:3;35819:2;35808:9;35804:18;35797:48;35859:108;35617:3;35606:9;35602:19;35953:6;35859:108;:::i;:::-;-1:-1;;;;;39727:54;;;;36054:2;36039:18;;11270:58;-1:-1;36137:3;36122:19;13387:58;35851:116;35588:564;-1:-1;;;35588:564::o;36159:444::-;13387:58;;;36506:2;36491:18;;13387:58;;;;36589:2;36574:18;;13387:58;36342:2;36327:18;;36313:290::o;36610:256::-;36672:2;36666:9;36698:17;;;36773:18;36758:34;;36794:22;;;36755:62;36752:2;;;36830:1;;36820:12;36752:2;36672;36839:22;36650:216;;-1:-1;36650:216::o;36873:304::-;;37032:18;37024:6;37021:30;37018:2;;;-1:-1;;37054:12;37018:2;-1:-1;37099:4;37087:17;;;37152:15;;36955:222::o;42423:117::-;-1:-1;;;;;39727:54;;42482:35;;42472:2;;42531:1;;42521:12;42837:117;-1:-1;;;;;42924:5;39611:42;42899:5;42896:35;42886:2;;42945:1;;42935:12
Swarm Source
ipfs://926a40dc4d5950507fc1bc8432a750e62dcf066bf4750c2315cf15426ab4db85
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.014242 | 562 | $8 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.