Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 25 from a total of 8,937 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Submit Feed | 2960344 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960340 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960336 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960325 | 26 days ago | IN | 0 ETH | 0.00000007 | ||||
Submit Feed | 2960321 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960314 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960311 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960307 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960299 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960296 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960292 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960285 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960281 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960278 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960266 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960263 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960255 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960251 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960248 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960238 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960234 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960227 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960223 | 26 days ago | IN | 0 ETH | 0.00000006 | ||||
Submit Feed | 2960219 | 26 days ago | IN | 0 ETH | 0.00000013 | ||||
Submit Feed | 2960208 | 26 days ago | IN | 0 ETH | 0.00000006 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x6856bC2D...7291e5150 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
OpenOracleFramework_New
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-11 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: ScryProtocol/interfaces/IScryFactory.sol pragma solidity ^0.8.20; /// @author Scry Finance Team /// @title IScryFactory /// @notice Interface for interacting with the ScryFactory Contract interface IScryFactory { /** * @dev gets the current scry router * * @return the current scry router */ function getScryRouter() external returns (address payable); } // File: ScryProtocol/interfaces/IScryRouter.sol pragma solidity ^0.8.20; /// @author Scry Finance Team /// @title IScryRouter /// @notice Interface for interacting with the Router Contract interface IScryRouter { /** * @dev calls the deposit function */ function deposit() external payable; } // File: ScryProtocol/OpenOracleFramework-New.sol pragma solidity ^0.8.20; pragma abicoder v2; // import "@openzeppelin/contracts/math/SafeMath.sol"; contract OpenOracleFramework_New { // using Openzeppelin contracts for SafeMath and Address using SafeMath for uint256; using Address for address; // the address of the collateral contract factory address public factoryContract; // address used for pay out address payable public payoutAddress; // number of signers uint256 public signerLength; // addresses of the signers address[] public signers; // threshold which has to be reached uint256 public signerThreshold; // struct to keep the values for each individual round struct feedRoundStruct { uint256 value; uint256 timestamp; } // stores historical values of feeds mapping(uint256 => mapping(uint256 => uint256)) private historicalFeeds; // indicates if sender is a signer mapping(address => bool) private isSigner; // mapping to store the actual submitted values per FeedId, per round number mapping(uint256 => mapping(uint256 => mapping(address => feedRoundStruct))) private feedRoundNumberToStructMapping; // indicates support of feeds mapping(uint256 => uint256) public feedSupport; // indicates if address si subscribed to a feed mapping(address => mapping(uint256 => uint256)) private subscribedTo; struct oracleStruct { string feedName; uint256 feedDecimals; uint256 feedTimeslot; uint256 latestPrice; uint256 latestPriceUpdate; // 0... donation, 1... subscription uint256 revenueMode; uint256 feedCost; } oracleStruct[] private feedList; // indicates if oracle subscription is turned on. 0 indicates no pass uint256 public subscriptionPassPrice; mapping(address => uint256) private hasPass; struct proposalStruct { uint256 uintValue; address addressValue; address proposer; // 0 ... pricePass // 1 ... threshold // 2 ... add signer // 3 ... remove signer // 4 ... payoutAddress // 5 ... revenueMode // 6 ... feedCost uint256 proposalType; uint256 proposalFeedId; uint256 proposalActive; } proposalStruct[] public proposalList; mapping(uint256 => mapping(address => bool)) private hasSignedProposal; event contractSetup(address[] signers, uint256 signerThreshold, address payout); event feedAdded(string name, string description, uint256 decimal, uint256 timeslot, uint256 feedId, uint256 mode, uint256 price); event feedSigned(uint256 feedId, uint256 roundId, uint256 value, uint256 timestamp, address signer); event routerFeeTaken(uint256 value, address sender); event feedSupported(uint256 feedId, uint256 supportvalue); event newProposal(uint256 proposalId, uint256 uintValue, address addressValue, uint256 oracleType, address proposer); event proposalSigned(uint256 proposalId, address signer); event newFee(uint256 value); event newThreshold(uint256 value); event newSigner(address signer); event signerRemoved(address signer); event newPayoutAddress(address payout); event newRevenueMode(uint256 mode, uint256 feed); event newFeedCost(uint256 cost, uint256 feed); event subscriptionPassPriceUpdated(uint256 newPass); // only Signer modifier modifier onlySigner { _onlySigner(); _; } // only Signer view function _onlySigner() private view { require(isSigner[msg.sender], "Only a signer can perform this action"); } constructor() { // factoryContract = address(1); } function initialize( address[] memory signers_, uint256 signerThreshold_, address payable payoutAddress_, uint256 subscriptionPassPrice_, address factoryContract_ ) external { require(factoryContract == address(0), "already initialized"); require(factoryContract_ != address(0), "factory can not be null"); require(signerThreshold_ != 0, "Threshold cant be 0"); require(signerThreshold_ <= signers_.length, "Threshold cant be more then signer count"); factoryContract = factoryContract_; signerThreshold = signerThreshold_; signers = signers_; for(uint i=0; i< signers.length; i++) { require(signers[i] != address(0), "Not zero address"); isSigner[signers[i]] = true; } signerLength = signers_.length; payoutAddress = payoutAddress_; subscriptionPassPrice = subscriptionPassPrice_; emit contractSetup(signers_, signerThreshold, payoutAddress); } //---------------------------helper functions--------------------------- /** * @dev implementation of a quicksort algorithm * * @param arr the array to be sorted * @param left the left outer bound element to start the sort * @param right the right outer bound element to stop the sort */ function quickSort(uint[] memory arr, int left, int right) private pure { int i = left; int j = right; if (i == j) return; uint pivot = arr[uint(left + (right - left) / 2)]; while (i <= j) { while (arr[uint(i)] < pivot) i++; while (pivot < arr[uint(j)]) j--; if (i <= j) { (arr[uint(i)], arr[uint(j)]) = (arr[uint(j)], arr[uint(i)]); i++; j--; } } if (left < j) quickSort(arr, left, j); if (i < right) quickSort(arr, i, right); } /** * @dev sort implementation which calls the quickSort function * * @param data the array to be sorted * @return the sorted array */ function sort(uint[] memory data) private pure returns (uint[] memory) { quickSort(data, int(0), int(data.length - 1)); return data; } //---------------------------view functions --------------------------- function getHistoricalFeeds(uint256[] memory feedIDs, uint256[] memory timestamps) external view returns (uint256[] memory) { uint256 feedLen = feedIDs.length; uint256[] memory returnPrices = new uint256[](feedLen); require(feedIDs.length == timestamps.length, "Feeds and Timestamps must match"); for (uint i = 0; i < feedIDs.length; i++) { if (subscriptionPassPrice > 0) { if (hasPass[msg.sender] <= block.timestamp) { if (feedList[feedIDs[i]].revenueMode == 1 && subscribedTo[msg.sender][feedIDs[i]] < block.timestamp) { revert("No subscription to feed"); } } } else { if (feedList[feedIDs[i]].revenueMode == 1 && subscribedTo[msg.sender][feedIDs[i]] < block.timestamp) { revert("No subscription to feed"); } } uint256 roundNumber = timestamps[i] / feedList[feedIDs[i]].feedTimeslot; returnPrices[i] = historicalFeeds[feedIDs[i]][roundNumber]; } return (returnPrices); } /** * @dev getFeeds function lets anyone call the oracle to receive data (maybe pay an optional fee) * * @param feedIDs the array of feedIds */ function getFeeds(uint256[] memory feedIDs) external view returns (uint256[] memory, uint256[] memory, uint256[] memory) { uint256 feedLen = feedIDs.length; uint256[] memory returnPrices = new uint256[](feedLen); uint256[] memory returnTimestamps = new uint256[](feedLen); uint256[] memory returnDecimals = new uint256[](feedLen); for (uint i = 0; i < feedIDs.length; i++) { (returnPrices[i] ,returnTimestamps[i], returnDecimals[i]) = getFeed(feedIDs[i]); } return (returnPrices, returnTimestamps, returnDecimals); } /** * @dev getFeed function lets anyone call the oracle to receive data (maybe pay an optional fee) * * @param feedID the array of feedId */ function getFeed(uint256 feedID) public view returns (uint256, uint256, uint256) { uint256 returnPrice; uint256 returnTimestamp; uint256 returnDecimals; if (subscriptionPassPrice > 0) { if (hasPass[msg.sender] <= block.timestamp) { if (feedList[feedID].revenueMode == 1 && subscribedTo[msg.sender][feedID] < block.timestamp) { revert("No subscription to feed"); } } } else { if (feedList[feedID].revenueMode == 1 && subscribedTo[msg.sender][feedID] < block.timestamp) { revert("No subscription to feed"); } } returnPrice = feedList[feedID].latestPrice; returnTimestamp = feedList[feedID].latestPriceUpdate; returnDecimals = feedList[feedID].feedDecimals; return (returnPrice, returnTimestamp, returnDecimals); } function getFeedLength() external view returns(uint256){ return feedList.length; } function getFeedList(uint256[] memory feedIDs) external view returns(string[] memory, uint256[] memory, uint256[] memory, uint256[] memory, uint256[] memory) { uint256 feedLen = feedIDs.length; string[] memory returnNames = new string[](feedLen); uint256[] memory returnDecimals = new uint256[](feedLen); uint256[] memory returnTimeslot = new uint256[](feedLen); uint256[] memory returnRevenueMode = new uint256[](feedLen); uint256[] memory returnCost = new uint256[](feedLen); for (uint i = 0; i < feedIDs.length; i++) { returnNames[i] = feedList[feedIDs[i]].feedName; returnDecimals[i] = feedList[feedIDs[i]].feedDecimals; returnTimeslot[i] = feedList[feedIDs[i]].feedTimeslot; returnRevenueMode[i] = feedList[feedIDs[i]].revenueMode; returnCost[i] = feedList[feedIDs[i]].feedCost; } return (returnNames, returnDecimals, returnTimeslot, returnRevenueMode, returnCost); } //---------------------------oracle management functions --------------------------- // function to withdraw funds function withdrawFunds() external { if (payoutAddress == address(0)) { for (uint n = 0; n < signers.length; n++){ payable(signers[n]).transfer(address(this).balance/signers.length); } } else { payoutAddress.transfer(address(this).balance); } } function createNewFeeds(string[] memory names, string[] memory descriptions, uint256[] memory decimals, uint256[] memory timeslots, uint256[] memory feedCosts, uint256[] memory revenueModes) onlySigner external { require(names.length == descriptions.length, "Length mismatch"); require(descriptions.length == decimals.length, "Length mismatch"); require(decimals.length == timeslots.length, "Length mismatch"); require(timeslots.length == feedCosts.length, "Length mismatch"); require(feedCosts.length == revenueModes.length, "Length mismatch"); for(uint i = 0; i < names.length; i++) { require(decimals[i] <= 18, "Decimal places too high"); require(timeslots[i] > 0, "Timeslot cannot be 0"); require(revenueModes[i] <= 1, "Wrong revenueMode parameter"); feedList.push(oracleStruct({ feedName: names[i], feedDecimals: decimals[i], feedTimeslot: timeslots[i], latestPrice: 0, latestPriceUpdate: 0, revenueMode: revenueModes[i], feedCost: feedCosts[i] })); emit feedAdded(names[i], descriptions[i], decimals[i], timeslots[i], feedList.length - 1, revenueModes[i], feedCosts[i]); } } /** * @dev submitFeed function lets a signer submit as many feeds as they want to * * @param values the array of values * @param feedIDs the array of feedIds */ function submitFeed(uint256[] memory feedIDs, uint256[] memory values) onlySigner external { require(values.length == feedIDs.length, "Value length and feedID length do not match"); // process feeds for (uint i = 0; i < values.length; i++) { // get current round number for feed uint256 roundNumber = block.timestamp / feedList[feedIDs[i]].feedTimeslot; // check if the signer already pushed an update for the given period if (feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][msg.sender].timestamp != 0) { delete feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][msg.sender]; } // feed - number and push value feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][msg.sender] = feedRoundStruct({ value: values[i], timestamp: block.timestamp }); emit feedSigned(feedIDs[i], roundNumber, values[i], block.timestamp, msg.sender); // check if threshold was met uint256 signedFeedsLen; uint256[] memory prices = new uint256[](signers.length); uint256 k; for (uint j = 0; j < signers.length; j++) { if (feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][signers[j]].timestamp != 0) { signedFeedsLen++; prices[k++] = feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][signers[j]].value; } } // Change the list size of the array in place assembly { mstore(prices, k) } // if threshold is met process price if (signedFeedsLen >= signerThreshold) { uint[] memory sorted = sort(prices); uint returnPrice; // uneven so we can take the middle if (sorted.length % 2 == 1) { uint sizer = (sorted.length + 1) / 2; returnPrice = sorted[sizer-1]; // take average of the 2 most inner numbers } else { uint size1 = (sorted.length) / 2; returnPrice = (sorted[size1-1]+sorted[size1])/2; } // process the struct for storing if (block.timestamp / feedList[feedIDs[i]].feedTimeslot > feedList[feedIDs[i]].latestPriceUpdate / feedList[feedIDs[i]].feedTimeslot) { historicalFeeds[feedIDs[i]][feedList[feedIDs[i]].latestPriceUpdate / feedList[feedIDs[i]].feedTimeslot] = feedList[feedIDs[i]].latestPrice; } feedList[feedIDs[i]].latestPriceUpdate = block.timestamp; feedList[feedIDs[i]].latestPrice = returnPrice; } } } function signProposal(uint256 proposalId) onlySigner external { require(proposalList[proposalId].proposalActive != 0, "Proposal not active"); hasSignedProposal[proposalId][msg.sender] = true; emit proposalSigned(proposalId, msg.sender); uint256 signedProposalLen; for(uint i = 0; i < signers.length; i++) { if (hasSignedProposal[proposalId][signers[i]]) { signedProposalLen++; } } // execute proposal if (signedProposalLen >= signerThreshold) { if (proposalList[proposalId].proposalType == 0) { updatePricePass(proposalList[proposalId].uintValue); } else if (proposalList[proposalId].proposalType == 1) { updateThreshold(proposalList[proposalId].uintValue); } else if (proposalList[proposalId].proposalType == 2) { addSigners(proposalList[proposalId].addressValue); } else if (proposalList[proposalId].proposalType == 3) { removeSigner(proposalList[proposalId].addressValue); } else if (proposalList[proposalId].proposalType == 4) { updatePayoutAddress(proposalList[proposalId].addressValue); } else if (proposalList[proposalId].proposalType == 5) { updateRevenueMode(proposalList[proposalId].uintValue, proposalList[proposalId].proposalFeedId); } else { updateFeedCost(proposalList[proposalId].uintValue, proposalList[proposalId].proposalFeedId); } // lock proposal proposalList[proposalId].proposalActive = 0; } } function createProposal(uint256 uintValue, address addressValue, uint256 proposalType, uint256 feedId) onlySigner external { uint256 proposalArrayLen = proposalList.length; // fee or threshold if (proposalType == 0 || proposalType == 1 || proposalType == 7) { proposalList.push(proposalStruct({ uintValue: uintValue, addressValue: address(0), proposer: msg.sender, proposalType: proposalType, proposalFeedId: 0, proposalActive: 1 })); } else if (proposalType == 5 || proposalType == 6) { proposalList.push(proposalStruct({ uintValue: uintValue, addressValue: address(0), proposer: msg.sender, proposalType: proposalType, proposalFeedId : feedId, proposalActive: 1 })); } else { proposalList.push(proposalStruct({ uintValue: 0, addressValue: addressValue, proposer: msg.sender, proposalType: proposalType, proposalFeedId : 0, proposalActive: 1 })); } hasSignedProposal[proposalArrayLen][msg.sender] = true; emit newProposal(proposalArrayLen, uintValue, addressValue, proposalType, msg.sender); emit proposalSigned(proposalArrayLen, msg.sender); } function updatePricePass(uint256 newPricePass) private { subscriptionPassPrice = newPricePass; emit subscriptionPassPriceUpdated(newPricePass); } function updateRevenueMode(uint256 newRevenueModeValue, uint256 feedId ) private { require(newRevenueModeValue <= 1, "Invalid argument for revenue Mode"); feedList[feedId].revenueMode = newRevenueModeValue; emit newRevenueMode(newRevenueModeValue, feedId); } function updateFeedCost(uint256 feedCost, uint256 feedId) private { require(feedCost > 0, "Feed price cant be 0"); feedList[feedId].feedCost = feedCost; emit newFeedCost(feedCost, feedId); } function updateThreshold(uint256 newThresholdValue) private { require(newThresholdValue != 0, "Threshold cant be 0"); require(newThresholdValue <= signerLength, "Threshold cant be bigger then length of signers"); signerThreshold = newThresholdValue; emit newThreshold(newThresholdValue); } function addSigners(address newSignerValue) private { // check for duplicate signer for (uint i=0; i < signers.length; i++) { if (signers[i] == newSignerValue) { revert("Signer already exists"); } } signers.push(newSignerValue); signerLength++; isSigner[newSignerValue] = true; emit newSigner(newSignerValue); } function updatePayoutAddress(address newPayoutAddressValue) private { payoutAddress = payable(newPayoutAddressValue); emit newPayoutAddress(newPayoutAddressValue); } function removeSigner(address toRemove) internal { require(isSigner[toRemove], "Address to remove has to be a signer"); require(signers.length -1 >= signerThreshold, "Less signers than threshold"); for (uint i = 0; i < signers.length; i++) { if (signers[i] == toRemove) { delete signers[i]; signerLength --; isSigner[toRemove] = false; emit signerRemoved(toRemove); } } } //---------------------------subscription functions--------------------------- function subscribeToFeed(uint256[] memory feedIDs, uint256[] memory durations, address buyer) payable external { require(feedIDs.length == durations.length, "Length mismatch"); uint256 total; for (uint i = 0; i < feedIDs.length; i++) { require(feedList[feedIDs[i]].revenueMode == 1, "Donation mode turned on"); require(durations[i] >= 3600, "Minimum subscription is 1h"); if (subscribedTo[buyer][feedIDs[i]] <=block.timestamp) { subscribedTo[buyer][feedIDs[i]] = block.timestamp.add(durations[i]); } else { subscribedTo[buyer][feedIDs[i]] = subscribedTo[buyer][feedIDs[i]].add(durations[i]); } total += feedList[feedIDs[i]].feedCost * durations[i] / 3600; } // check if enough payment was sent require(msg.value >= total, "Not enough funds sent to cover oracle fees"); // send feeds to router address payable ScryRouter = IScryFactory(factoryContract).getScryRouter(); IScryRouter(ScryRouter).deposit{value:msg.value/50}(); emit routerFeeTaken(msg.value/50, msg.sender); } function buyPass(address buyer, uint256 duration) payable external { require(subscriptionPassPrice != 0, "Subscription Pass turned off"); require(duration >= 3600, "Minimum subscription is 1h"); require(msg.value >= subscriptionPassPrice * duration / 86400, "Not enough payment"); if (hasPass[buyer] <=block.timestamp) { hasPass[buyer] = block.timestamp.add(duration); } else { hasPass[buyer] = hasPass[buyer].add(duration); } address payable ScryRouter = IScryFactory(factoryContract).getScryRouter(); IScryRouter(ScryRouter).deposit{value:msg.value/50}(); emit routerFeeTaken(msg.value/50, msg.sender); } function supportFeeds(uint256[] memory feedIds, uint256[] memory values) external payable { require(feedIds.length == values.length, "Length mismatch"); uint256 total; for (uint256 i = 0; i < feedIds.length; i++) { feedSupport[feedIds[i]] = feedSupport[feedIds[i]].add(values[i]); total += values[i]; emit feedSupported(feedIds[i], values[i]); } require(msg.value >= total, "Msg.value does not meet support values"); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"signers","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"signerThreshold","type":"uint256"},{"indexed":false,"internalType":"address","name":"payout","type":"address"}],"name":"contractSetup","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"description","type":"string"},{"indexed":false,"internalType":"uint256","name":"decimal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeslot","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feedId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mode","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"feedAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feedId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"roundId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"feedSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feedId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supportvalue","type":"uint256"}],"name":"feedSupported","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"newFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feed","type":"uint256"}],"name":"newFeedCost","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payout","type":"address"}],"name":"newPayoutAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"uintValue","type":"uint256"},{"indexed":false,"internalType":"address","name":"addressValue","type":"address"},{"indexed":false,"internalType":"uint256","name":"oracleType","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"}],"name":"newProposal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mode","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feed","type":"uint256"}],"name":"newRevenueMode","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"newSigner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"newThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"proposalSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"routerFeeTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"signerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPass","type":"uint256"}],"name":"subscriptionPassPriceUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"buyPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string[]","name":"names","type":"string[]"},{"internalType":"string[]","name":"descriptions","type":"string[]"},{"internalType":"uint256[]","name":"decimals","type":"uint256[]"},{"internalType":"uint256[]","name":"timeslots","type":"uint256[]"},{"internalType":"uint256[]","name":"feedCosts","type":"uint256[]"},{"internalType":"uint256[]","name":"revenueModes","type":"uint256[]"}],"name":"createNewFeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"uintValue","type":"uint256"},{"internalType":"address","name":"addressValue","type":"address"},{"internalType":"uint256","name":"proposalType","type":"uint256"},{"internalType":"uint256","name":"feedId","type":"uint256"}],"name":"createProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factoryContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"feedSupport","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feedID","type":"uint256"}],"name":"getFeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeedLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"}],"name":"getFeedList","outputs":[{"internalType":"string[]","name":"","type":"string[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"}],"name":"getFeeds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"timestamps","type":"uint256[]"}],"name":"getHistoricalFeeds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"signers_","type":"address[]"},{"internalType":"uint256","name":"signerThreshold_","type":"uint256"},{"internalType":"address payable","name":"payoutAddress_","type":"address"},{"internalType":"uint256","name":"subscriptionPassPrice_","type":"uint256"},{"internalType":"address","name":"factoryContract_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"payoutAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalList","outputs":[{"internalType":"uint256","name":"uintValue","type":"uint256"},{"internalType":"address","name":"addressValue","type":"address"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"proposalType","type":"uint256"},{"internalType":"uint256","name":"proposalFeedId","type":"uint256"},{"internalType":"uint256","name":"proposalActive","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"signProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signerThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"signers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"submitFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"durations","type":"uint256[]"},{"internalType":"address","name":"buyer","type":"address"}],"name":"subscribeToFeed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"subscriptionPassPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIds","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"supportFeeds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405260043610610131575f3560e01c80638c604296116100a8578063c37219ba1161006d578063c37219ba1461032d578063c4c1d0bf1461034c578063c6311e3f14610360578063d69d117c146103b8578063de11c94a146103e8578063ecb76d9014610406575f5ffd5b80638c604296146102a65780638e486eec146102b95780639da6553b146102ce578063a4a4f390146102f9578063ab2730161461030e575f5ffd5b80634a45ea5c116100f95780634a45ea5c146101e85780635b8d02d71461021657806368238181146102355780637f5090041461024857806384f3c58514610267578063882fd78214610293575f5ffd5b80630f3c80b2146101355780632079fb9a1461015657806324600fc31461019257806330c942e0146101a6578063442a33df146101c9575b5f5ffd5b348015610140575f5ffd5b5061015461014f366004613786565b610440565b005b348015610161575f5ffd5b50610175610170366004613857565b610701565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561019d575f5ffd5b50610154610729565b3480156101b1575f5ffd5b506101bb60025481565b604051908152602001610189565b3480156101d4575f5ffd5b506101546101e33660046139af565b6107e9565b3480156101f3575f5ffd5b50610207610202366004613ab5565b610be7565b60405161018993929190613b28565b348015610221575f5ffd5b50600154610175906001600160a01b031681565b610154610243366004613b6a565b610d5a565b348015610253575f5ffd5b50610154610262366004613be0565b6111f4565b348015610272575f5ffd5b50610286610281366004613be0565b611912565b6040516101899190613c43565b6101546102a1366004613be0565b611be8565b6101546102b4366004613c55565b611d78565b3480156102c4575f5ffd5b506101bb600b5481565b3480156102d9575f5ffd5b506101bb6102e8366004613857565b60086020525f908152604090205481565b348015610304575f5ffd5b506101bb60045481565b348015610319575f5ffd5b50610154610328366004613857565b612015565b348015610338575f5ffd5b50610154610347366004613c7f565b61241d565b348015610357575f5ffd5b50600a546101bb565b34801561036b575f5ffd5b5061037f61037a366004613857565b61290b565b604080519687526001600160a01b03958616602088015293909416928501929092526060840152608083015260a082015260c001610189565b3480156103c3575f5ffd5b506103d76103d2366004613ab5565b61295c565b604051610189959493929190613ce7565b3480156103f3575f5ffd5b505f54610175906001600160a01b031681565b348015610411575f5ffd5b50610425610420366004613857565b612d38565b60408051938452602084019290925290820152606001610189565b5f546001600160a01b0316156104935760405162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064015b60405180910390fd5b6001600160a01b0381166104e95760405162461bcd60e51b815260206004820152601760248201527f666163746f72792063616e206e6f74206265206e756c6c000000000000000000604482015260640161048a565b835f0361052e5760405162461bcd60e51b815260206004820152601360248201527205468726573686f6c642063616e74206265203606c1b604482015260640161048a565b84518411156105905760405162461bcd60e51b815260206004820152602860248201527f5468726573686f6c642063616e74206265206d6f7265207468656e207369676e604482015267195c8818dbdd5b9d60c21b606482015260840161048a565b5f80546001600160a01b0319166001600160a01b038316179055600484905584516105c290600390602088019061368e565b505f5b600354811015610693575f6001600160a01b0316600382815481106105ec576105ec613d9c565b5f918252602090912001546001600160a01b0316036106405760405162461bcd60e51b815260206004820152601060248201526f4e6f74207a65726f206164647265737360801b604482015260640161048a565b600160065f6003848154811061065857610658613d9c565b5f918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790556001016105c5565b508451600255600180546001600160a01b0319166001600160a01b038516908117909155600b8390556004546040517ff4955da0e7ea6f8c9297d8046c39168f24abc71dd60d47c7e4e2172f28f0c933926106f2928992909190613db0565b60405180910390a15050505050565b60038181548110610710575f80fd5b5f918252602090912001546001600160a01b0316905081565b6001546001600160a01b03166107b1575f5b6003548110156107ae576003818154811061075857610758613d9c565b5f918252602090912001546003546001600160a01b03909116906108fc906107809047613e3d565b6040518115909202915f818181858888f193505050501580156107a5573d5f5f3e3d5ffd5b5060010161073b565b50565b6001546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156107ae573d5f5f3e3d5ffd5b565b6107f1612eae565b84518651146108125760405162461bcd60e51b815260040161048a90613e50565b83518551146108335760405162461bcd60e51b815260040161048a90613e50565b82518451146108545760405162461bcd60e51b815260040161048a90613e50565b81518351146108755760405162461bcd60e51b815260040161048a90613e50565b80518251146108965760405162461bcd60e51b815260040161048a90613e50565b5f5b8651811015610bde5760128582815181106108b5576108b5613d9c565b6020026020010151111561090b5760405162461bcd60e51b815260206004820152601760248201527f446563696d616c20706c6163657320746f6f2068696768000000000000000000604482015260640161048a565b5f84828151811061091e5761091e613d9c565b60200260200101511161096a5760405162461bcd60e51b8152602060048201526014602482015273054696d65736c6f742063616e6e6f7420626520360641b604482015260640161048a565b600182828151811061097e5761097e613d9c565b602002602001015111156109d45760405162461bcd60e51b815260206004820152601b60248201527f57726f6e6720726576656e75654d6f646520706172616d657465720000000000604482015260640161048a565b600a6040518060e001604052808984815181106109f3576109f3613d9c565b60200260200101518152602001878481518110610a1257610a12613d9c565b60200260200101518152602001868481518110610a3157610a31613d9c565b602002602001015181526020015f81526020015f8152602001848481518110610a5c57610a5c613d9c565b60200260200101518152602001858481518110610a7b57610a7b613d9c565b60209081029190910181015190915282546001810184555f93845292208151919260070201908190610aad9082613efc565b506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015550507f7987e4b97b6de28ab6f19d4724c233a6f4fe564ba5413dc5d74b4c2c7841651a878281518110610b1f57610b1f613d9c565b6020026020010151878381518110610b3957610b39613d9c565b6020026020010151878481518110610b5357610b53613d9c565b6020026020010151878581518110610b6d57610b6d613d9c565b60200260200101516001600a80549050610b879190613fb6565b878781518110610b9957610b99613d9c565b6020026020010151898881518110610bb357610bb3613d9c565b6020026020010151604051610bce9796959493929190613fc9565b60405180910390a1600101610898565b50505050505050565b60608060605f845190505f816001600160401b03811115610c0a57610c0a6136fc565b604051908082528060200260200182016040528015610c33578160200160208202803683370190505b5090505f826001600160401b03811115610c4f57610c4f6136fc565b604051908082528060200260200182016040528015610c78578160200160208202803683370190505b5090505f836001600160401b03811115610c9457610c946136fc565b604051908082528060200260200182016040528015610cbd578160200160208202803683370190505b5090505f5b8851811015610d4b57610ced898281518110610ce057610ce0613d9c565b6020026020010151612d38565b868481518110610cff57610cff613d9c565b60200260200101868581518110610d1857610d18613d9c565b60200260200101868681518110610d3157610d31613d9c565b602090810291909101019290925291905252600101610cc2565b50919790965090945092505050565b8151835114610d7b5760405162461bcd60e51b815260040161048a90613e50565b5f805b845181101561107e57600a858281518110610d9b57610d9b613d9c565b602002602001015181548110610db357610db3613d9c565b905f5260205f20906007020160050154600114610e125760405162461bcd60e51b815260206004820152601760248201527f446f6e6174696f6e206d6f6465207475726e6564206f6e000000000000000000604482015260640161048a565b610e10848281518110610e2757610e27613d9c565b60200260200101511015610e7d5760405162461bcd60e51b815260206004820152601a60248201527f4d696e696d756d20737562736372697074696f6e206973203168000000000000604482015260640161048a565b6001600160a01b0383165f9081526009602052604081208651429290889085908110610eab57610eab613d9c565b602002602001015181526020019081526020015f205411610f3e57610ef2848281518110610edb57610edb613d9c565b602002602001015142612f1a90919063ffffffff16565b6001600160a01b0384165f9081526009602052604081208751909190889085908110610f2057610f20613d9c565b602002602001015181526020019081526020015f2081905550610ffd565b610fb5848281518110610f5357610f53613d9c565b602002602001015160095f866001600160a01b03166001600160a01b031681526020019081526020015f205f888581518110610f9157610f91613d9c565b602002602001015181526020019081526020015f2054612f1a90919063ffffffff16565b6001600160a01b0384165f9081526009602052604081208751909190889085908110610fe357610fe3613d9c565b602002602001015181526020019081526020015f20819055505b610e1084828151811061101257611012613d9c565b6020026020010151600a87848151811061102e5761102e613d9c565b60200260200101518154811061104657611046613d9c565b905f5260205f209060070201600601546110609190614018565b61106a9190613e3d565b611074908361402f565b9150600101610d7e565b50803410156110e25760405162461bcd60e51b815260206004820152602a60248201527f4e6f7420656e6f7567682066756e64732073656e7420746f20636f766572206f6044820152697261636c65206665657360b01b606482015260840161048a565b5f5f5f9054906101000a90046001600160a01b03166001600160a01b031663aa15f5a56040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611133573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111579190614042565b90506001600160a01b03811663d0e30db0611173603234613e3d565b6040518263ffffffff1660e01b81526004015f604051808303818588803b15801561119c575f5ffd5b505af11580156111ae573d5f5f3e3d5ffd5b50505050507f103515a9d6bc0233f6381d5e58df739f3078b58635e20d5dd204e558769ddc426032346111e19190613e3d565b60408051918252336020830152016106f2565b6111fc612eae565b81518151146112615760405162461bcd60e51b815260206004820152602b60248201527f56616c7565206c656e67746820616e6420666565644944206c656e677468206460448201526a0de40dcdee840dac2e8c6d60ab1b606482015260840161048a565b5f5b815181101561190d575f600a84838151811061128157611281613d9c565b60200260200101518154811061129957611299613d9c565b905f5260205f20906007020160020154426112b49190613e3d565b905060075f8584815181106112cb576112cb613d9c565b60209081029190910181015182528181019290925260409081015f90812084825283528181203382529092529020600101541561134d5760075f85848151811061131757611317613d9c565b60209081029190910181015182528181019290925260409081015f90812084825283528181203382529092528120818155600101555b604051806040016040528084848151811061136a5761136a613d9c565b602002602001015181526020014281525060075f86858151811061139057611390613d9c565b60209081029190910181015182528181019290925260409081015f90812085825283528181203382528352208251815591015160019091015583517fba4832b2bf8c9586edd5026f5bf3a5b8a69b0b29dea651d15bfda0cddf0e9548908590849081106113ff576113ff613d9c565b60200260200101518285858151811061141a5761141a613d9c565b602090810291909101810151604080519485529184019290925282015242606082015233608082015260a00160405180910390a16003545f9081906001600160401b0381111561146c5761146c6136fc565b604051908082528060200260200182016040528015611495578160200160208202803683370190505b5090505f805b6003548110156115ce5760075f8988815181106114ba576114ba613d9c565b602002602001015181526020019081526020015f205f8681526020019081526020015f205f600383815481106114f2576114f2613d9c565b5f9182526020808320909101546001600160a01b03168352820192909252604001902060010154156115c657836115288161405d565b94505060075f89888151811061154057611540613d9c565b602002602001015181526020019081526020015f205f8681526020019081526020015f205f6003838154811061157857611578613d9c565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205483836115a78161405d565b9450815181106115b9576115b9613d9c565b6020026020010181815250505b60010161149b565b5080825260045483106118fd575f6115e583612f2c565b90505f600282516115f69190614075565b600103611646575f60028351600161160e919061402f565b6116189190613e3d565b905082611626600183613fb6565b8151811061163657611636613d9c565b60200260200101519150506116b1565b5f600283516116559190613e3d565b9050600283828151811061166b5761166b613d9c565b6020026020010151846001846116819190613fb6565b8151811061169157611691613d9c565b60200260200101516116a3919061402f565b6116ad9190613e3d565b9150505b600a8988815181106116c5576116c5613d9c565b6020026020010151815481106116dd576116dd613d9c565b905f5260205f20906007020160020154600a8a898151811061170157611701613d9c565b60200260200101518154811061171957611719613d9c565b905f5260205f209060070201600401546117339190613e3d565b600a8a898151811061174757611747613d9c565b60200260200101518154811061175f5761175f613d9c565b905f5260205f209060070201600201544261177a9190613e3d565b111561187a57600a89888151811061179457611794613d9c565b6020026020010151815481106117ac576117ac613d9c565b905f5260205f2090600702016003015460055f8b8a815181106117d1576117d1613d9c565b602002602001015181526020019081526020015f205f600a8c8b815181106117fb576117fb613d9c565b60200260200101518154811061181357611813613d9c565b905f5260205f20906007020160020154600a8d8c8151811061183757611837613d9c565b60200260200101518154811061184f5761184f613d9c565b905f5260205f209060070201600401546118699190613e3d565b815260208101919091526040015f20555b42600a8a898151811061188f5761188f613d9c565b6020026020010151815481106118a7576118a7613d9c565b905f5260205f2090600702016004018190555080600a8a89815181106118cf576118cf613d9c565b6020026020010151815481106118e7576118e7613d9c565b905f5260205f2090600702016003018190555050505b5050600190920191506112639050565b505050565b81516060905f816001600160401b03811115611930576119306136fc565b604051908082528060200260200182016040528015611959578160200160208202803683370190505b50905083518551146119ad5760405162461bcd60e51b815260206004820152601f60248201527f466565647320616e642054696d657374616d7073206d757374206d6174636800604482015260640161048a565b5f5b8551811015611bdd57600b5415611a7a57335f908152600c60205260409020544210611a7557600a8682815181106119e9576119e9613d9c565b602002602001015181548110611a0157611a01613d9c565b905f5260205f209060070201600501546001148015611a585750335f9081526009602052604081208751429290899085908110611a4057611a40613d9c565b602002602001015181526020019081526020015f2054105b15611a755760405162461bcd60e51b815260040161048a90614088565b611b1a565b600a868281518110611a8e57611a8e613d9c565b602002602001015181548110611aa657611aa6613d9c565b905f5260205f209060070201600501546001148015611afd5750335f9081526009602052604081208751429290899085908110611ae557611ae5613d9c565b602002602001015181526020019081526020015f2054105b15611b1a5760405162461bcd60e51b815260040161048a90614088565b5f600a878381518110611b2f57611b2f613d9c565b602002602001015181548110611b4757611b47613d9c565b905f5260205f20906007020160020154868381518110611b6957611b69613d9c565b6020026020010151611b7b9190613e3d565b905060055f888481518110611b9257611b92613d9c565b602002602001015181526020019081526020015f205f8281526020019081526020015f2054838381518110611bc957611bc9613d9c565b6020908102919091010152506001016119af565b509150505b92915050565b8051825114611c095760405162461bcd60e51b815260040161048a90613e50565b5f805b8351811015611d1857611c47838281518110611c2a57611c2a613d9c565b602002602001015160085f878581518110610f9157610f91613d9c565b60085f868481518110611c5c57611c5c613d9c565b602002602001015181526020019081526020015f2081905550828181518110611c8757611c87613d9c565b602002602001015182611c9a919061402f565b91507f3444f0007ac07416465c167c0d7657d48e9d410b498f8849035fc9cf9523976d848281518110611ccf57611ccf613d9c565b6020026020010151848381518110611ce957611ce9613d9c565b6020026020010151604051611d08929190918252602082015260400190565b60405180910390a1600101611c0c565b508034101561190d5760405162461bcd60e51b815260206004820152602660248201527f4d73672e76616c756520646f6573206e6f74206d65657420737570706f72742060448201526576616c75657360d01b606482015260840161048a565b600b545f03611dc95760405162461bcd60e51b815260206004820152601c60248201527f537562736372697074696f6e2050617373207475726e6564206f666600000000604482015260640161048a565b610e10811015611e1b5760405162461bcd60e51b815260206004820152601a60248201527f4d696e696d756d20737562736372697074696f6e206973203168000000000000604482015260640161048a565b6201518081600b54611e2d9190614018565b611e379190613e3d565b341015611e7b5760405162461bcd60e51b8152602060048201526012602482015271139bdd08195b9bdd59da081c185e5b595b9d60721b604482015260640161048a565b6001600160a01b0382165f908152600c60205260409020544210611ec057611ea34282612f1a565b6001600160a01b0383165f908152600c6020526040902055611efb565b6001600160a01b0382165f908152600c6020526040902054611ee29082612f1a565b6001600160a01b0383165f908152600c60205260409020555b5f5f5f9054906101000a90046001600160a01b03166001600160a01b031663aa15f5a56040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611f4c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f709190614042565b90506001600160a01b03811663d0e30db0611f8c603234613e3d565b6040518263ffffffff1660e01b81526004015f604051808303818588803b158015611fb5575f5ffd5b505af1158015611fc7573d5f5f3e3d5ffd5b50505050507f103515a9d6bc0233f6381d5e58df739f3078b58635e20d5dd204e558769ddc42603234611ffa9190613e3d565b604080519182523360208301520160405180910390a1505050565b61201d612eae565b600d818154811061203057612030613d9c565b905f5260205f209060060201600501545f036120845760405162461bcd60e51b815260206004820152601360248201527250726f706f73616c206e6f742061637469766560681b604482015260640161048a565b5f818152600e602090815260408083203380855290835292819020805460ff191660011790558051848152918201929092527f163fd1b723c0447962b4aca81cc014e8103ab3753a07542f4edbed3e59444d67910160405180910390a15f805b600354811015612154575f838152600e60205260408120600380549192918490811061211257612112613d9c565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205460ff161561214c57816121488161405d565b9250505b6001016120e4565b50600454811061241957600d828154811061217157612171613d9c565b905f5260205f209060060201600301545f036121b6576121b1600d838154811061219d5761219d613d9c565b905f5260205f2090600602015f0154612f4a565b6123f1565b600d82815481106121c9576121c9613d9c565b905f5260205f2090600602016003015460010361220a576121b1600d83815481106121f6576121f6613d9c565b905f5260205f2090600602015f0154612f86565b600d828154811061221d5761221d613d9c565b905f5260205f2090600602016003015460020361226b576121b1600d838154811061224a5761224a613d9c565b5f9182526020909120600160069092020101546001600160a01b031661306a565b600d828154811061227e5761227e613d9c565b905f5260205f209060060201600301546003036122cc576121b1600d83815481106122ab576122ab613d9c565b5f9182526020909120600160069092020101546001600160a01b03166131a4565b600d82815481106122df576122df613d9c565b905f5260205f2090600602016003015460040361232d576121b1600d838154811061230c5761230c613d9c565b5f9182526020909120600160069092020101546001600160a01b0316613352565b600d828154811061234057612340613d9c565b905f5260205f209060060201600301546005036123a4576121b1600d838154811061236d5761236d613d9c565b905f5260205f2090600602015f0154600d848154811061238f5761238f613d9c565b905f5260205f209060060201600401546133a0565b6123f1600d83815481106123ba576123ba613d9c565b905f5260205f2090600602015f0154600d84815481106123dc576123dc613d9c565b905f5260205f20906006020160040154613468565b5f600d838154811061240557612405613d9c565b905f5260205f209060060201600501819055505b5050565b612425612eae565b600d548215806124355750826001145b806124405750826007145b1561259a576040805160c0810182528681525f60208201818152339383019384526060830187815260808401838152600160a08601818152600d8054928301815590955294517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560069096029586015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6850180546001600160a01b03199081166001600160a01b039384161790915595517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb78601805490971691161790945592517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb883015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb982015590517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eba9091015561285b565b82600514806125a95750826006145b15612703576040805160c0810182528681525f60208201818152339383019384526060830187815260808401878152600160a08601818152600d8054928301815590955294517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560069096029586015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6850180546001600160a01b03199081166001600160a01b039384161790915595517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb78601805490971691161790945592517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb883015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb982015590517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eba9091015561285b565b6040805160c0810182525f8082526001600160a01b0387811660208401908152339484019485526060840188815260808501848152600160a08701818152600d8054928301815590965295517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560069097029687015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6860180546001600160a01b031990811692861692909217905595517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb786018054909716931692909217909455517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb883015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb982015590517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eba909101555b5f818152600e602090815260408083203380855290835292819020805460ff1916600117905580518481529182018890526001600160a01b038716908201526060810185905260808101919091527fa7105ed77601732b2ee4362ad1a2ca325d1983be801d553d907e0aa29dcdb79a9060a00160405180910390a1604080518281523360208201527f163fd1b723c0447962b4aca81cc014e8103ab3753a07542f4edbed3e59444d6791016106f2565b600d818154811061291a575f80fd5b5f9182526020909120600690910201805460018201546002830154600384015460048501546005909501549395506001600160a01b0392831694919092169286565b60608060608060605f865190505f816001600160401b03811115612982576129826136fc565b6040519080825280602002602001820160405280156129b557816020015b60608152602001906001900390816129a05790505b5090505f826001600160401b038111156129d1576129d16136fc565b6040519080825280602002602001820160405280156129fa578160200160208202803683370190505b5090505f836001600160401b03811115612a1657612a166136fc565b604051908082528060200260200182016040528015612a3f578160200160208202803683370190505b5090505f846001600160401b03811115612a5b57612a5b6136fc565b604051908082528060200260200182016040528015612a84578160200160208202803683370190505b5090505f856001600160401b03811115612aa057612aa06136fc565b604051908082528060200260200182016040528015612ac9578160200160208202803683370190505b5090505f5b8c51811015612d2457600a8d8281518110612aeb57612aeb613d9c565b602002602001015181548110612b0357612b03613d9c565b905f5260205f2090600702015f018054612b1c90613e79565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4890613e79565b8015612b935780601f10612b6a57610100808354040283529160200191612b93565b820191905f5260205f20905b815481529060010190602001808311612b7657829003601f168201915b5050505050868281518110612baa57612baa613d9c565b6020026020010181905250600a8d8281518110612bc957612bc9613d9c565b602002602001015181548110612be157612be1613d9c565b905f5260205f20906007020160010154858281518110612c0357612c03613d9c565b602002602001018181525050600a8d8281518110612c2357612c23613d9c565b602002602001015181548110612c3b57612c3b613d9c565b905f5260205f20906007020160020154848281518110612c5d57612c5d613d9c565b602002602001018181525050600a8d8281518110612c7d57612c7d613d9c565b602002602001015181548110612c9557612c95613d9c565b905f5260205f20906007020160050154838281518110612cb757612cb7613d9c565b602002602001018181525050600a8d8281518110612cd757612cd7613d9c565b602002602001015181548110612cef57612cef613d9c565b905f5260205f20906007020160060154828281518110612d1157612d11613d9c565b6020908102919091010152600101612ace565b50939b929a50909850965090945092505050565b5f5f5f5f5f5f5f600b541115612dc957335f908152600c60205260409020544210612dc457600a8781548110612d7057612d70613d9c565b905f5260205f209060070201600501546001148015612da75750335f9081526009602090815260408083208a845290915290205442115b15612dc45760405162461bcd60e51b815260040161048a90614088565b612e30565b600a8781548110612ddc57612ddc613d9c565b905f5260205f209060070201600501546001148015612e135750335f9081526009602090815260408083208a845290915290205442115b15612e305760405162461bcd60e51b815260040161048a90614088565b600a8781548110612e4357612e43613d9c565b905f5260205f209060070201600301549250600a8781548110612e6857612e68613d9c565b905f5260205f209060070201600401549150600a8781548110612e8d57612e8d613d9c565b5f918252602090912060079091020160010154929791965091945092505050565b335f9081526006602052604090205460ff166107e75760405162461bcd60e51b815260206004820152602560248201527f4f6e6c792061207369676e65722063616e20706572666f726d2074686973206160448201526431ba34b7b760d91b606482015260840161048a565b5f612f25828461402f565b9392505050565b6060612f46825f60018551612f419190613fb6565b61350f565b5090565b600b8190556040518181527f35a14b8b09dda49419beccb57b8ab7a2333bfeb9634690a2fdd9e62ca2b73dea906020015b60405180910390a150565b805f03612fcb5760405162461bcd60e51b815260206004820152601360248201527205468726573686f6c642063616e74206265203606c1b604482015260640161048a565b6002548111156130355760405162461bcd60e51b815260206004820152602f60248201527f5468726573686f6c642063616e7420626520626967676572207468656e206c6560448201526e6e677468206f66207369676e65727360881b606482015260840161048a565b60048190556040518181527fd88532aad776d079efe3ac298f9e21dc4ef893e240d8c13107298e7c4f6eb8b890602001612f7b565b5f5b6003548110156130f457816001600160a01b03166003828154811061309357613093613d9c565b5f918252602090912001546001600160a01b0316036130ec5760405162461bcd60e51b81526020600482015260156024820152745369676e657220616c72656164792065786973747360581b604482015260640161048a565b60010161306c565b50600380546001810182555f9182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b038416179055600280549161314c8361405d565b90915550506001600160a01b0381165f81815260066020908152604091829020805460ff1916600117905590519182527f3dc2a8437aef0e8d2839b5e75d0d93e6c7f43b3acf5d2ef2db79beb54cb47b3d9101612f7b565b6001600160a01b0381165f9081526006602052604090205460ff166132175760405162461bcd60e51b8152602060048201526024808201527f4164647265737320746f2072656d6f76652068617320746f206265206120736960448201526333b732b960e11b606482015260840161048a565b60045460035461322990600190613fb6565b10156132775760405162461bcd60e51b815260206004820152601b60248201527f4c657373207369676e657273207468616e207468726573686f6c640000000000604482015260640161048a565b5f5b60035481101561241957816001600160a01b0316600382815481106132a0576132a0613d9c565b5f918252602090912001546001600160a01b03160361334a57600381815481106132cc576132cc613d9c565b5f918252602082200180546001600160a01b031916905560028054916132f1836140bf565b90915550506001600160a01b0382165f81815260066020908152604091829020805460ff1916905590519182527ffa15964370ccf7acface74df78a85aa4857e703226c446d3e24a69663dc302e7910160405180910390a15b600101613279565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f4bc0293774d2baff337ab66d049d9fb89b31c492a1c82fd1b53d43ac85e8da5190602001612f7b565b60018211156133fb5760405162461bcd60e51b815260206004820152602160248201527f496e76616c696420617267756d656e7420666f7220726576656e7565204d6f646044820152606560f81b606482015260840161048a565b81600a828154811061340f5761340f613d9c565b905f5260205f209060070201600501819055507fe7fdf61d93ca682755140eb73628f48cfc090ca0f669e547790b227980e1a22c828260405161345c929190918252602082015260400190565b60405180910390a15050565b5f82116134ae5760405162461bcd60e51b81526020600482015260146024820152730466565642070726963652063616e7420626520360641b604482015260640161048a565b81600a82815481106134c2576134c2613d9c565b905f5260205f209060070201600601819055507f66317a45088a6e6e10f3831e0347d9fbaa68b04f54503eaf4e8683512a69077a828260405161345c929190918252602082015260400190565b818180820361351f575050505050565b5f85600261352d87876140d4565b61353791906140fa565b6135419087614126565b8151811061355157613551613d9c565b602002602001015190505b818313613660575b8086848151811061357757613577613d9c565b60200260200101511015613597578261358f8161414d565b935050613564565b8582815181106135a9576135a9613d9c565b60200260200101518110156135ca57816135c281614164565b925050613597565b81831361365b578582815181106135e3576135e3613d9c565b60200260200101518684815181106135fd576135fd613d9c565b602002602001015187858151811061361757613617613d9c565b6020026020010188858151811061363057613630613d9c565b602090810291909101019190915252826136498161414d565b935050818061365790614164565b9250505b61355c565b818512156136735761367386868461350f565b838312156136865761368686848661350f565b505050505050565b828054828255905f5260205f209081019282156136e1579160200282015b828111156136e157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906136ac565b50612f469291505b80821115612f46575f81556001016136e9565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715613738576137386136fc565b604052919050565b5f6001600160401b03821115613758576137586136fc565b5060051b60200190565b6001600160a01b03811681146107ae575f5ffd5b803561378181613762565b919050565b5f5f5f5f5f60a0868803121561379a575f5ffd5b85356001600160401b038111156137af575f5ffd5b8601601f810188136137bf575f5ffd5b80356137d26137cd82613740565b613710565b8082825260208201915060208360051b85010192508a8311156137f3575f5ffd5b6020840193505b8284101561381e57833561380d81613762565b8252602093840193909101906137fa565b97505050506020860135935061383660408701613776565b92506060860135915061384b60808701613776565b90509295509295909350565b5f60208284031215613867575f5ffd5b5035919050565b5f82601f83011261387d575f5ffd5b813561388b6137cd82613740565b8082825260208201915060208360051b8601019250858311156138ac575f5ffd5b602085015b8381101561394a5780356001600160401b038111156138ce575f5ffd5b8601603f810188136138de575f5ffd5b60208101356001600160401b038111156138fa576138fa6136fc565b61390d601f8201601f1916602001613710565b8181526040838301018a1015613921575f5ffd5b816040840160208301375f602083830101528086525050506020830192506020810190506138b1565b5095945050505050565b5f82601f830112613963575f5ffd5b81356139716137cd82613740565b8082825260208201915060208360051b860101925085831115613992575f5ffd5b602085015b8381101561394a578035835260209283019201613997565b5f5f5f5f5f5f60c087890312156139c4575f5ffd5b86356001600160401b038111156139d9575f5ffd5b6139e589828a0161386e565b96505060208701356001600160401b03811115613a00575f5ffd5b613a0c89828a0161386e565b95505060408701356001600160401b03811115613a27575f5ffd5b613a3389828a01613954565b94505060608701356001600160401b03811115613a4e575f5ffd5b613a5a89828a01613954565b93505060808701356001600160401b03811115613a75575f5ffd5b613a8189828a01613954565b92505060a08701356001600160401b03811115613a9c575f5ffd5b613aa889828a01613954565b9150509295509295509295565b5f60208284031215613ac5575f5ffd5b81356001600160401b03811115613ada575f5ffd5b613ae684828501613954565b949350505050565b5f8151808452602084019350602083015f5b82811015613b1e578151865260209586019590910190600101613b00565b5093949350505050565b606081525f613b3a6060830186613aee565b8281036020840152613b4c8186613aee565b90508281036040840152613b608185613aee565b9695505050505050565b5f5f5f60608486031215613b7c575f5ffd5b83356001600160401b03811115613b91575f5ffd5b613b9d86828701613954565b93505060208401356001600160401b03811115613bb8575f5ffd5b613bc486828701613954565b9250506040840135613bd581613762565b809150509250925092565b5f5f60408385031215613bf1575f5ffd5b82356001600160401b03811115613c06575f5ffd5b613c1285828601613954565b92505060208301356001600160401b03811115613c2d575f5ffd5b613c3985828601613954565b9150509250929050565b602081525f612f256020830184613aee565b5f5f60408385031215613c66575f5ffd5b8235613c7181613762565b946020939093013593505050565b5f5f5f5f60808587031215613c92575f5ffd5b843593506020850135613ca481613762565b93969395505050506040820135916060013590565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b5f60a0820160a0835280885180835260c08501915060c08160051b860101925060208a015f5b82811015613d3e5760bf19878603018452613d29858351613cb9565b94506020938401939190910190600101613d0d565b505050508281036020840152613d548188613aee565b90508281036040840152613d688187613aee565b90508281036060840152613d7c8186613aee565b90508281036080840152613d908185613aee565b98975050505050505050565b634e487b7160e01b5f52603260045260245ffd5b606080825284519082018190525f9060208601906080840190835b81811015613df25783516001600160a01b0316835260209384019390920191600101613dcb565b5050602084019590955250506001600160a01b0391909116604090910152919050565b634e487b7160e01b5f52601260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f82613e4b57613e4b613e15565b500490565b6020808252600f908201526e098cadccee8d040dad2e6dac2e8c6d608b1b604082015260600190565b600181811c90821680613e8d57607f821691505b602082108103613eab57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561190d57805f5260205f20601f840160051c81016020851015613ed65750805b601f840160051c820191505b81811015613ef5575f8155600101613ee2565b5050505050565b81516001600160401b03811115613f1557613f156136fc565b613f2981613f238454613e79565b84613eb1565b6020601f821160018114613f5b575f8315613f445750848201515b5f19600385901b1c1916600184901b178455613ef5565b5f84815260208120601f198516915b82811015613f8a5787850151825560209485019460019092019101613f6a565b5084821015613fa757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b81810381811115611be257611be2613e29565b60e081525f613fdb60e083018a613cb9565b8281036020840152613fed818a613cb9565b604084019890985250506060810194909452608084019290925260a083015260c09091015292915050565b8082028115828204841417611be257611be2613e29565b80820180821115611be257611be2613e29565b5f60208284031215614052575f5ffd5b8151612f2581613762565b5f6001820161406e5761406e613e29565b5060010190565b5f8261408357614083613e15565b500690565b60208082526017908201527f4e6f20737562736372697074696f6e20746f2066656564000000000000000000604082015260600190565b5f816140cd576140cd613e29565b505f190190565b8181035f8312801583831316838312821617156140f3576140f3613e29565b5092915050565b5f8261410857614108613e15565b600160ff1b82145f198414161561412157614121613e29565b500590565b8082018281125f83128015821682158216171561414557614145613e29565b505092915050565b5f6001600160ff1b01820161406e5761406e613e29565b5f600160ff1b82016140cd576140cd613e2956fea2646970667358221220843e815644b6e553b57ea53cc6194eb9c89629dfc93aaf8856a863ba27fa05c964736f6c634300081c0033
Deployed Bytecode Sourcemap
14299:23187:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18027:1056;;;;;;;;;;-1:-1:-1;18027:1056:0;;;;;:::i;:::-;;:::i;:::-;;14737:24;;;;;;;;;;-1:-1:-1;14737:24:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2660:32:1;;;2642:51;;2630:2;2615:18;14737:24:0;;;;;;;;24806:333;;;;;;;;;;;;;:::i;14668:27::-;;;;;;;;;;;;;;;;;;;2850:25:1;;;2838:2;2823:18;14668:27:0;2704:177:1;25147:1323:0;;;;;;;;;;-1:-1:-1;25147:1323:0;;;;;:::i;:::-;;:::i;21815:603::-;;;;;;;;;;-1:-1:-1;21815:603:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;14597:36::-;;;;;;;;;;-1:-1:-1;14597:36:0;;;;-1:-1:-1;;;;;14597:36:0;;;35026:1189;;;;;;:::i;:::-;;:::i;26669:2901::-;;;;;;;;;;-1:-1:-1;26669:2901:0;;;;;:::i;:::-;;:::i;20473:1163::-;;;;;;;;;;-1:-1:-1;20473:1163:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36953:530::-;;;;;;:::i;:::-;;:::i;36223:722::-;;;;;;:::i;:::-;;:::i;16046:36::-;;;;;;;;;;;;;;;;15454:46;;;;;;;;;;-1:-1:-1;15454:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;14812:30;;;;;;;;;;;;;;;;29578:1703;;;;;;;;;;-1:-1:-1;29578:1703:0;;;;;:::i;:::-;;:::i;31289:1451::-;;;;;;;;;;-1:-1:-1;31289:1451:0;;;;;:::i;:::-;;:::i;23538:96::-;;;;;;;;;;-1:-1:-1;23611:8:0;:15;23538:96;;16570:36;;;;;;;;;;-1:-1:-1;16570:36:0;;;;;:::i;:::-;;:::i;:::-;;;;11086:25:1;;;-1:-1:-1;;;;;11147:32:1;;;11142:2;11127:18;;11120:60;11216:32;;;;11196:18;;;11189:60;;;;11280:2;11265:18;;11258:34;11323:3;11308:19;;11301:35;11167:3;11352:19;;11345:35;11073:3;11058:19;16570:36:0;10799:587:1;23642:1029:0;;;;;;;;;;-1:-1:-1;23642:1029:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;14525:30::-;;;;;;;;;;-1:-1:-1;14525:30:0;;;;-1:-1:-1;;;;;14525:30:0;;;22592:938;;;;;;;;;;-1:-1:-1;22592:938:0;;;;;:::i;:::-;;:::i;:::-;;;;13475:25:1;;;13531:2;13516:18;;13509:34;;;;13559:18;;;13552:34;13463:2;13448:18;22592:938:0;13273:319:1;18027:1056:0;18302:1;18275:15;-1:-1:-1;;;;;18275:15:0;:29;18267:61;;;;-1:-1:-1;;;18267:61:0;;13799:2:1;18267:61:0;;;13781:21:1;13838:2;13818:18;;;13811:30;-1:-1:-1;;;13857:18:1;;;13850:49;13916:18;;18267:61:0;;;;;;;;;-1:-1:-1;;;;;18347:30:0;;18339:66;;;;-1:-1:-1;;;18339:66:0;;14147:2:1;18339:66:0;;;14129:21:1;14186:2;14166:18;;;14159:30;14225:25;14205:18;;;14198:53;14268:18;;18339:66:0;13945:347:1;18339:66:0;18424:16;18444:1;18424:21;18416:53;;;;-1:-1:-1;;;18416:53:0;;14499:2:1;18416:53:0;;;14481:21:1;14538:2;14518:18;;;14511:30;-1:-1:-1;;;14557:18:1;;;14550:49;14616:18;;18416:53:0;14297:343:1;18416:53:0;18508:8;:15;18488:16;:35;;18480:88;;;;-1:-1:-1;;;18480:88:0;;14847:2:1;18480:88:0;;;14829:21:1;14886:2;14866:18;;;14859:30;14925:34;14905:18;;;14898:62;-1:-1:-1;;;14976:18:1;;;14969:38;15024:19;;18480:88:0;14645:404:1;18480:88:0;18581:15;:34;;-1:-1:-1;;;;;;18581:34:0;-1:-1:-1;;;;;18581:34:0;;;;;18626:15;:34;;;18671:18;;;;:7;;:18;;;;;:::i;:::-;-1:-1:-1;18706:6:0;18702:160;18719:7;:14;18716:17;;18702:160;;;18785:1;-1:-1:-1;;;;;18763:24:0;:7;18771:1;18763:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;18763:10:0;:24;18755:53;;;;-1:-1:-1;;;18755:53:0;;15388:2:1;18755:53:0;;;15370:21:1;15427:2;15407:18;;;15400:30;-1:-1:-1;;;15446:18:1;;;15439:46;15502:18;;18755:53:0;15186:340:1;18755:53:0;18846:4;18823:8;:20;18832:7;18840:1;18832:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;18832:10:0;18823:20;;;;;;;;;;;;:27;;-1:-1:-1;;18823:27:0;;;;;;;;;;-1:-1:-1;18735:3:0;18702:160;;;-1:-1:-1;18889:15:0;;18874:12;:30;18915:13;:30;;-1:-1:-1;;;;;;18915:30:0;-1:-1:-1;;;;;18915:30:0;;;;;;;;18956:21;:46;;;19044:15;;19020:55;;;;;;18889:15;;19044;;18915:30;19020:55;:::i;:::-;;;;;;;;18027:1056;;;;;:::o;14737:24::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14737:24:0;;-1:-1:-1;14737:24:0;:::o;24806:333::-;24857:13;;-1:-1:-1;;;;;24857:13:0;24853:279;;24906:6;24901:142;24922:7;:14;24918:18;;24901:142;;;24969:7;24977:1;24969:10;;;;;;;;:::i;:::-;;;;;;;;;;;25012:7;:14;-1:-1:-1;;;;;24969:10:0;;;;24961:66;;24990:36;;:21;:36;:::i;:::-;24961:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24938:3:0;;24901:142;;;;24806:333::o;24853:279::-;25075:13;;:45;;-1:-1:-1;;;;;25075:13:0;;;;25098:21;25075:45;;;;;:13;:45;:13;:45;25098:21;25075:13;:45;;;;;;;;;;;;;;;;;;;24853:279;24806:333::o;25147:1323::-;17755:13;:11;:13::i;:::-;25393:12:::1;:19;25377:5;:12;:35;25369:63;;;;-1:-1:-1::0;;;25369:63:0::1;;;;;;;:::i;:::-;25474:8;:15;25451:12;:19;:38;25443:66;;;;-1:-1:-1::0;;;25443:66:0::1;;;;;;;:::i;:::-;25547:9;:16;25528:8;:15;:35;25520:63;;;;-1:-1:-1::0;;;25520:63:0::1;;;;;;;:::i;:::-;25622:9;:16;25602:9;:16;:36;25594:64;;;;-1:-1:-1::0;;;25594:64:0::1;;;;;;;:::i;:::-;25697:12;:19;25677:9;:16;:39;25669:67;;;;-1:-1:-1::0;;;25669:67:0::1;;;;;;;:::i;:::-;25753:6;25749:714;25769:5;:12;25765:1;:16;25749:714;;;25826:2;25811:8;25820:1;25811:11;;;;;;;;:::i;:::-;;;;;;;:17;;25803:53;;;::::0;-1:-1:-1;;;25803:53:0;;17293:2:1;25803:53:0::1;::::0;::::1;17275:21:1::0;17332:2;17312:18;;;17305:30;17371:25;17351:18;;;17344:53;17414:18;;25803:53:0::1;17091:347:1::0;25803:53:0::1;25894:1;25879:9;25889:1;25879:12;;;;;;;;:::i;:::-;;;;;;;:16;25871:49;;;::::0;-1:-1:-1;;;25871:49:0;;17645:2:1;25871:49:0::1;::::0;::::1;17627:21:1::0;17684:2;17664:18;;;17657:30;-1:-1:-1;;;17703:18:1;;;17696:50;17763:18;;25871:49:0::1;17443:344:1::0;25871:49:0::1;25962:1;25943:12;25956:1;25943:15;;;;;;;;:::i;:::-;;;;;;;:20;;25935:60;;;::::0;-1:-1:-1;;;25935:60:0;;17994:2:1;25935:60:0::1;::::0;::::1;17976:21:1::0;18033:2;18013:18;;;18006:30;18072:29;18052:18;;;18045:57;18119:18;;25935:60:0::1;17792:351:1::0;25935:60:0::1;26012:8;26026:287;;;;;;;;26064:5;26070:1;26064:8;;;;;;;;:::i;:::-;;;;;;;26026:287;;;;26101:8;26110:1;26101:11;;;;;;;;:::i;:::-;;;;;;;26026:287;;;;26141:9;26151:1;26141:12;;;;;;;;:::i;:::-;;;;;;;26026:287;;;;26181:1;26026:287;;;;26216:1;26026:287;;;;26245:12;26258:1;26245:15;;;;;;;;:::i;:::-;;;;;;;26026:287;;;;26285:9;26295:1;26285:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;26026:287;;;26012:302;;::::1;::::0;::::1;::::0;;-1:-1:-1;26012:302:0;;;;;;;;;::::1;;;::::0;;;::::1;::::0;;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26336:115;26346:5;26352:1;26346:8;;;;;;;;:::i;:::-;;;;;;;26356:12;26369:1;26356:15;;;;;;;;:::i;:::-;;;;;;;26373:8;26382:1;26373:11;;;;;;;;:::i;:::-;;;;;;;26386:9;26396:1;26386:12;;;;;;;;:::i;:::-;;;;;;;26418:1;26400:8;:15;;;;:19;;;;:::i;:::-;26421:12;26434:1;26421:15;;;;;;;;:::i;:::-;;;;;;;26438:9;26448:1;26438:12;;;;;;;;:::i;:::-;;;;;;;26336:115;;;;;;;;;;;;:::i;:::-;;;;;;;;25783:3;;25749:714;;;;25147:1323:::0;;;;;;:::o;21815:603::-;21882:16;21900;21918;21949:15;21967:7;:14;21949:32;;21992:29;22038:7;-1:-1:-1;;;;;22024:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22024:22:0;;21992:54;;22057:33;22107:7;-1:-1:-1;;;;;22093:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22093:22:0;;22057:58;;22126:31;22174:7;-1:-1:-1;;;;;22160:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22160:22:0;-1:-1:-1;22126:56:0;-1:-1:-1;22200:6:0;22195:148;22216:7;:14;22212:1;:18;22195:148;;;22312:19;22320:7;22328:1;22320:10;;;;;;;;:::i;:::-;;;;;;;22312:7;:19::i;:::-;22253:12;22266:1;22253:15;;;;;;;;:::i;:::-;;;;;;22270:16;22287:1;22270:19;;;;;;;;:::i;:::-;;;;;;22291:14;22306:1;22291:17;;;;;;;;:::i;:::-;;;;;;;;;;22252:79;;;;;;;;22232:3;;22195:148;;;-1:-1:-1;22363:12:0;;22377:16;;-1:-1:-1;22363:12:0;;-1:-1:-1;21815:603:0;-1:-1:-1;;;21815:603:0:o;35026:1189::-;35174:9;:16;35156:7;:14;:34;35148:62;;;;-1:-1:-1;;;35148:62:0;;;;;;;:::i;:::-;35223:13;;35247:590;35268:7;:14;35264:1;:18;35247:590;;;35312:8;35321:7;35329:1;35321:10;;;;;;;;:::i;:::-;;;;;;;35312:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;35348:1;35312:37;35304:73;;;;-1:-1:-1;;;35304:73:0;;21740:2:1;35304:73:0;;;21722:21:1;21779:2;21759:18;;;21752:30;21818:25;21798:18;;;21791:53;21861:18;;35304:73:0;21538:347:1;35304:73:0;35416:4;35400:9;35410:1;35400:12;;;;;;;;:::i;:::-;;;;;;;:20;;35392:59;;;;-1:-1:-1;;;35392:59:0;;22092:2:1;35392:59:0;;;22074:21:1;22131:2;22111:18;;;22104:30;22170:28;22150:18;;;22143:56;22216:18;;35392:59:0;21890:350:1;35392:59:0;-1:-1:-1;;;;;35472:19:0;;;;;;:12;:19;;;;;35492:10;;35506:15;;35472:19;35492:7;;35500:1;;35492:10;;;;;;:::i;:::-;;;;;;;35472:31;;;;;;;;;;;;:49;35468:281;;35576:33;35596:9;35606:1;35596:12;;;;;;;;:::i;:::-;;;;;;;35576:15;:19;;:33;;;;:::i;:::-;-1:-1:-1;;;;;35542:19:0;;;;;;:12;:19;;;;;35562:10;;35542:19;;;35562:7;;35570:1;;35562:10;;;;;;:::i;:::-;;;;;;;35542:31;;;;;;;;;;;:67;;;;35468:281;;;35684:49;35720:9;35730:1;35720:12;;;;;;;;:::i;:::-;;;;;;;35684;:19;35697:5;-1:-1:-1;;;;;35684:19:0;-1:-1:-1;;;;;35684:19:0;;;;;;;;;;;;:31;35704:7;35712:1;35704:10;;;;;;;;:::i;:::-;;;;;;;35684:31;;;;;;;;;;;;:35;;:49;;;;:::i;:::-;-1:-1:-1;;;;;35650:19:0;;;;;;:12;:19;;;;;35670:10;;35650:19;;;35670:7;;35678:1;;35670:10;;;;;;:::i;:::-;;;;;;;35650:31;;;;;;;;;;;:83;;;;35468:281;35821:4;35806:9;35816:1;35806:12;;;;;;;;:::i;:::-;;;;;;;35774:8;35783:7;35791:1;35783:10;;;;;;;;:::i;:::-;;;;;;;35774:20;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;:44;;;;:::i;:::-;:51;;;;:::i;:::-;35765:60;;;;:::i;:::-;;-1:-1:-1;35284:3:0;;35247:590;;;;35915:5;35902:9;:18;;35894:73;;;;-1:-1:-1;;;35894:73:0;;22750:2:1;35894:73:0;;;22732:21:1;22789:2;22769:18;;;22762:30;22828:34;22808:18;;;22801:62;-1:-1:-1;;;22879:18:1;;;22872:40;22929:19;;35894:73:0;22548:406:1;35894:73:0;36013:26;36055:15;;;;;;;;;-1:-1:-1;;;;;36055:15:0;-1:-1:-1;;;;;36042:43:0;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36013:74;-1:-1:-1;;;;;;36098:31:0;;;36136:12;36146:2;36136:9;:12;:::i;:::-;36098:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36167:40;36192:2;36182:9;:12;;;;:::i;:::-;36167:40;;;23397:25:1;;;36196:10:0;23453:2:1;23438:18;;23431:60;23370:18;36167:40:0;23223:274:1;26669:2901:0;17755:13;:11;:13::i;:::-;26796:7:::1;:14;26779:6;:13;:31;26771:87;;;::::0;-1:-1:-1;;;26771:87:0;;23704:2:1;26771:87:0::1;::::0;::::1;23686:21:1::0;23743:2;23723:18;;;23716:30;23782:34;23762:18;;;23755:62;-1:-1:-1;;;23833:18:1;;;23826:41;23884:19;;26771:87:0::1;23502:407:1::0;26771:87:0::1;26902:6;26897:2666;26918:6;:13;26914:1;:17;26897:2666;;;27003:19;27043:8;27052:7;27060:1;27052:10;;;;;;;;:::i;:::-;;;;;;;27043:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;27025:15;:51;;;;:::i;:::-;27003:73;;27179:30;:42;27210:7;27218:1;27210:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;27179:42;;;;::::1;::::0;;;;;;;;-1:-1:-1;27179:42:0;;;:55;;;;;;;;27235:10:::1;27179:67:::0;;;;;;;:77:::1;;::::0;:82;27175:197:::1;;27289:30;:42;27320:7;27328:1;27320:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;27289:42;;;;::::1;::::0;;;;;;;;-1:-1:-1;27289:42:0;;;:55;;;;;;;;27345:10:::1;27289:67:::0;;;;;;;27282:74;;;::::1;;::::0;27175:197:::1;27503:104;;;;;;;;27541:6;27548:1;27541:9;;;;;;;;:::i;:::-;;;;;;;27503:104;;;;27576:15;27503:104;;::::0;27433:30:::1;:42;27464:7;27472:1;27464:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;27433:42;;;;::::1;::::0;;;;;;;;-1:-1:-1;27433:42:0;;;:55;;;;;;;;27489:10:::1;27433:67:::0;;;;;:174;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;27640:10;;27629:75:::1;::::0;27640:7;;27648:1;;27640:10;::::1;;;;;:::i;:::-;;;;;;;27652:11;27665:6;27672:1;27665:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;27629:75:::1;::::0;;24173:25:1;;;24214:18;;;24207:34;;;;24257:18;;24250:34;27676:15:0::1;24315:2:1::0;24300:18;;24293:34;27693:10:0::1;24358:3:1::0;24343:19;;24336:61;24160:3;24145:19;27629:75:0::1;;;;;;;27841:7;:14:::0;27764:22:::1;::::0;;;-1:-1:-1;;;;;27827:29:0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;27827:29:0::1;-1:-1:-1::0;27801:55:0;-1:-1:-1;27871:9:0::1;::::0;27897:333:::1;27918:7;:14:::0;27914:18;::::1;27897:333;;;27962:30;:42;27993:7;28001:1;27993:10;;;;;;;;:::i;:::-;;;;;;;27962:42;;;;;;;;;;;:55;28005:11;27962:55;;;;;;;;;;;:67;28018:7;28026:1;28018:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;28018:10:0::1;27962:67:::0;;;::::1;::::0;;;;;;;;28018:10;27962:77:::1;::::0;:82;27958:257:::1;;28069:16:::0;::::1;::::0;::::1;:::i;:::-;;;;28122:30;:42;28153:7;28161:1;28153:10;;;;;;;;:::i;:::-;;;;;;;28122:42;;;;;;;;;;;:55;28165:11;28122:55;;;;;;;;;;;:67;28178:7;28186:1;28178:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;28178:10:0::1;28122:67:::0;;;::::1;::::0;;;;;;;;:73;28108:6;28115:3;::::1;::::0;::::1;:::i;:::-;;;28108:11;;;;;;;;:::i;:::-;;;;;;:87;;;::::0;::::1;27958:257;27934:3;;27897:333;;;;28348:1;28340:6;28333:17;28453:15;;28435:14;:33;28431:1121;;28491:20;28514:12;28519:6;28514:4;:12::i;:::-;28491:35;;28545:16;28655:1;28639:6;:13;:17;;;;:::i;:::-;28660:1;28639:22:::0;28635:376:::1;;28686:10;28721:1;28700:6;:13;28716:1;28700:17;;;;:::i;:::-;28699:23;;;;:::i;:::-;28686:36:::0;-1:-1:-1;28759:6:0;28766:7:::1;28772:1;28686:36:::0;28766:7:::1;:::i;:::-;28759:15;;;;;;;;:::i;:::-;;;;;;;28745:29;;28663:196;28635:376;;;28888:10;28919:1;28902:6;:13;28901:19;;;;:::i;:::-;28888:32;;28990:1;28975:6;28982:5;28975:13;;;;;;;;:::i;:::-;;;;;;;28959:6;28972:1;28966:5;:7;;;;:::i;:::-;28959:15;;;;;;;;:::i;:::-;;;;;;;:29;;;;:::i;:::-;28958:33;;;;:::i;:::-;28943:48;;28865:146;28635:376;29181:8;29190:7;29198:1;29190:10;;;;;;;;:::i;:::-;;;;;;;29181:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;29140:8;29149:7;29157:1;29149:10;;;;;;;;:::i;:::-;;;;;;;29140:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:74;;;;:::i;:::-;29104:8;29113:7;29121:1;29113:10;;;;;;;;:::i;:::-;;;;;;;29104:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;29086:15;:51;;;;:::i;:::-;:128;29082:315;;;29345:8;29354:7;29362:1;29354:10;;;;;;;;:::i;:::-;;;;;;;29345:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;29239:15;:27;29255:7;29263:1;29255:10;;;;;;;;:::i;:::-;;;;;;;29239:27;;;;;;;;;;;:103;29308:8;29317:7;29325:1;29317:10;;;;;;;;:::i;:::-;;;;;;;29308:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;29267:8;29276:7;29284:1;29276:10;;;;;;;;:::i;:::-;;;;;;;29267:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:74;;;;:::i;:::-;29239:103:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29239:103:0;:138;29082:315:::1;29456:15;29415:8;29424:7;29432:1;29424:10;;;;;;;;:::i;:::-;;;;;;;29415:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;:56;;;;29525:11;29490:8;29499:7;29507:1;29499:10;;;;;;;;:::i;:::-;;;;;;;29490:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;:46;;;;28470:1082;;28431:1121;-1:-1:-1::0;;26933:3:0::1;::::0;;::::1;::::0;-1:-1:-1;26897:2666:0::1;::::0;-1:-1:-1;26897:2666:0::1;;;26669:2901:::0;;:::o;20473:1163::-;20628:14;;20579:16;;20610:15;20628:14;-1:-1:-1;;;;;20685:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20685:22:0;;20653:54;;20744:10;:17;20726:7;:14;:35;20718:79;;;;-1:-1:-1;;;20718:79:0;;24867:2:1;20718:79:0;;;24849:21:1;24906:2;24886:18;;;24879:30;24945:33;24925:18;;;24918:61;24996:18;;20718:79:0;24665:355:1;20718:79:0;20815:6;20810:785;20831:7;:14;20827:1;:18;20810:785;;;20873:21;;:25;20869:553;;20931:10;20923:19;;;;:7;:19;;;;;;20946:15;-1:-1:-1;20919:271:0;;20990:8;20999:7;21007:1;20999:10;;;;;;;;:::i;:::-;;;;;;;20990:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;21026:1;20990:37;:95;;;;-1:-1:-1;21044:10:0;21031:24;;;;:12;:24;;;;;21056:10;;21070:15;;21031:24;21056:7;;21064:1;;21056:10;;;;;;:::i;:::-;;;;;;;21031:36;;;;;;;;;;;;:54;20990:95;20986:185;;;21114:33;;-1:-1:-1;;;21114:33:0;;;;;;;:::i;20986:185::-;20869:553;;;21234:8;21243:7;21251:1;21243:10;;;;;;;;:::i;:::-;;;;;;;21234:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;21270:1;21234:37;:95;;;;-1:-1:-1;21288:10:0;21275:24;;;;:12;:24;;;;;21300:10;;21314:15;;21275:24;21300:7;;21308:1;;21300:10;;;;;;:::i;:::-;;;;;;;21275:36;;;;;;;;;;;;:54;21234:95;21230:177;;;21354:33;;-1:-1:-1;;;21354:33:0;;;;;;;:::i;21230:177::-;21438:19;21476:8;21485:7;21493:1;21485:10;;;;;;;;:::i;:::-;;;;;;;21476:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;21460:10;21471:1;21460:13;;;;;;;;:::i;:::-;;;;;;;:49;;;;:::i;:::-;21438:71;;21543:15;:27;21559:7;21567:1;21559:10;;;;;;;;:::i;:::-;;;;;;;21543:27;;;;;;;;;;;:40;21571:11;21543:40;;;;;;;;;;;;21524:12;21537:1;21524:15;;;;;;;;:::i;:::-;;;;;;;;;;:59;-1:-1:-1;20847:3:0;;20810:785;;;-1:-1:-1;21615:12:0;-1:-1:-1;;20473:1163:0;;;;;:::o;36953:530::-;37103:6;:13;37085:7;:14;:31;37077:59;;;;-1:-1:-1;;;37077:59:0;;;;;;;:::i;:::-;37147:13;;37171:225;37195:7;:14;37191:1;:18;37171:225;;;37257:38;37285:6;37292:1;37285:9;;;;;;;;:::i;:::-;;;;;;;37257:11;:23;37269:7;37277:1;37269:10;;;;;;;;:::i;37257:38::-;37231:11;:23;37243:7;37251:1;37243:10;;;;;;;;:::i;:::-;;;;;;;37231:23;;;;;;;;;;;:64;;;;37319:6;37326:1;37319:9;;;;;;;;:::i;:::-;;;;;;;37310:18;;;;;:::i;:::-;;;37348:36;37362:7;37370:1;37362:10;;;;;;;;:::i;:::-;;;;;;;37374:6;37381:1;37374:9;;;;;;;;:::i;:::-;;;;;;;37348:36;;;;;;25551:25:1;;;25607:2;25592:18;;25585:34;25539:2;25524:18;;25377:248;37348:36:0;;;;;;;;37211:3;;37171:225;;;;37427:5;37414:9;:18;;37406:69;;;;-1:-1:-1;;;37406:69:0;;25832:2:1;37406:69:0;;;25814:21:1;25871:2;25851:18;;;25844:30;25910:34;25890:18;;;25883:62;-1:-1:-1;;;25961:18:1;;;25954:36;26007:19;;37406:69:0;25630:402:1;36223:722:0;36309:21;;36334:1;36309:26;36301:67;;;;-1:-1:-1;;;36301:67:0;;26239:2:1;36301:67:0;;;26221:21:1;26278:2;26258:18;;;26251:30;26317;26297:18;;;26290:58;26365:18;;36301:67:0;26037:352:1;36301:67:0;36399:4;36387:8;:16;;36379:55;;;;-1:-1:-1;;;36379:55:0;;22092:2:1;36379:55:0;;;22074:21:1;22131:2;22111:18;;;22104:30;22170:28;22150:18;;;22143:56;22216:18;;36379:55:0;21890:350:1;36379:55:0;36501:5;36490:8;36466:21;;:32;;;;:::i;:::-;:40;;;;:::i;:::-;36453:9;:53;;36445:84;;;;-1:-1:-1;;;36445:84:0;;26596:2:1;36445:84:0;;;26578:21:1;26635:2;26615:18;;;26608:30;-1:-1:-1;;;26654:18:1;;;26647:48;26712:18;;36445:84:0;26394:342:1;36445:84:0;-1:-1:-1;;;;;36546:14:0;;;;;;:7;:14;;;;;;36563:15;-1:-1:-1;36542:189:0;;36612:29;:15;36632:8;36612:19;:29::i;:::-;-1:-1:-1;;;;;36595:14:0;;;;;;:7;:14;;;;;:46;36542:189;;;-1:-1:-1;;;;;36691:14:0;;;;;;:7;:14;;;;;;:28;;36710:8;36691:18;:28::i;:::-;-1:-1:-1;;;;;36674:14:0;;;;;;:7;:14;;;;;:45;36542:189;36743:26;36785:15;;;;;;;;;-1:-1:-1;;;;;36785:15:0;-1:-1:-1;;;;;36772:43:0;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36743:74;-1:-1:-1;;;;;;36828:31:0;;;36866:12;36876:2;36866:9;:12;:::i;:::-;36828:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36897:40;36922:2;36912:9;:12;;;;:::i;:::-;36897:40;;;23397:25:1;;;36926:10:0;23453:2:1;23438:18;;23431:60;23370:18;36897:40:0;;;;;;;36290:655;36223:722;;:::o;29578:1703::-;17755:13;:11;:13::i;:::-;29659:12:::1;29672:10;29659:24;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;29702:1;29659:44:::0;29651:76:::1;;;::::0;-1:-1:-1;;;29651:76:0;;26943:2:1;29651:76:0::1;::::0;::::1;26925:21:1::0;26982:2;26962:18;;;26955:30;-1:-1:-1;;;27001:18:1;;;26994:49;27060:18;;29651:76:0::1;26741:343:1::0;29651:76:0::1;29740:29;::::0;;;:17:::1;:29;::::0;;;;;;;29770:10:::1;29740:41:::0;;;;;;;;;;:48;;-1:-1:-1;;29740:48:0::1;29784:4;29740:48;::::0;;29804:38;;23397:25:1;;;23438:18;;;23431:60;;;;29804:38:0::1;::::0;23370:18:1;29804:38:0::1;;;;;;;29855:25;::::0;29893:168:::1;29913:7;:14:::0;29909:18;::::1;29893:168;;;29953:29;::::0;;;:17:::1;:29;::::0;;;;29983:7:::1;:10:::0;;29953:29;;;29991:1;;29983:10;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;29983:10:0::1;29953:41:::0;;;::::1;::::0;;;;;;;;;::::1;;29949:101;;;30015:19:::0;::::1;::::0;::::1;:::i;:::-;;;;29949:101;29929:3;;29893:168;;;;30127:15;;30106:17;:36;30102:1172;;30163:12;30176:10;30163:24;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;30204:1;30163:42:::0;30159:1014:::1;;30226:51;30242:12;30255:10;30242:24;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;30226:15;:51::i;:::-;30159:1014;;;30303:12;30316:10;30303:24;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;30344:1;30303:42:::0;30299:874:::1;;30366:51;30382:12;30395:10;30382:24;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;30366:15;:51::i;30299:874::-;30443:12;30456:10;30443:24;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;30484:1;30443:42:::0;30439:734:::1;;30506:49;30517:12;30530:10;30517:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:37:::1;:24;::::0;;::::1;;:37;::::0;-1:-1:-1;;;;;30517:37:0::1;30506:10;:49::i;30439:734::-;30581:12;30594:10;30581:24;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;30622:1;30581:42:::0;30577:596:::1;;30644:51;30657:12;30670:10;30657:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:37:::1;:24;::::0;;::::1;;:37;::::0;-1:-1:-1;;;;;30657:37:0::1;30644:12;:51::i;30577:596::-;30721:12;30734:10;30721:24;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;30762:1;30721:42:::0;30717:456:::1;;30784:58;30804:12;30817:10;30804:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:37:::1;:24;::::0;;::::1;;:37;::::0;-1:-1:-1;;;;;30804:37:0::1;30784:19;:58::i;30717:456::-;30868:12;30881:10;30868:24;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;30909:1;30868:42:::0;30864:309:::1;;30931:94;30949:12;30962:10;30949:24;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;30985:12;30998:10;30985:24;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;30931:17;:94::i;30864:309::-;31066:91;31081:12;31094:10;31081:24;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;31117:12;31130:10;31117:24;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;31066:14;:91::i;:::-;31261:1;31219:12;31232:10;31219:24;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;:43;;;;30102:1172;29640:1641;29578:1703:::0;:::o;31289:1451::-;17755:13;:11;:13::i;:::-;31452:12:::1;:19:::0;31517:17;;;:38:::1;;;31538:12;31554:1;31538:17;31517:38;:59;;;;31559:12;31575:1;31559:17;31517:59;31513:995;;;31611:245;::::0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;31611:245:0::1;::::0;::::1;::::0;;;31725:10:::1;31611:245:::0;;;;;;;;;;;;;;;;;;31839:1:::1;31611:245:::0;;;;;;31593:12:::1;:264:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;;;;31593:264:0;;::::1;-1:-1:-1::0;;;;;31593:264:0;;::::1;;::::0;;;;;;;;;;;;::::1;::::0;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;31513:995:::1;;;31879:12;31895:1;31879:17;:38;;;;31900:12;31916:1;31900:17;31879:38;31875:633;;;31952:251;::::0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;31952:251:0::1;::::0;::::1;::::0;;;32066:10:::1;31952:251:::0;;;;;;;;;;;;;;;;;;32186:1:::1;31952:251:::0;;;;;;31934:12:::1;:270:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;;;;31934:270:0;;::::1;-1:-1:-1::0;;;;;31934:270:0;;::::1;;::::0;;;;;;;;;;;;::::1;::::0;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;31875:633:::1;;;32255:240;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;32255:240:0;;;-1:-1:-1;;;;;32255:240:0;;::::1;;::::0;::::1;::::0;;;32363:10:::1;32255:240:::0;;;;;;;;;;;;;;;;;;32478:1:::1;32255:240:::0;;;;;;32237:12:::1;:259:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;;;;32237:259:0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;31875:633:::1;32520:35;::::0;;;:17:::1;:35;::::0;;;;;;;32556:10:::1;32520:47:::0;;;;;;;;;;:54;;-1:-1:-1;;32520:54:0::1;32570:4;32520:54;::::0;;32592:80;;27348:25:1;;;27389:18;;;27382:34;;;-1:-1:-1;;;;;27452:32:1;;27432:18;;;27425:60;27516:2;27501:18;;27494:34;;;27559:3;27544:19;;27537:61;;;;32592:80:0::1;::::0;27335:3:1;27320:19;32592:80:0::1;;;;;;;32688:44;::::0;;23397:25:1;;;32721:10:0::1;23453:2:1::0;23438:18;;23431:60;32688:44:0::1;::::0;23370:18:1;32688:44:0::1;23223:274:1::0;16570:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16570:36:0;;;;;;;;;;:::o;23642:1029::-;23711:15;23728:16;23746;23764;23782;23813:15;23831:7;:14;23813:32;;23856:27;23899:7;-1:-1:-1;;;;;23886:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23856:51;;23918:31;23966:7;-1:-1:-1;;;;;23952:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23952:22:0;;23918:56;;23985:31;24033:7;-1:-1:-1;;;;;24019:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24019:22:0;;23985:56;;24052:34;24103:7;-1:-1:-1;;;;;24089:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24089:22:0;;24052:59;;24122:27;24166:7;-1:-1:-1;;;;;24152:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24152:22:0;-1:-1:-1;24122:52:0;-1:-1:-1;24192:6:0;24187:381;24208:7;:14;24204:1;:18;24187:381;;;24261:8;24270:7;24278:1;24270:10;;;;;;;;:::i;:::-;;;;;;;24261:20;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;24244:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;24256:1;24244:14;;;;;;;;:::i;:::-;;;;;;:46;;;;24325:8;24334:7;24342:1;24334:10;;;;;;;;:::i;:::-;;;;;;;24325:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;24305:14;24320:1;24305:17;;;;;;;;:::i;:::-;;;;;;:53;;;;;24393:8;24402:7;24410:1;24402:10;;;;;;;;:::i;:::-;;;;;;;24393:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;24373:14;24388:1;24373:17;;;;;;;;:::i;:::-;;;;;;:53;;;;;24464:8;24473:7;24481:1;24473:10;;;;;;;;:::i;:::-;;;;;;;24464:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;24441:17;24459:1;24441:20;;;;;;;;:::i;:::-;;;;;;:55;;;;;24527:8;24536:7;24544:1;24536:10;;;;;;;;:::i;:::-;;;;;;;24527:20;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;24511:10;24522:1;24511:13;;;;;;;;:::i;:::-;;;;;;;;;;:45;24224:3;;24187:381;;;-1:-1:-1;24588:11:0;;24601:14;;-1:-1:-1;24617:14:0;;-1:-1:-1;24601:14:0;-1:-1:-1;24588:11:0;;-1:-1:-1;23642:1029:0;-1:-1:-1;;;23642:1029:0:o;22592:938::-;22646:7;22655;22664;22686:19;22716:23;22750:22;22813:1;22789:21;;:25;22785:497;;;22843:10;22835:19;;;;:7;:19;;;;;;22858:15;-1:-1:-1;22831:247:0;;22898:8;22907:6;22898:16;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;22930:1;22898:33;:87;;;;-1:-1:-1;22948:10:0;22935:24;;;;:12;:24;;;;;;;;:32;;;;;;;;;22970:15;-1:-1:-1;22898:87:0;22894:169;;;23010:33;;-1:-1:-1;;;23010:33:0;;;;;;;:::i;22894:169::-;22785:497;;;23114:8;23123:6;23114:16;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;23146:1;23114:33;:87;;;;-1:-1:-1;23164:10:0;23151:24;;;;:12;:24;;;;;;;;:32;;;;;;;;;23186:15;-1:-1:-1;23114:87:0;23110:161;;;23222:33;;-1:-1:-1;;;23222:33:0;;;;;;;:::i;23110:161::-;23308:8;23317:6;23308:16;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;23294:42;;23365:8;23374:6;23365:16;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;23347:52;;23427:8;23436:6;23427:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:29;;;23477:11;;23490:15;;-1:-1:-1;23427:29:0;;-1:-1:-1;22592:938:0;-1:-1:-1;;;22592:938:0:o;17821:125::-;17885:10;17876:20;;;;:8;:20;;;;;;;;17868:70;;;;-1:-1:-1;;;17868:70:0;;27811:2:1;17868:70:0;;;27793:21:1;27850:2;27830:18;;;27823:30;27889:34;27869:18;;;27862:62;-1:-1:-1;;;27940:18:1;;;27933:35;27985:19;;17868:70:0;27609:401:1;9322:98:0;9380:7;9407:5;9411:1;9407;:5;:::i;:::-;9400:12;9322:98;-1:-1:-1;;;9322:98:0:o;20229:157::-;20285:13;20311:45;20321:4;20331:1;20353;20339:4;:11;:15;;;;:::i;:::-;20311:9;:45::i;:::-;-1:-1:-1;20374:4:0;20229:157::o;32748:170::-;32814:21;:36;;;32868:42;;2850:25:1;;;32868:42:0;;2838:2:1;2823:18;32868:42:0;;;;;;;;32748:170;:::o;33454:332::-;33533:17;33554:1;33533:22;33525:54;;;;-1:-1:-1;;;33525:54:0;;14499:2:1;33525:54:0;;;14481:21:1;14538:2;14518:18;;;14511:30;-1:-1:-1;;;14557:18:1;;;14550:49;14616:18;;33525:54:0;14297:343:1;33525:54:0;33619:12;;33598:17;:33;;33590:93;;;;-1:-1:-1;;;33590:93:0;;28217:2:1;33590:93:0;;;28199:21:1;28256:2;28236:18;;;28229:30;28295:34;28275:18;;;28268:62;-1:-1:-1;;;28346:18:1;;;28339:45;28401:19;;33590:93:0;28015:411:1;33590:93:0;33696:15;:35;;;33747:31;;2850:25:1;;;33747:31:0;;2838:2:1;2823:18;33747:31:0;2704:177:1;33794:426:0;33903:6;33898:166;33917:7;:14;33913:18;;33898:166;;;33971:14;-1:-1:-1;;;;;33957:28:0;:7;33965:1;33957:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33957:10:0;:28;33953:100;;34006:31;;-1:-1:-1;;;34006:31:0;;28633:2:1;34006:31:0;;;28615:21:1;28672:2;28652:18;;;28645:30;-1:-1:-1;;;28691:18:1;;;28684:51;28752:18;;34006:31:0;28431:345:1;33953:100:0;33933:3;;33898:166;;;-1:-1:-1;34076:7:0;:28;;;;;;;-1:-1:-1;34076:28:0;;;;;;;-1:-1:-1;;;;;;34076:28:0;-1:-1:-1;;;;;34076:28:0;;;;;34115:12;:14;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;34140:24:0;;;;;;:8;:24;;;;;;;;;:31;;-1:-1:-1;;34140:31:0;34167:4;34140:31;;;34187:25;;2642:51:1;;;34187:25:0;;2615:18:1;34187:25:0;2496:203:1;34424:508:0;-1:-1:-1;;;;;34492:18:0;;;;;;:8;:18;;;;;;;;34484:67;;;;-1:-1:-1;;;34484:67:0;;28983:2:1;34484:67:0;;;28965:21:1;29022:2;29002:18;;;28995:30;29061:34;29041:18;;;29034:62;-1:-1:-1;;;29112:18:1;;;29105:34;29156:19;;34484:67:0;28781:400:1;34484:67:0;34591:15;;34570:7;:14;:17;;34586:1;;34570:17;:::i;:::-;:36;;34562:76;;;;-1:-1:-1;;;34562:76:0;;29388:2:1;34562:76:0;;;29370:21:1;29427:2;29407:18;;;29400:30;29466:29;29446:18;;;29439:57;29513:18;;34562:76:0;29186:351:1;34562:76:0;34656:6;34651:274;34672:7;:14;34668:18;;34651:274;;;34726:8;-1:-1:-1;;;;;34712:22:0;:7;34720:1;34712:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;34712:10:0;:22;34708:206;;34762:7;34770:1;34762:10;;;;;;;;:::i;:::-;;;;;;;;;34755:17;;-1:-1:-1;;;;;;34755:17:0;;;34791:12;:15;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;34825:18:0;;34846:5;34825:18;;;:8;:18;;;;;;;;;:26;;-1:-1:-1;;34825:26:0;;;34875:23;;2642:51:1;;;34875:23:0;;2615:18:1;34875:23:0;;;;;;;34708:206;34688:3;;34651:274;;34228:188;34307:13;:46;;-1:-1:-1;;;;;;34307:46:0;-1:-1:-1;;;;;34307:46:0;;;;;;;;34369:39;;2642:51:1;;;34369:39:0;;2630:2:1;2615:18;34369:39:0;2496:203:1;32926:290:0;33049:1;33026:19;:24;;33018:70;;;;-1:-1:-1;;;33018:70:0;;29885:2:1;33018:70:0;;;29867:21:1;29924:2;29904:18;;;29897:30;29963:34;29943:18;;;29936:62;-1:-1:-1;;;30014:18:1;;;30007:31;30055:19;;33018:70:0;29683:397:1;33018:70:0;33130:19;33099:8;33108:6;33099:16;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;:50;;;;33165:43;33180:19;33201:6;33165:43;;;;;;25551:25:1;;;25607:2;25592:18;;25585:34;25539:2;25524:18;;25377:248;33165:43:0;;;;;;;;32926:290;;:::o;33224:222::-;33320:1;33309:8;:12;33301:45;;;;-1:-1:-1;;;33301:45:0;;30287:2:1;33301:45:0;;;30269:21:1;30326:2;30306:18;;;30299:30;-1:-1:-1;;;30345:18:1;;;30338:50;30405:18;;33301:45:0;30085:344:1;33301:45:0;33385:8;33357;33366:6;33357:16;;;;;;;;:::i;:::-;;;;;;;;;;;:25;;:36;;;;33409:29;33421:8;33431:6;33409:29;;;;;;25551:25:1;;;25607:2;25592:18;;25585:34;25539:2;25524:18;;25377:248;19421:635:0;19512:4;19535:5;19555:6;;;19551:19;;19563:7;;19421:635;;;:::o;19551:19::-;19580:10;19593:3;19626:1;19610:12;19618:4;19610:5;:12;:::i;:::-;19609:18;;;;:::i;:::-;19602:25;;:4;:25;:::i;:::-;19593:36;;;;;;;;:::i;:::-;;;;;;;19580:49;;19640:285;19652:1;19647;:6;19640:285;;19670:32;19692:5;19677:3;19686:1;19677:12;;;;;;;;:::i;:::-;;;;;;;:20;19670:32;;;19699:3;;;;:::i;:::-;;;;19670:32;;;19732:3;19741:1;19732:12;;;;;;;;:::i;:::-;;;;;;;19724:5;:20;19717:32;;;19746:3;;;;:::i;:::-;;;;19717:32;;;19773:1;19768;:6;19764:150;;19827:3;19836:1;19827:12;;;;;;;;:::i;:::-;;;;;;;19841:3;19850:1;19841:12;;;;;;;;:::i;:::-;;;;;;;19796:3;19805:1;19796:12;;;;;;;;:::i;:::-;;;;;;19810:3;19819:1;19810:12;;;;;;;;:::i;:::-;;;;;;;;;;19795:59;;;;;19873:3;;;;:::i;:::-;;;;19895;;;;;:::i;:::-;;;;19764:150;19640:285;;;19946:1;19939:4;:8;19935:50;;;19962:23;19972:3;19977:4;19983:1;19962:9;:23::i;:::-;20004:5;20000:1;:9;19996:52;;;20024:24;20034:3;20039:1;20042:5;20024:9;:24::i;:::-;19493:563;;;19421:635;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:127:1;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:275;217:2;211:9;282:2;263:13;;-1:-1:-1;;259:27:1;247:40;;-1:-1:-1;;;;;302:34:1;;338:22;;;299:62;296:88;;;364:18;;:::i;:::-;400:2;393:22;146:275;;-1:-1:-1;146:275:1:o;426:183::-;486:4;-1:-1:-1;;;;;511:6:1;508:30;505:56;;;541:18;;:::i;:::-;-1:-1:-1;586:1:1;582:14;598:4;578:25;;426:183::o;614:131::-;-1:-1:-1;;;;;689:31:1;;679:42;;669:70;;735:1;732;725:12;750:134;818:20;;847:31;818:20;847:31;:::i;:::-;750:134;;;:::o;889:1371::-;1017:6;1025;1033;1041;1049;1102:3;1090:9;1081:7;1077:23;1073:33;1070:53;;;1119:1;1116;1109:12;1070:53;1159:9;1146:23;-1:-1:-1;;;;;1184:6:1;1181:30;1178:50;;;1224:1;1221;1214:12;1178:50;1247:22;;1300:4;1292:13;;1288:27;-1:-1:-1;1278:55:1;;1329:1;1326;1319:12;1278:55;1369:2;1356:16;1392:64;1408:47;1448:6;1408:47;:::i;:::-;1392:64;:::i;:::-;1478:3;1502:6;1497:3;1490:19;1534:4;1529:3;1525:14;1518:21;;1591:4;1581:6;1578:1;1574:14;1570:2;1566:23;1562:34;1548:48;;1619:7;1611:6;1608:19;1605:39;;;1640:1;1637;1630:12;1605:39;1672:4;1668:2;1664:13;1653:24;;1686:221;1702:6;1697:3;1694:15;1686:221;;;1784:3;1771:17;1801:31;1826:5;1801:31;:::i;:::-;1845:18;;1892:4;1719:14;;;;1883;;;;1686:221;;;1926:5;-1:-1:-1;;;;2004:4:1;1989:20;;1976:34;;-1:-1:-1;2055:38:1;2089:2;2074:18;;2055:38;:::i;:::-;2045:48;-1:-1:-1;2166:2:1;2151:18;;2138:32;;-1:-1:-1;2215:39:1;2249:3;2234:19;;2215:39;:::i;:::-;2205:49;;889:1371;;;;;;;;:::o;2265:226::-;2324:6;2377:2;2365:9;2356:7;2352:23;2348:32;2345:52;;;2393:1;2390;2383:12;2345:52;-1:-1:-1;2438:23:1;;2265:226;-1:-1:-1;2265:226:1:o;2886:1344::-;2939:5;2992:3;2985:4;2977:6;2973:17;2969:27;2959:55;;3010:1;3007;3000:12;2959:55;3050:6;3037:20;3077:64;3093:47;3133:6;3093:47;:::i;3077:64::-;3165:3;3189:6;3184:3;3177:19;3221:4;3216:3;3212:14;3205:21;;3282:4;3272:6;3269:1;3265:14;3257:6;3253:27;3249:38;3235:52;;3310:3;3302:6;3299:15;3296:35;;;3327:1;3324;3317:12;3296:35;3363:4;3355:6;3351:17;3377:822;3393:6;3388:3;3385:15;3377:822;;;3481:3;3468:17;-1:-1:-1;;;;;3504:11:1;3501:35;3498:55;;;3549:1;3546;3539:12;3498:55;3576:24;;3635:2;3627:11;;3623:21;-1:-1:-1;3613:49:1;;3658:1;3655;3648:12;3613:49;3712:4;3708:2;3704:13;3691:27;-1:-1:-1;;;;;3737:8:1;3734:32;3731:58;;;3769:18;;:::i;:::-;3817:61;3866:2;3841:19;;-1:-1:-1;;3837:33:1;3872:4;3833:44;3817:61;:::i;:::-;3891:25;;;3935:39;3943:17;;;3935:39;3932:48;-1:-1:-1;3929:68:1;;;3993:1;3990;3983:12;3929:68;4056:8;4051:2;4047;4043:11;4036:4;4027:7;4023:18;4010:55;4120:1;4113:4;4102:8;4093:7;4089:22;4085:33;4078:44;4147:7;4142:3;4135:20;;;;4184:4;4179:3;4175:14;4168:21;;3419:4;3414:3;3410:14;3403:21;;3377:822;;;-1:-1:-1;4217:7:1;2886:1344;-1:-1:-1;;;;;2886:1344:1:o;4235:723::-;4289:5;4342:3;4335:4;4327:6;4323:17;4319:27;4309:55;;4360:1;4357;4350:12;4309:55;4400:6;4387:20;4427:64;4443:47;4483:6;4443:47;:::i;4427:64::-;4515:3;4539:6;4534:3;4527:19;4571:4;4566:3;4562:14;4555:21;;4632:4;4622:6;4619:1;4615:14;4607:6;4603:27;4599:38;4585:52;;4660:3;4652:6;4649:15;4646:35;;;4677:1;4674;4667:12;4646:35;4713:4;4705:6;4701:17;4727:200;4743:6;4738:3;4735:15;4727:200;;;4835:17;;4865:18;;4912:4;4903:14;;;;4760;4727:200;;4963:1579;5237:6;5245;5253;5261;5269;5277;5330:3;5318:9;5309:7;5305:23;5301:33;5298:53;;;5347:1;5344;5337:12;5298:53;5387:9;5374:23;-1:-1:-1;;;;;5412:6:1;5409:30;5406:50;;;5452:1;5449;5442:12;5406:50;5475:60;5527:7;5518:6;5507:9;5503:22;5475:60;:::i;:::-;5465:70;;;5588:2;5577:9;5573:18;5560:32;-1:-1:-1;;;;;5607:8:1;5604:32;5601:52;;;5649:1;5646;5639:12;5601:52;5672:62;5726:7;5715:8;5704:9;5700:24;5672:62;:::i;:::-;5662:72;;;5787:2;5776:9;5772:18;5759:32;-1:-1:-1;;;;;5806:8:1;5803:32;5800:52;;;5848:1;5845;5838:12;5800:52;5871:63;5926:7;5915:8;5904:9;5900:24;5871:63;:::i;:::-;5861:73;;;5987:2;5976:9;5972:18;5959:32;-1:-1:-1;;;;;6006:8:1;6003:32;6000:52;;;6048:1;6045;6038:12;6000:52;6071:63;6126:7;6115:8;6104:9;6100:24;6071:63;:::i;:::-;6061:73;;;6187:3;6176:9;6172:19;6159:33;-1:-1:-1;;;;;6207:8:1;6204:32;6201:52;;;6249:1;6246;6239:12;6201:52;6272:63;6327:7;6316:8;6305:9;6301:24;6272:63;:::i;:::-;6262:73;;;6388:3;6377:9;6373:19;6360:33;-1:-1:-1;;;;;6408:8:1;6405:32;6402:52;;;6450:1;6447;6440:12;6402:52;6473:63;6528:7;6517:8;6506:9;6502:24;6473:63;:::i;:::-;6463:73;;;4963:1579;;;;;;;;:::o;6547:348::-;6631:6;6684:2;6672:9;6663:7;6659:23;6655:32;6652:52;;;6700:1;6697;6690:12;6652:52;6740:9;6727:23;-1:-1:-1;;;;;6765:6:1;6762:30;6759:50;;;6805:1;6802;6795:12;6759:50;6828:61;6881:7;6872:6;6861:9;6857:22;6828:61;:::i;:::-;6818:71;6547:348;-1:-1:-1;;;;6547:348:1:o;6900:420::-;6953:3;6991:5;6985:12;7018:6;7013:3;7006:19;7050:4;7045:3;7041:14;7034:21;;7089:4;7082:5;7078:16;7112:1;7122:173;7136:6;7133:1;7130:13;7122:173;;;7197:13;;7185:26;;7240:4;7231:14;;;;7268:17;;;;7158:1;7151:9;7122:173;;;-1:-1:-1;7311:3:1;;6900:420;-1:-1:-1;;;;6900:420:1:o;7325:669::-;7660:2;7649:9;7642:21;7623:4;7686:56;7738:2;7727:9;7723:18;7715:6;7686:56;:::i;:::-;7790:9;7782:6;7778:22;7773:2;7762:9;7758:18;7751:50;7824:44;7861:6;7853;7824:44;:::i;:::-;7810:58;;7916:9;7908:6;7904:22;7899:2;7888:9;7884:18;7877:50;7944:44;7981:6;7973;7944:44;:::i;:::-;7936:52;7325:669;-1:-1:-1;;;;;;7325:669:1:o;8223:725::-;8350:6;8358;8366;8419:2;8407:9;8398:7;8394:23;8390:32;8387:52;;;8435:1;8432;8425:12;8387:52;8475:9;8462:23;-1:-1:-1;;;;;8500:6:1;8497:30;8494:50;;;8540:1;8537;8530:12;8494:50;8563:61;8616:7;8607:6;8596:9;8592:22;8563:61;:::i;:::-;8553:71;;;8677:2;8666:9;8662:18;8649:32;-1:-1:-1;;;;;8696:8:1;8693:32;8690:52;;;8738:1;8735;8728:12;8690:52;8761:63;8816:7;8805:8;8794:9;8790:24;8761:63;:::i;:::-;8751:73;;;8874:2;8863:9;8859:18;8846:32;8887:31;8912:5;8887:31;:::i;:::-;8937:5;8927:15;;;8223:725;;;;;:::o;8953:590::-;9071:6;9079;9132:2;9120:9;9111:7;9107:23;9103:32;9100:52;;;9148:1;9145;9138:12;9100:52;9188:9;9175:23;-1:-1:-1;;;;;9213:6:1;9210:30;9207:50;;;9253:1;9250;9243:12;9207:50;9276:61;9329:7;9320:6;9309:9;9305:22;9276:61;:::i;:::-;9266:71;;;9390:2;9379:9;9375:18;9362:32;-1:-1:-1;;;;;9409:8:1;9406:32;9403:52;;;9451:1;9448;9441:12;9403:52;9474:63;9529:7;9518:8;9507:9;9503:24;9474:63;:::i;:::-;9464:73;;;8953:590;;;;;:::o;9548:261::-;9727:2;9716:9;9709:21;9690:4;9747:56;9799:2;9788:9;9784:18;9776:6;9747:56;:::i;9814:367::-;9882:6;9890;9943:2;9931:9;9922:7;9918:23;9914:32;9911:52;;;9959:1;9956;9949:12;9911:52;9998:9;9985:23;10017:31;10042:5;10017:31;:::i;:::-;10067:5;10145:2;10130:18;;;;10117:32;;-1:-1:-1;;;9814:367:1:o;10186:608::-;10272:6;10280;10288;10296;10349:3;10337:9;10328:7;10324:23;10320:33;10317:53;;;10366:1;10363;10356:12;10317:53;10411:23;;;-1:-1:-1;10510:2:1;10495:18;;10482:32;10523:33;10482:32;10523:33;:::i;:::-;10186:608;;10575:7;;-1:-1:-1;;;;10655:2:1;10640:18;;10627:32;;10758:2;10743:18;10730:32;;10186:608::o;11391:289::-;11433:3;11471:5;11465:12;11498:6;11493:3;11486:19;11554:6;11547:4;11540:5;11536:16;11529:4;11524:3;11520:14;11514:47;11606:1;11599:4;11590:6;11585:3;11581:16;11577:27;11570:38;11669:4;11662:2;11658:7;11653:2;11645:6;11641:15;11637:29;11632:3;11628:39;11624:50;11617:57;;;11391:289;;;;:::o;11685:1583::-;12159:4;12207:3;12196:9;12192:19;12238:3;12227:9;12220:22;12262:6;12297;12291:13;12328:6;12320;12313:22;12366:3;12355:9;12351:19;12344:26;;12429:3;12419:6;12416:1;12412:14;12401:9;12397:30;12393:40;12379:54;;12468:4;12460:6;12456:17;12491:1;12501:260;12515:6;12512:1;12509:13;12501:260;;;12608:3;12604:8;12592:9;12584:6;12580:22;12576:37;12571:3;12564:50;12637:40;12670:6;12661;12655:13;12637:40;:::i;:::-;12627:50;-1:-1:-1;12712:4:1;12737:14;;;;12700:17;;;;;12537:1;12530:9;12501:260;;;12505:3;;;;12811:9;12803:6;12799:22;12792:4;12781:9;12777:20;12770:52;12845:44;12882:6;12874;12845:44;:::i;:::-;12831:58;;12937:9;12929:6;12925:22;12920:2;12909:9;12905:18;12898:50;12971:44;13008:6;13000;12971:44;:::i;:::-;12957:58;;13063:9;13055:6;13051:22;13046:2;13035:9;13031:18;13024:50;13097:44;13134:6;13126;13097:44;:::i;:::-;13083:58;;13190:9;13182:6;13178:22;13172:3;13161:9;13157:19;13150:51;13218:44;13255:6;13247;13218:44;:::i;:::-;13210:52;11685:1583;-1:-1:-1;;;;;;;;11685:1583:1:o;15054:127::-;15115:10;15110:3;15106:20;15103:1;15096:31;15146:4;15143:1;15136:15;15170:4;15167:1;15160:15;15531:822;15785:2;15797:21;;;15867:13;;15770:18;;;15889:22;;;15737:4;;15981;15969:17;;;15942:3;15927:19;;;15737:4;16014:199;16028:6;16025:1;16022:13;16014:199;;;16093:13;;-1:-1:-1;;;;;16089:39:1;16077:52;;16158:4;16186:17;;;;16149:14;;;;16125:1;16043:9;16014:199;;;-1:-1:-1;;16264:4:1;16249:20;;16242:36;;;;-1:-1:-1;;;;;;;16314:32:1;;;;16309:2;16294:18;;;16287:60;16230:3;15531:822;-1:-1:-1;15531:822:1:o;16358:127::-;16419:10;16414:3;16410:20;16407:1;16400:31;16450:4;16447:1;16440:15;16474:4;16471:1;16464:15;16490:127;16551:10;16546:3;16542:20;16539:1;16532:31;16582:4;16579:1;16572:15;16606:4;16603:1;16596:15;16622:120;16662:1;16688;16678:35;;16693:18;;:::i;:::-;-1:-1:-1;16727:9:1;;16622:120::o;16747:339::-;16949:2;16931:21;;;16988:2;16968:18;;;16961:30;-1:-1:-1;;;17022:2:1;17007:18;;17000:45;17077:2;17062:18;;16747:339::o;18148:380::-;18227:1;18223:12;;;;18270;;;18291:61;;18345:4;18337:6;18333:17;18323:27;;18291:61;18398:2;18390:6;18387:14;18367:18;18364:38;18361:161;;18444:10;18439:3;18435:20;18432:1;18425:31;18479:4;18476:1;18469:15;18507:4;18504:1;18497:15;18361:161;;18148:380;;;:::o;18659:518::-;18761:2;18756:3;18753:11;18750:421;;;18797:5;18794:1;18787:16;18841:4;18838:1;18828:18;18911:2;18899:10;18895:19;18892:1;18888:27;18882:4;18878:38;18947:4;18935:10;18932:20;18929:47;;;-1:-1:-1;18970:4:1;18929:47;19025:2;19020:3;19016:12;19013:1;19009:20;19003:4;18999:31;18989:41;;19080:81;19098:2;19091:5;19088:13;19080:81;;;19157:1;19143:16;;19124:1;19113:13;19080:81;;;19084:3;;18659:518;;;:::o;19353:1299::-;19479:3;19473:10;-1:-1:-1;;;;;19498:6:1;19495:30;19492:56;;;19528:18;;:::i;:::-;19557:97;19647:6;19607:38;19639:4;19633:11;19607:38;:::i;:::-;19601:4;19557:97;:::i;:::-;19703:4;19734:2;19723:14;;19751:1;19746:649;;;;20439:1;20456:6;20453:89;;;-1:-1:-1;20508:19:1;;;20502:26;20453:89;-1:-1:-1;;19310:1:1;19306:11;;;19302:24;19298:29;19288:40;19334:1;19330:11;;;19285:57;20555:81;;19716:930;;19746:649;18606:1;18599:14;;;18643:4;18630:18;;-1:-1:-1;;19782:20:1;;;19900:222;19914:7;19911:1;19908:14;19900:222;;;19996:19;;;19990:26;19975:42;;20103:4;20088:20;;;;20056:1;20044:14;;;;19930:12;19900:222;;;19904:3;20150:6;20141:7;20138:19;20135:201;;;20211:19;;;20205:26;-1:-1:-1;;20294:1:1;20290:14;;;20306:3;20286:24;20282:37;20278:42;20263:58;20248:74;;20135:201;-1:-1:-1;;;;20382:1:1;20366:14;;;20362:22;20349:36;;-1:-1:-1;19353:1299:1:o;20657:128::-;20724:9;;;20745:11;;;20742:37;;;20759:18;;:::i;20790:743::-;21127:3;21116:9;21109:22;21090:4;21154:46;21195:3;21184:9;21180:19;21172:6;21154:46;:::i;:::-;21248:9;21240:6;21236:22;21231:2;21220:9;21216:18;21209:50;21276:33;21302:6;21294;21276:33;:::i;:::-;21340:2;21325:18;;21318:34;;;;-1:-1:-1;;21383:2:1;21368:18;;21361:34;;;;21426:3;21411:19;;21404:35;;;;21470:3;21455:19;;21448:35;21514:3;21499:19;;;21492:35;21268:41;20790:743;-1:-1:-1;;20790:743:1:o;22245:168::-;22318:9;;;22349;;22366:15;;;22360:22;;22346:37;22336:71;;22387:18;;:::i;22418:125::-;22483:9;;;22504:10;;;22501:36;;;22517:18;;:::i;22959:259::-;23037:6;23090:2;23078:9;23069:7;23065:23;23061:32;23058:52;;;23106:1;23103;23096:12;23058:52;23138:9;23132:16;23157:31;23182:5;23157:31;:::i;24408:135::-;24447:3;24468:17;;;24465:43;;24488:18;;:::i;:::-;-1:-1:-1;24535:1:1;24524:13;;24408:135::o;24548:112::-;24580:1;24606;24596:35;;24611:18;;:::i;:::-;-1:-1:-1;24645:9:1;;24548:112::o;25025:347::-;25227:2;25209:21;;;25266:2;25246:18;;;25239:30;25305:25;25300:2;25285:18;;25278:53;25363:2;25348:18;;25025:347::o;29542:136::-;29581:3;29609:5;29599:39;;29618:18;;:::i;:::-;-1:-1:-1;;;29654:18:1;;29542:136::o;30434:200::-;30500:9;;;30473:4;30528:9;;30556:10;;30568:12;;;30552:29;30591:12;;;30583:21;;30549:56;30546:82;;;30608:18;;:::i;:::-;30546:82;30434:200;;;;:::o;30639:193::-;30678:1;30704;30694:35;;30709:18;;:::i;:::-;-1:-1:-1;;;30745:18:1;;-1:-1:-1;;30765:13:1;;30741:38;30738:64;;;30782:18;;:::i;:::-;-1:-1:-1;30816:10:1;;30639:193::o;30837:216::-;30901:9;;;30929:11;;;30876:3;30959:9;;30987:10;;30983:19;;31012:10;;31004:19;;30980:44;30977:70;;;31027:18;;:::i;:::-;30977:70;;30837:216;;;;:::o;31058:147::-;31096:3;-1:-1:-1;;;;;31117:30:1;;31114:56;;31150:18;;:::i;31210:144::-;31248:3;-1:-1:-1;;;31269:22:1;;31266:48;;31294:18;;:::i
Swarm Source
ipfs://843e815644b6e553b57ea53cc6194eb9c89629dfc93aaf8856a863ba27fa05c9
Loading...
Loading
[ 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.