Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,331 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Trigger Change A... | 16655598 | 673 days ago | IN | 0 ETH | 0.00528065 | ||||
Enter | 16605586 | 680 days ago | IN | 0 ETH | 0.00225292 | ||||
Trigger Change A... | 16527704 | 691 days ago | IN | 0 ETH | 0.00264032 | ||||
Enter | 16375560 | 712 days ago | IN | 0 ETH | 0.00225292 | ||||
Trigger Change A... | 15574498 | 824 days ago | IN | 0 ETH | 0.00052806 | ||||
Enter | 15564378 | 826 days ago | IN | 0 ETH | 0.00141586 | ||||
Enter | 15559595 | 826 days ago | IN | 0 ETH | 0.00053094 | ||||
Trigger Change A... | 15532087 | 830 days ago | IN | 0 ETH | 0.00147858 | ||||
Enter | 15526769 | 831 days ago | IN | 0 ETH | 0.00183092 | ||||
Trigger Change A... | 15495042 | 836 days ago | IN | 0 ETH | 0.00109561 | ||||
Enter | 15489406 | 837 days ago | IN | 0 ETH | 0.00168984 | ||||
Trigger Change A... | 15482490 | 838 days ago | IN | 0 ETH | 0.00063367 | ||||
Enter | 15451297 | 844 days ago | IN | 0 ETH | 0.00111337 | ||||
Enter | 15451297 | 844 days ago | IN | 0 ETH | 0.00159284 | ||||
Enter | 15438833 | 845 days ago | IN | 0 ETH | 0.00160836 | ||||
Trigger Change A... | 15413135 | 850 days ago | IN | 0 ETH | 0.0007968 | ||||
Enter | 15345555 | 860 days ago | IN | 0 ETH | 0.00160846 | ||||
Enter | 15300930 | 867 days ago | IN | 0 ETH | 0.00034658 | ||||
Trigger Change A... | 15300826 | 867 days ago | IN | 0 ETH | 0.00095051 | ||||
Enter | 15299377 | 868 days ago | IN | 0 ETH | 0.00111322 | ||||
Enter | 15299377 | 868 days ago | IN | 0 ETH | 0.00159284 | ||||
Enter | 15275592 | 871 days ago | IN | 0 ETH | 0.00108765 | ||||
Enter | 15255903 | 874 days ago | IN | 0 ETH | 0.0021123 | ||||
Enter | 15151327 | 891 days ago | IN | 0 ETH | 0.00176951 | ||||
Trigger Change A... | 15034511 | 909 days ago | IN | 0 ETH | 0.00876388 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AccountLogic
Compiler Version
v0.5.4+commit.9549d8ff
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-26 */ pragma solidity ^0.5.4; contract Account { // The implementation of the proxy address public implementation; // Logic manager address public manager; // The enabled static calls mapping (bytes4 => address) public enabled; event EnabledStaticCall(address indexed module, bytes4 indexed method); event Invoked(address indexed module, address indexed target, uint indexed value, bytes data); event Received(uint indexed value, address indexed sender, bytes data); event AccountInit(address indexed account); event ManagerChanged(address indexed mgr); modifier allowAuthorizedLogicContractsCallsOnly { require(LogicManager(manager).isAuthorized(msg.sender), "not an authorized logic"); _; } /** * @dev better to create and init account through AccountCreator.createAccount, which avoids race condition on Account.init */ function init(address _manager, address _accountStorage, address[] calldata _logics, address[] calldata _keys, address[] calldata _backups) external { require(manager == address(0), "Account: account already initialized"); require(_manager != address(0) && _accountStorage != address(0), "Account: address is null"); manager = _manager; for (uint i = 0; i < _logics.length; i++) { address logic = _logics[i]; require(LogicManager(manager).isAuthorized(logic), "must be authorized logic"); BaseLogic(logic).initAccount(this); } AccountStorage(_accountStorage).initAccount(this, _keys, _backups); emit AccountInit(address(this)); } /** * @dev Account calls an external target contract. * @param _target The target contract address. * @param _value ETH value of the call. * @param _data data of the call. */ function invoke(address _target, uint _value, bytes calldata _data) external allowAuthorizedLogicContractsCallsOnly returns (bytes memory _res) { bool success; // solium-disable-next-line security/no-call-value (success, _res) = _target.call.value(_value)(_data); require(success, "call to target failed"); emit Invoked(msg.sender, _target, _value, _data); } /** * @dev Enables a static method by specifying the target module to which the call must be delegated. * @param _module The target module. * @param _method The static method signature. */ function enableStaticCall(address _module, bytes4 _method) external allowAuthorizedLogicContractsCallsOnly { enabled[_method] = _module; emit EnabledStaticCall(_module, _method); } /** * @dev Reserved method to change account's manager. Normally it's unused. * Calling this method requires adding a new authorized logic. * @param _newMgr New logic manager. */ function changeManager(address _newMgr) external allowAuthorizedLogicContractsCallsOnly { require(_newMgr != address(0), "address cannot be null"); require(_newMgr != manager, "already changed"); manager = _newMgr; emit ManagerChanged(_newMgr); } /** * @dev This method makes it possible for the wallet to comply to interfaces expecting the wallet to * implement specific static methods. It delegates the static call to a target contract if the data corresponds * to an enabled method, or logs the call otherwise. */ function() external payable { if(msg.data.length > 0) { address logic = enabled[msg.sig]; if(logic == address(0)) { emit Received(msg.value, msg.sender, msg.data); } else { require(LogicManager(manager).isAuthorized(logic), "must be an authorized logic for static call"); // solium-disable-next-line security/no-inline-assembly assembly { calldatacopy(0, 0, calldatasize()) let result := staticcall(gas, logic, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 {revert(0, returndatasize())} default {return (0, returndatasize())} } } } } } contract Owned { // The owner address public owner; event OwnerChanged(address indexed _newOwner); /** * @dev Throws if the sender is not the owner. */ modifier onlyOwner { require(msg.sender == owner, "Must be owner"); _; } constructor() public { owner = msg.sender; } /** * @dev Lets the owner transfer ownership of the contract to a new owner. * @param _newOwner The new owner. */ function changeOwner(address _newOwner) external onlyOwner { require(_newOwner != address(0), "Address must not be null"); owner = _newOwner; emit OwnerChanged(_newOwner); } } contract LogicManager is Owned { event UpdateLogicSubmitted(address indexed logic, bool value); event UpdateLogicCancelled(address indexed logic); event UpdateLogicDone(address indexed logic, bool value); struct pending { bool value; //True: enable a new logic; False: disable an old logic. uint dueTime; //due time of a pending logic } // The authorized logic modules mapping (address => bool) public authorized; /* array index 0: AccountLogic address 1: TransferLogic address 2: DualsigsLogic address 3: DappLogic address 4: ... */ address[] public authorizedLogics; // updated logics and their due time of becoming effective mapping (address => pending) public pendingLogics; struct pendingTime { uint curPendingTime; //current pending time uint nextPendingTime; //new pending time uint dueTime; //due time of new pending time } pendingTime public pt; // how many authorized logics uint public logicCount; constructor(address[] memory _initialLogics, uint256 _pendingTime) public { for (uint i = 0; i < _initialLogics.length; i++) { address logic = _initialLogics[i]; authorized[logic] = true; logicCount += 1; } authorizedLogics = _initialLogics; pt.curPendingTime = _pendingTime; pt.nextPendingTime = _pendingTime; pt.dueTime = now; } /** * @dev Submit a new pending time. Called only by owner. * @param _pendingTime The new pending time. */ function submitUpdatePendingTime(uint _pendingTime) external onlyOwner { pt.nextPendingTime = _pendingTime; pt.dueTime = pt.curPendingTime + now; } /** * @dev Trigger updating pending time. */ function triggerUpdatePendingTime() external { require(pt.dueTime <= now, "too early to trigger updatePendingTime"); pt.curPendingTime = pt.nextPendingTime; } /** * @dev check if a logic contract is authorized. */ function isAuthorized(address _logic) external view returns (bool) { return authorized[_logic]; } /** * @dev get the authorized logic array. */ function getAuthorizedLogics() external view returns (address[] memory) { return authorizedLogics; } /** * @dev Submit a new logic. Called only by owner. * @param _logic The new logic contract address. * @param _value True: enable a new logic; False: disable an old logic. */ function submitUpdate(address _logic, bool _value) external onlyOwner { pending storage p = pendingLogics[_logic]; p.value = _value; p.dueTime = now + pt.curPendingTime; emit UpdateLogicSubmitted(_logic, _value); } /** * @dev Cancel a logic update. Called only by owner. */ function cancelUpdate(address _logic) external onlyOwner { delete pendingLogics[_logic]; emit UpdateLogicCancelled(_logic); } /** * @dev Trigger updating a new logic. * @param _logic The logic contract address. */ function triggerUpdateLogic(address _logic) external { pending memory p = pendingLogics[_logic]; require(p.dueTime > 0, "pending logic not found"); require(p.dueTime <= now, "too early to trigger updateLogic"); updateLogic(_logic, p.value); delete pendingLogics[_logic]; } /** * @dev To update an existing logic, for example authorizedLogics[1], * first a new logic is added to the array end, then copied to authorizedLogics[1], * then the last logic is dropped, done. */ function updateLogic(address _logic, bool _value) internal { if (authorized[_logic] != _value) { if(_value) { logicCount += 1; authorized[_logic] = true; authorizedLogics.push(_logic); } else { logicCount -= 1; require(logicCount > 0, "must have at least one logic module"); delete authorized[_logic]; removeLogic(_logic); } emit UpdateLogicDone(_logic, _value); } } function removeLogic(address _logic) internal { uint len = authorizedLogics.length; address lastLogic = authorizedLogics[len - 1]; if (_logic != lastLogic) { for (uint i = 0; i < len; i++) { if (_logic == authorizedLogics[i]) { authorizedLogics[i] = lastLogic; break; } } } authorizedLogics.length--; } } contract AccountStorage { modifier allowAccountCallsOnly(Account _account) { require(msg.sender == address(_account), "caller must be account"); _; } modifier allowAuthorizedLogicContractsCallsOnly(address payable _account) { require(LogicManager(Account(_account).manager()).isAuthorized(msg.sender), "not an authorized logic"); _; } struct KeyItem { address pubKey; uint256 status; } struct BackupAccount { address backup; uint256 effectiveDate;//means not effective until this timestamp uint256 expiryDate;//means effective until this timestamp } struct DelayItem { bytes32 hash; uint256 dueTime; } struct Proposal { bytes32 hash; address[] approval; } // account => quantity of operation keys (index >= 1) mapping (address => uint256) operationKeyCount; // account => index => KeyItem mapping (address => mapping(uint256 => KeyItem)) keyData; // account => index => backup account mapping (address => mapping(uint256 => BackupAccount)) backupData; /* account => actionId => DelayItem delayData applies to these 4 actions: changeAdminKey, changeAllOperationKeys, unfreeze, changeAdminKeyByBackup */ mapping (address => mapping(bytes4 => DelayItem)) delayData; // client account => proposer account => proposed actionId => Proposal mapping (address => mapping(address => mapping(bytes4 => Proposal))) proposalData; // *************** keyCount ********************** // function getOperationKeyCount(address _account) external view returns(uint256) { return operationKeyCount[_account]; } function increaseKeyCount(address payable _account) external allowAuthorizedLogicContractsCallsOnly(_account) { operationKeyCount[_account] = operationKeyCount[_account] + 1; } // *************** keyData ********************** // function getKeyData(address _account, uint256 _index) public view returns(address) { KeyItem memory item = keyData[_account][_index]; return item.pubKey; } function setKeyData(address payable _account, uint256 _index, address _key) external allowAuthorizedLogicContractsCallsOnly(_account) { require(_key != address(0), "invalid _key value"); KeyItem storage item = keyData[_account][_index]; item.pubKey = _key; } // *************** keyStatus ********************** // function getKeyStatus(address _account, uint256 _index) external view returns(uint256) { KeyItem memory item = keyData[_account][_index]; return item.status; } function setKeyStatus(address payable _account, uint256 _index, uint256 _status) external allowAuthorizedLogicContractsCallsOnly(_account) { KeyItem storage item = keyData[_account][_index]; item.status = _status; } // *************** backupData ********************** // function getBackupAddress(address _account, uint256 _index) external view returns(address) { BackupAccount memory b = backupData[_account][_index]; return b.backup; } function getBackupEffectiveDate(address _account, uint256 _index) external view returns(uint256) { BackupAccount memory b = backupData[_account][_index]; return b.effectiveDate; } function getBackupExpiryDate(address _account, uint256 _index) external view returns(uint256) { BackupAccount memory b = backupData[_account][_index]; return b.expiryDate; } function setBackup(address payable _account, uint256 _index, address _backup, uint256 _effective, uint256 _expiry) external allowAuthorizedLogicContractsCallsOnly(_account) { BackupAccount storage b = backupData[_account][_index]; b.backup = _backup; b.effectiveDate = _effective; b.expiryDate = _expiry; } function setBackupExpiryDate(address payable _account, uint256 _index, uint256 _expiry) external allowAuthorizedLogicContractsCallsOnly(_account) { BackupAccount storage b = backupData[_account][_index]; b.expiryDate = _expiry; } function clearBackupData(address payable _account, uint256 _index) external allowAuthorizedLogicContractsCallsOnly(_account) { delete backupData[_account][_index]; } // *************** delayData ********************** // function getDelayDataHash(address payable _account, bytes4 _actionId) external view returns(bytes32) { DelayItem memory item = delayData[_account][_actionId]; return item.hash; } function getDelayDataDueTime(address payable _account, bytes4 _actionId) external view returns(uint256) { DelayItem memory item = delayData[_account][_actionId]; return item.dueTime; } function setDelayData(address payable _account, bytes4 _actionId, bytes32 _hash, uint256 _dueTime) external allowAuthorizedLogicContractsCallsOnly(_account) { DelayItem storage item = delayData[_account][_actionId]; item.hash = _hash; item.dueTime = _dueTime; } function clearDelayData(address payable _account, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_account) { delete delayData[_account][_actionId]; } // *************** proposalData ********************** // function getProposalDataHash(address _client, address _proposer, bytes4 _actionId) external view returns(bytes32) { Proposal memory p = proposalData[_client][_proposer][_actionId]; return p.hash; } function getProposalDataApproval(address _client, address _proposer, bytes4 _actionId) external view returns(address[] memory) { Proposal memory p = proposalData[_client][_proposer][_actionId]; return p.approval; } function setProposalData(address payable _client, address _proposer, bytes4 _actionId, bytes32 _hash, address _approvedBackup) external allowAuthorizedLogicContractsCallsOnly(_client) { Proposal storage p = proposalData[_client][_proposer][_actionId]; if (p.hash > 0) { if (p.hash == _hash) { for (uint256 i = 0; i < p.approval.length; i++) { require(p.approval[i] != _approvedBackup, "backup already exists"); } p.approval.push(_approvedBackup); } else { p.hash = _hash; p.approval.length = 0; } } else { p.hash = _hash; p.approval.push(_approvedBackup); } } function clearProposalData(address payable _client, address _proposer, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_client) { delete proposalData[_client][_proposer][_actionId]; } // *************** init ********************** // /** * @dev Write account data into storage. * @param _account The Account. * @param _keys The initial keys. * @param _backups The initial backups. */ function initAccount(Account _account, address[] calldata _keys, address[] calldata _backups) external allowAccountCallsOnly(_account) { require(getKeyData(address(_account), 0) == address(0), "AccountStorage: account already initialized!"); require(_keys.length > 0, "empty keys array"); operationKeyCount[address(_account)] = _keys.length - 1; for (uint256 index = 0; index < _keys.length; index++) { address _key = _keys[index]; require(_key != address(0), "_key cannot be 0x0"); KeyItem storage item = keyData[address(_account)][index]; item.pubKey = _key; item.status = 0; } // avoid backup duplication if _backups.length > 1 // normally won't check duplication, in most cases only one initial backup when initialization if (_backups.length > 1) { address[] memory bkps = _backups; for (uint256 i = 0; i < _backups.length; i++) { for (uint256 j = 0; j < i; j++) { require(bkps[j] != _backups[i], "duplicate backup"); } } } for (uint256 index = 0; index < _backups.length; index++) { address _backup = _backups[index]; require(_backup != address(0), "backup cannot be 0x0"); require(_backup != address(_account), "cannot be backup of oneself"); backupData[address(_account)][index] = BackupAccount(_backup, now, uint256(-1)); } } } /* The MIT License (MIT) Copyright (c) 2016 Smart Contract Solutions, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } /** * @dev Returns ceil(a / b). */ function ceil(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / b; if(a % b == 0) { return c; } else { return c + 1; } } } contract BaseLogic { bytes constant internal SIGN_HASH_PREFIX = "\x19Ethereum Signed Message:\n32"; mapping (address => uint256) keyNonce; AccountStorage public accountStorage; modifier allowSelfCallsOnly() { require (msg.sender == address(this), "only internal call is allowed"); _; } modifier allowAccountCallsOnly(Account _account) { require(msg.sender == address(_account), "caller must be account"); _; } // *************** Constructor ********************** // constructor(AccountStorage _accountStorage) public { accountStorage = _accountStorage; } // *************** Initialization ********************* // function initAccount(Account _account) external allowAccountCallsOnly(_account){ } // *************** Getter ********************** // function getKeyNonce(address _key) external view returns(uint256) { return keyNonce[_key]; } // *************** Signature ********************** // function getSignHash(bytes memory _data, uint256 _nonce) internal view returns(bytes32) { // use EIP 191 // 0x1900 + this logic address + data + nonce of signing key bytes32 msgHash = keccak256(abi.encodePacked(byte(0x19), byte(0), address(this), _data, _nonce)); bytes32 prefixedHash = keccak256(abi.encodePacked(SIGN_HASH_PREFIX, msgHash)); return prefixedHash; } function verifySig(address _signingKey, bytes memory _signature, bytes32 _signHash) internal pure { require(_signingKey != address(0), "invalid signing key"); address recoveredAddr = recover(_signHash, _signature); require(recoveredAddr == _signingKey, "signature verification failed"); } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * NOTE: This call _does not revert_ if the signature is invalid, or * if the signer is otherwise unable to be retrieved. In those scenarios, * the zero address is returned. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise) * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { return (address(0)); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return address(0); } if (v != 27 && v != 28) { return address(0); } // If the signature is valid (and not malleable), return the signer address return ecrecover(hash, v, r, s); } /* get signer address from data * @dev Gets an address encoded as the first argument in transaction data * @param b The byte array that should have an address as first argument * @returns a The address retrieved from the array */ function getSignerAddress(bytes memory _b) internal pure returns (address _a) { require(_b.length >= 36, "invalid bytes"); // solium-disable-next-line security/no-inline-assembly assembly { let mask := 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF _a := and(mask, mload(add(_b, 36))) // b = {length:32}{method sig:4}{address:32}{...} // 36 is the offset of the first parameter of the data, if encoded properly. // 32 bytes for the length of the bytes array, and the first 4 bytes for the function signature. // 32 bytes is the length of the bytes array!!!! } } // get method id, first 4 bytes of data function getMethodId(bytes memory _b) internal pure returns (bytes4 _a) { require(_b.length >= 4, "invalid data"); // solium-disable-next-line security/no-inline-assembly assembly { // 32 bytes is the length of the bytes array _a := mload(add(_b, 32)) } } function checkKeyStatus(address _account, uint256 _index) internal view { // check operation key status if (_index > 0) { require(accountStorage.getKeyStatus(_account, _index) != 1, "frozen key"); } } // _nonce is timestamp in microsecond(1/1000000 second) function checkAndUpdateNonce(address _key, uint256 _nonce) internal { require(_nonce > keyNonce[_key], "nonce too small"); require(SafeMath.div(_nonce, 1000000) <= now + 86400, "nonce too big"); // 86400=24*3600 seconds keyNonce[_key] = _nonce; } } contract AccountBaseLogic is BaseLogic { uint256 constant internal DELAY_CHANGE_ADMIN_KEY = 21 days; uint256 constant internal DELAY_CHANGE_OPERATION_KEY = 7 days; uint256 constant internal DELAY_UNFREEZE_KEY = 7 days; uint256 constant internal DELAY_CHANGE_BACKUP = 21 days; uint256 constant internal DELAY_CHANGE_ADMIN_KEY_BY_BACKUP = 30 days; uint256 constant internal MAX_DEFINED_BACKUP_INDEX = 5; // Equals to bytes4(keccak256("changeAdminKey(address,address)")) bytes4 internal constant CHANGE_ADMIN_KEY = 0xd595d935; // Equals to bytes4(keccak256("changeAdminKeyByBackup(address,address)")) bytes4 internal constant CHANGE_ADMIN_KEY_BY_BACKUP = 0xfdd54ba1; // Equals to bytes4(keccak256("changeAdminKeyWithoutDelay(address,address)")) bytes4 internal constant CHANGE_ADMIN_KEY_WITHOUT_DELAY = 0x441d2e50; // Equals to bytes4(keccak256("changeAllOperationKeysWithoutDelay(address,address[])")) bytes4 internal constant CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY = 0x02064abc; // Equals to bytes4(keccak256("unfreezeWithoutDelay(address)")) bytes4 internal constant UNFREEZE_WITHOUT_DELAY = 0x69521650; // Equals to bytes4(keccak256("changeAllOperationKeys(address,address[])")) bytes4 internal constant CHANGE_ALL_OPERATION_KEYS = 0xd3b9d4d6; // Equals to bytes4(keccak256("unfreeze(address)")) bytes4 internal constant UNFREEZE = 0x45c8b1a6; // *************** Constructor ********************** // constructor(AccountStorage _accountStorage) BaseLogic(_accountStorage) public { } // *************** Functions ********************** // /** * @dev Check if a certain account is another's backup. */ function checkRelation(address _client, address _backup) internal view { require(_backup != address(0), "backup cannot be 0x0"); require(_client != address(0), "client cannot be 0x0"); bool isBackup; for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) { address backup = accountStorage.getBackupAddress(_client, i); uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_client, i); uint256 expiryDate = accountStorage.getBackupExpiryDate(_client, i); // backup match and effective and not expired if (_backup == backup && isEffectiveBackup(effectiveDate, expiryDate)) { isBackup = true; break; } } require(isBackup, "backup does not exist in list"); } function isEffectiveBackup(uint256 _effectiveDate, uint256 _expiryDate) internal view returns(bool) { return (_effectiveDate <= now) && (_expiryDate > now); } function clearRelatedProposalAfterAdminKeyChanged(address payable _client) internal { //clear any existing proposal proposed by both, proposer is _client accountStorage.clearProposalData(_client, _client, CHANGE_ADMIN_KEY_WITHOUT_DELAY); accountStorage.clearProposalData(_client, _client, CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY); accountStorage.clearProposalData(_client, _client, UNFREEZE_WITHOUT_DELAY); //clear any existing proposal proposed by backup, proposer is one of the backups for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) { address backup = accountStorage.getBackupAddress(_client, i); if (backup != address(0)) { accountStorage.clearProposalData(_client, backup, CHANGE_ADMIN_KEY_BY_BACKUP); } } } } /** * @title AccountLogic */ contract AccountLogic is AccountBaseLogic { // Equals to bytes4(keccak256("addOperationKey(address,address)")) bytes4 private constant ADD_OPERATION_KEY = 0x9a7f6101; // Equals to bytes4(keccak256("proposeAsBackup(address,address,bytes)")) bytes4 private constant PROPOSE_AS_BACKUP = 0xd470470f; // Equals to bytes4(keccak256("approveProposal(address,address,address,bytes)")) bytes4 private constant APPROVE_PROPOSAL = 0x3713f742; event AccountLogicEntered(bytes data, uint256 indexed nonce); event ChangeAdminKeyTriggered(address indexed account, address pkNew); event ChangeAllOperationKeysTriggered(address indexed account, address[] pks); event UnfreezeTriggered(address indexed account); event ChangeAdminKey(address indexed account, address indexed pkNew); event AddOperationKey(address indexed account, address indexed pkNew); event ChangeAllOperationKeys(address indexed account, address[] pks); event Freeze(address indexed account); event Unfreeze(address indexed account); event RemoveBackup(address indexed account, address indexed backup); event CancelDelay(address indexed account, bytes4 actionId); event CancelAddBackup(address indexed account, address indexed backup); event CancelRemoveBackup(address indexed account, address indexed backup); event ProposeAsBackup(address indexed backup, address indexed client, bytes data); event ApproveProposal(address indexed backup, address indexed client, address indexed proposer, bytes data); event CancelProposal(address indexed client, address indexed proposer, bytes4 proposedActionId); // *************** Constructor ********************** // constructor(AccountStorage _accountStorage) AccountBaseLogic(_accountStorage) public { } // *************** action entry ********************** // /** * @dev Entry method of AccountLogic. * AccountLogic has 12 actions called from 'enter': changeAdminKey, addOperationKey, changeAllOperationKeys, freeze, unfreeze, removeBackup, cancelDelay, cancelAddBackup, cancelRemoveBackup, proposeAsBackup, approveProposal, cancelProposal */ function enter(bytes calldata _data, bytes calldata _signature, uint256 _nonce) external { address account = getSignerAddress(_data); uint256 keyIndex = getKeyIndex(_data); checkKeyStatus(account, keyIndex); address signingKey = accountStorage.getKeyData(account, keyIndex); checkAndUpdateNonce(signingKey, _nonce); bytes32 signHash = getSignHash(_data, _nonce); verifySig(signingKey, _signature, signHash); // solium-disable-next-line security/no-low-level-calls (bool success,) = address(this).call(_data); require(success, "calling self failed"); emit AccountLogicEntered(_data, _nonce); } // *************** change admin key ********************** // // called from 'enter' function changeAdminKey(address payable _account, address _pkNew) external allowSelfCallsOnly { require(_pkNew != address(0), "0x0 is invalid"); address pk = accountStorage.getKeyData(_account, 0); require(pk != _pkNew, "identical admin key exists"); require(accountStorage.getDelayDataHash(_account, CHANGE_ADMIN_KEY) == 0, "delay data already exists"); bytes32 hash = keccak256(abi.encodePacked('changeAdminKey', _account, _pkNew)); accountStorage.setDelayData(_account, CHANGE_ADMIN_KEY, hash, now + DELAY_CHANGE_ADMIN_KEY); emit ChangeAdminKey(_account, _pkNew); } // called from external function triggerChangeAdminKey(address payable _account, address _pkNew) external { bytes32 hash = keccak256(abi.encodePacked('changeAdminKey', _account, _pkNew)); require(hash == accountStorage.getDelayDataHash(_account, CHANGE_ADMIN_KEY), "delay hash unmatch"); uint256 due = accountStorage.getDelayDataDueTime(_account, CHANGE_ADMIN_KEY); require(due > 0, "delay data not found"); require(due <= now, "too early to trigger changeAdminKey"); accountStorage.setKeyData(_account, 0, _pkNew); //clear any existing related delay data and proposal accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY); accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY_BY_BACKUP); clearRelatedProposalAfterAdminKeyChanged(_account); emit ChangeAdminKeyTriggered(_account, _pkNew); } // *************** add operation key ********************** // // called from 'enter' function addOperationKey(address payable _account, address _pkNew) external allowSelfCallsOnly { uint256 index = accountStorage.getOperationKeyCount(_account) + 1; require(index > 0, "invalid operation key index"); // set a limit to prevent unnecessary trouble require(index < 20, "index exceeds limit"); require(_pkNew != address(0), "0x0 is invalid"); address pk = accountStorage.getKeyData(_account, index); require(pk == address(0), "operation key already exists"); accountStorage.setKeyData(_account, index, _pkNew); accountStorage.increaseKeyCount(_account); emit AddOperationKey(_account, _pkNew); } // *************** change all operation keys ********************** // // called from 'enter' function changeAllOperationKeys(address payable _account, address[] calldata _pks) external allowSelfCallsOnly { uint256 keyCount = accountStorage.getOperationKeyCount(_account); require(_pks.length == keyCount, "invalid number of keys"); require(accountStorage.getDelayDataHash(_account, CHANGE_ALL_OPERATION_KEYS) == 0, "delay data already exists"); address pk; for (uint256 i = 0; i < keyCount; i++) { pk = _pks[i]; require(pk != address(0), "0x0 is invalid"); } bytes32 hash = keccak256(abi.encodePacked('changeAllOperationKeys', _account, _pks)); accountStorage.setDelayData(_account, CHANGE_ALL_OPERATION_KEYS, hash, now + DELAY_CHANGE_OPERATION_KEY); emit ChangeAllOperationKeys(_account, _pks); } // called from external function triggerChangeAllOperationKeys(address payable _account, address[] calldata _pks) external { bytes32 hash = keccak256(abi.encodePacked('changeAllOperationKeys', _account, _pks)); require(hash == accountStorage.getDelayDataHash(_account, CHANGE_ALL_OPERATION_KEYS), "delay hash unmatch"); uint256 due = accountStorage.getDelayDataDueTime(_account, CHANGE_ALL_OPERATION_KEYS); require(due > 0, "delay data not found"); require(due <= now, "too early to trigger changeAllOperationKeys"); address pk; for (uint256 i = 0; i < accountStorage.getOperationKeyCount(_account); i++) { pk = _pks[i]; accountStorage.setKeyData(_account, i+1, pk); accountStorage.setKeyStatus(_account, i+1, 0); } accountStorage.clearDelayData(_account, CHANGE_ALL_OPERATION_KEYS); emit ChangeAllOperationKeysTriggered(_account, _pks); } // *************** freeze/unfreeze all operation keys ********************** // // called from 'enter' function freeze(address payable _account) external allowSelfCallsOnly { for (uint256 i = 1; i <= accountStorage.getOperationKeyCount(_account); i++) { if (accountStorage.getKeyStatus(_account, i) == 0) { accountStorage.setKeyStatus(_account, i, 1); } } emit Freeze(_account); } // called from 'enter' function unfreeze(address payable _account) external allowSelfCallsOnly { require(accountStorage.getDelayDataHash(_account, UNFREEZE) == 0, "delay data already exists"); bytes32 hash = keccak256(abi.encodePacked('unfreeze', _account)); accountStorage.setDelayData(_account, UNFREEZE, hash, now + DELAY_UNFREEZE_KEY); emit Unfreeze(_account); } // called from external function triggerUnfreeze(address payable _account) external { bytes32 hash = keccak256(abi.encodePacked('unfreeze', _account)); require(hash == accountStorage.getDelayDataHash(_account, UNFREEZE), "delay hash unmatch"); uint256 due = accountStorage.getDelayDataDueTime(_account, UNFREEZE); require(due > 0, "delay data not found"); require(due <= now, "too early to trigger unfreeze"); for (uint256 i = 1; i <= accountStorage.getOperationKeyCount(_account); i++) { if (accountStorage.getKeyStatus(_account, i) == 1) { accountStorage.setKeyStatus(_account, i, 0); } } accountStorage.clearDelayData(_account, UNFREEZE); emit UnfreezeTriggered(_account); } // *************** remove backup ********************** // // called from 'enter' function removeBackup(address payable _account, address _backup) external allowSelfCallsOnly { uint256 index = findBackup(_account, _backup); require(index <= MAX_DEFINED_BACKUP_INDEX, "backup invalid or not exist"); uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_account, index); // should be an effective backup require(effectiveDate <= now, "not effective yet"); uint256 expiryDate = accountStorage.getBackupExpiryDate(_account, index); /* already expired: now > expiryDate; to be expired: now < expiryDate && expiryDate < uint256(-1) */ require(expiryDate == uint256(-1), "already expired or to be expired"); accountStorage.setBackupExpiryDate(_account, index, now + DELAY_CHANGE_BACKUP); emit RemoveBackup(_account, _backup); } // return backupData index(0~5), 6 means not found // do make sure _backup is not 0x0 function findBackup(address _account, address _backup) public view returns(uint) { uint index = MAX_DEFINED_BACKUP_INDEX + 1; if (_backup == address(0)) { return index; } address b; for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) { b = accountStorage.getBackupAddress(_account, i); if (b == _backup) { index = i; break; } } return index; } // *************** cancel delay action ********************** // // called from 'enter' function cancelDelay(address payable _account, bytes4 _actionId) external allowSelfCallsOnly { accountStorage.clearDelayData(_account, _actionId); emit CancelDelay(_account, _actionId); } // called from 'enter' function cancelAddBackup(address payable _account, address _backup) external allowSelfCallsOnly { uint256 index = findBackup(_account, _backup); require(index <= MAX_DEFINED_BACKUP_INDEX, "backup invalid or not exist"); uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_account, index); require(effectiveDate > now, "already effective"); accountStorage.clearBackupData(_account, index); emit CancelAddBackup(_account, _backup); } // called from 'enter' function cancelRemoveBackup(address payable _account, address _backup) external allowSelfCallsOnly { uint256 index = findBackup(_account, _backup); require(index <= MAX_DEFINED_BACKUP_INDEX, "backup invalid or not exist"); uint256 expiryDate = accountStorage.getBackupExpiryDate(_account, index); require(expiryDate > now, "already expired"); accountStorage.setBackupExpiryDate(_account, index, uint256(-1)); emit CancelRemoveBackup(_account, _backup); } // *************** propose a proposal by one of the backups ********************** // /** * @dev Propose a proposal. The proposer is one of client's backups. * called from 'enter'. _backup's sig is checked in 'enter'. * @param _backup backup address * @param _client client address * @param _functionData The proposed action data. */ function proposeAsBackup(address _backup, address payable _client, bytes calldata _functionData) external allowSelfCallsOnly { require(getSignerAddress(_functionData) == _client, "invalid _client"); bytes4 proposedActionId = getMethodId(_functionData); require(proposedActionId == CHANGE_ADMIN_KEY_BY_BACKUP, "invalid proposal by backup"); checkRelation(_client, _backup); bytes32 functionHash = keccak256(_functionData); accountStorage.setProposalData(_client, _backup, proposedActionId, functionHash, _backup); emit ProposeAsBackup(_backup, _client, _functionData); } // *************** approve/cancel proposal ********************** // /** * @dev Approve a proposal. * called from 'enter'. _backup's sig is checked in 'enter'. * @param _backup backup address * @param _client client address * @param _proposer If 'proposeAsBackup', proposer is backup; if 'proposeByBoth', proposer is client. * @param _functionData The proposed action data. */ function approveProposal(address _backup, address payable _client, address _proposer, bytes calldata _functionData) external allowSelfCallsOnly { require(getSignerAddress(_functionData) == _client, "invalid _client"); bytes32 functionHash = keccak256(_functionData); require(functionHash != 0, "invalid hash"); checkRelation(_client, _backup); if (_proposer != _client) { checkRelation(_client, _proposer); } bytes4 proposedActionId = getMethodId(_functionData); bytes32 hash = accountStorage.getProposalDataHash(_client, _proposer, proposedActionId); require(hash == functionHash, "proposal unmatch"); accountStorage.setProposalData(_client, _proposer, proposedActionId, functionHash, _backup); emit ApproveProposal(_backup, _client, _proposer, _functionData); } // called from 'enter' function cancelProposal(address payable _client, address _proposer, bytes4 _proposedActionId) external allowSelfCallsOnly { require(_client != _proposer, "cannot cancel dual signed proposal"); accountStorage.clearProposalData(_client, _proposer, _proposedActionId); emit CancelProposal(_client, _proposer, _proposedActionId); } // *************** internal functions ********************** // /* index 0: admin key 1: asset(transfer) 2: adding 3: reserved(dapp) 4: assist */ function getKeyIndex(bytes memory _data) internal pure returns (uint256) { uint256 index; //index default value is 0, admin key bytes4 methodId = getMethodId(_data); if (methodId == ADD_OPERATION_KEY) { index = 2; //adding key } else if (methodId == PROPOSE_AS_BACKUP || methodId == APPROVE_PROPOSAL) { index = 4; //assist key } return index; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"_key","type":"address"}],"name":"getKeyNonce","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pks","type":"address[]"}],"name":"triggerChangeAllOperationKeys","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_actionId","type":"bytes4"}],"name":"cancelDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_backup","type":"address"},{"name":"_client","type":"address"},{"name":"_proposer","type":"address"},{"name":"_functionData","type":"bytes"}],"name":"approveProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"unfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"triggerUnfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"initAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_account","type":"address"},{"name":"_backup","type":"address"}],"name":"findBackup","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_backup","type":"address"}],"name":"removeBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"addOperationKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_backup","type":"address"}],"name":"cancelRemoveBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accountStorage","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_backup","type":"address"}],"name":"cancelAddBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pks","type":"address[]"}],"name":"changeAllOperationKeys","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_backup","type":"address"},{"name":"_client","type":"address"},{"name":"_functionData","type":"bytes"}],"name":"proposeAsBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"changeAdminKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_data","type":"bytes"},{"name":"_signature","type":"bytes"},{"name":"_nonce","type":"uint256"}],"name":"enter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"triggerChangeAdminKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_client","type":"address"},{"name":"_proposer","type":"address"},{"name":"_proposedActionId","type":"bytes4"}],"name":"cancelProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_accountStorage","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"data","type":"bytes"},{"indexed":true,"name":"nonce","type":"uint256"}],"name":"AccountLogicEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"pkNew","type":"address"}],"name":"ChangeAdminKeyTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"pks","type":"address[]"}],"name":"ChangeAllOperationKeysTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"UnfreezeTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"pkNew","type":"address"}],"name":"ChangeAdminKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"pkNew","type":"address"}],"name":"AddOperationKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"pks","type":"address[]"}],"name":"ChangeAllOperationKeys","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"backup","type":"address"}],"name":"RemoveBackup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"actionId","type":"bytes4"}],"name":"CancelDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"backup","type":"address"}],"name":"CancelAddBackup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"backup","type":"address"}],"name":"CancelRemoveBackup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"backup","type":"address"},{"indexed":true,"name":"client","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"ProposeAsBackup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"backup","type":"address"},{"indexed":true,"name":"client","type":"address"},{"indexed":true,"name":"proposer","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"ApproveProposal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"client","type":"address"},{"indexed":true,"name":"proposer","type":"address"},{"indexed":false,"name":"proposedActionId","type":"bytes4"}],"name":"CancelProposal","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405160208062004ae28339810180604052602081101561003157600080fd5b505160018054600160a060020a031916600160a060020a03909216919091179055614a8080620000626000396000f3fe608060405234801561001057600080fd5b5060043610610149576000357c0100000000000000000000000000000000000000000000000000000000900480639a7f6101116100ca578063d470470f1161008e578063d470470f146104f1578063d595d9351461057a578063ee682473146105a8578063f0caa1061461066a578063fe2c960a1461069857610149565b80639a7f6101146103c35780639c0f0dcb146103f1578063c281fb721461041f578063ce4760de14610443578063d3b9d4d61461047157610149565b806354e8ca941161011157806354e8ca94146102f55780635a6c41581461031b578063801eabea1461034157806388705ac01461036f5780638d1fdf2f1461039d57610149565b80630978ec671461014e578063102cb3d414610186578063307994c1146102085780633713f7421461023e57806345c8b1a6146102cf575b600080fd5b6101746004803603602081101561016457600080fd5b5035600160a060020a03166106d9565b60408051918252519081900360200190f35b6102066004803603604081101561019c57600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156101c757600080fd5b8201836020820111156101d957600080fd5b803590602001918460208302840111640100000000831117156101fb57600080fd5b5090925090506106f4565b005b6102066004803603604081101561021e57600080fd5b508035600160a060020a03169060200135600160e060020a031916610c52565b6102066004803603608081101561025457600080fd5b600160a060020a038235811692602081013582169260408201359092169181019060808101606082013564010000000081111561029057600080fd5b8201836020820111156102a257600080fd5b803590602001918460018302840111640100000000831117156102c457600080fd5b509092509050610d5d565b610206600480360360208110156102e557600080fd5b5035600160a060020a0316611160565b6102066004803603602081101561030b57600080fd5b5035600160a060020a03166113b7565b6102066004803603602081101561033157600080fd5b5035600160a060020a03166118b7565b6101746004803603604081101561035757600080fd5b50600160a060020a038135811691602001351661191c565b6102066004803603604081101561038557600080fd5b50600160a060020a0381358116916020013516611a0e565b610206600480360360208110156103b357600080fd5b5035600160a060020a0316611d79565b610206600480360360408110156103d957600080fd5b50600160a060020a0381358116916020013516611fb3565b6102066004803603604081101561040757600080fd5b50600160a060020a03813581169160200135166123d6565b610427612644565b60408051600160a060020a039092168252519081900360200190f35b6102066004803603604081101561045957600080fd5b50600160a060020a0381358116916020013516612653565b6102066004803603604081101561048757600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156104b257600080fd5b8201836020820111156104c457600080fd5b803590602001918460208302840111640100000000831117156104e657600080fd5b5090925090506128b9565b6102066004803603606081101561050757600080fd5b600160a060020a03823581169260208101359091169181019060608101604082013564010000000081111561053b57600080fd5b82018360208201111561054d57600080fd5b8035906020019184600183028401116401000000008311171561056f57600080fd5b509092509050612cf5565b6102066004803603604081101561059057600080fd5b50600160a060020a0381358116916020013516612fee565b610206600480360360608110156105be57600080fd5b8101906020810181356401000000008111156105d957600080fd5b8201836020820111156105eb57600080fd5b8035906020019184600183028401116401000000008311171561060d57600080fd5b91939092909160208101903564010000000081111561062b57600080fd5b82018360208201111561063d57600080fd5b8035906020019184600183028401116401000000008311171561065f57600080fd5b9193509150356133b7565b6102066004803603604081101561068057600080fd5b50600160a060020a03813581169160200135166136a2565b610206600480360360608110156106ae57600080fd5b508035600160a060020a039081169160208101359091169060400135600160e060020a031916613b0f565b600160a060020a031660009081526020819052604090205490565b600083838360405160200180807f6368616e6765416c6c4f7065726174696f6e4b6579730000000000000000000081525060160184600160a060020a0316600160a060020a03166c010000000000000000000000000281526014018383602002808284376040805191909301818103601f19018252808452815160209283012060015460e160020a6370d4d783028352600160a060020a038e8116600485015260e160020a6369dcea6b0260248501529551919a5094909416975063e1a9af069650604480820196509194508390030190508186803b1580156107d657600080fd5b505afa1580156107ea573d6000803e3d6000fd5b505050506040513d602081101561080057600080fd5b50518114610858576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015260e160020a6369dcea6b026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b1580156108d257600080fd5b505afa1580156108e6573d6000803e3d6000fd5b505050506040513d60208110156108fc57600080fd5b5051905060008111610958576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b4281111561099a5760405160e560020a62461bcd02815260040180806020018281038252602b8152602001806149e5602b913960400191505060405180910390fd5b6000805b6001546040805160e060020a63d01e547f028152600160a060020a038a811660048301529151919092169163d01e547f916024808301926020929190829003018186803b1580156109ee57600080fd5b505afa158015610a02573d6000803e3d6000fd5b505050506040513d6020811015610a1857600080fd5b5051811015610b6357858582818110610a2d57fe5b60018054604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038e81166004830152938801602482015260209094029590950135821660448401819052945194965016926352d43b469250606480830192600092919082900301818387803b158015610ab157600080fd5b505af1158015610ac5573d6000803e3d6000fd5b505060018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a038d811660048301529387016024820152600060448201819052915193909216945063e4d1ba079350606480830193919282900301818387803b158015610b3f57600080fd5b505af1158015610b53573d6000803e3d6000fd5b50506001909201915061099e9050565b506001546040805160e160020a634796da83028152600160a060020a03898116600483015260e160020a6369dcea6b02602483015291519190921691638f2db50691604480830192600092919082900301818387803b158015610bc557600080fd5b505af1158015610bd9573d6000803e3d6000fd5b5050505085600160a060020a03167f5f2d1c9107b9a08f8d37fd6ff7a052016365ba8df3a3e13308b24f1dac379e2b868660405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a2505050505050565b333014610c97576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e160020a634796da83028152600160a060020a038581166004830152600160e060020a03198516602483015291519190921691638f2db50691604480830192600092919082900301818387803b158015610cf857600080fd5b505af1158015610d0c573d6000803e3d6000fd5b505060408051600160e060020a0319851681529051600160a060020a03861693507f9c3a8fed9a5f6cf3e8ed828b524d749e361d45207e43bf167eae47b5c4aab15892509081900360200190a25050565b333014610da2576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b83600160a060020a0316610deb83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613c7492505050565b600160a060020a031614610e49576040805160e560020a62461bcd02815260206004820152600f60248201527f696e76616c6964205f636c69656e740000000000000000000000000000000000604482015290519081900360640190fd5b60008282604051808383808284376040519201829003909120945050508215159150610ec19050576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420686173680000000000000000000000000000000000000000604482015290519081900360640190fd5b610ecb8587613ce3565b600160a060020a0384811690861614610ee857610ee88585613ce3565b6000610f2984848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061402592505050565b600154604080517f60791b88000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301528981166024830152600160e060020a031985166044830152915193945060009391909216916360791b88916064808301926020929190829003018186803b158015610fad57600080fd5b505afa158015610fc1573d6000803e3d6000fd5b505050506040513d6020811015610fd757600080fd5b50519050828114611032576040805160e560020a62461bcd02815260206004820152601060248201527f70726f706f73616c20756e6d6174636800000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f6bc77abe000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301528981166024830152600160e060020a031986166044830152606482018790528b8116608483015291519190921691636bc77abe9160a480830192600092919082900301818387803b1580156110c057600080fd5b505af11580156110d4573d6000803e3d6000fd5b5050505085600160a060020a031687600160a060020a031689600160a060020a03167f1e83f58df8fb20935994cadc0851e4fde558773a60551dfd0c7980777d63e794888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a45050505050505050565b3330146111a5576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e160020a6370d4d783028152600160a060020a03848116600483015260e160020a6322e458d30260248301529151919092169163e1a9af06916044808301926020929190829003018186803b15801561120557600080fd5b505afa158015611219573d6000803e3d6000fd5b505050506040513d602081101561122f57600080fd5b505115611286576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b604080517f756e667265657a65000000000000000000000000000000000000000000000000602080830191909152600160a060020a038481166c01000000000000000000000000810260288501528451808503601c018152603c8501808752815191909401206001547fb2a9651d000000000000000000000000000000000000000000000000000000009094528486019190915260e160020a6322e458d30260608501526080840181905262093a80420160a0850152935191169163b2a9651d9160c080830192600092919082900301818387803b15801561136757600080fd5b505af115801561137b573d6000803e3d6000fd5b5050604051600160a060020a03851692507fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee9150600090a25050565b604080517f756e667265657a650000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a0380861691820260288501528451601c818603018152603c850180875281519185019190912060015460e160020a6370d4d783029092528587019390935260e160020a6322e458d302606086015294519194169263e1a9af06926080808301939192829003018186803b15801561147057600080fd5b505afa158015611484573d6000803e3d6000fd5b505050506040513d602081101561149a57600080fd5b505181146114f2576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260e160020a6322e458d3026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b15801561156c57600080fd5b505afa158015611580573d6000803e3d6000fd5b505050506040513d602081101561159657600080fd5b50519050600081116115f2576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b4281111561164a576040805160e560020a62461bcd02815260206004820152601d60248201527f746f6f206561726c7920746f207472696767657220756e667265657a65000000604482015290519081900360640190fd5b60015b6001546040805160e060020a63d01e547f028152600160a060020a0387811660048301529151919092169163d01e547f916024808301926020929190829003018186803b15801561169d57600080fd5b505afa1580156116b1573d6000803e3d6000fd5b505050506040513d60208110156116c757600080fd5b5051811161180457600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b15801561173c57600080fd5b505afa158015611750573d6000803e3d6000fd5b505050506040513d602081101561176657600080fd5b5051600114156117fc57600154604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015260248201859052600060448301819052925193169263e4d1ba079260648084019391929182900301818387803b1580156117e357600080fd5b505af11580156117f7573d6000803e3d6000fd5b505050505b60010161164d565b506001546040805160e160020a634796da83028152600160a060020a03868116600483015260e160020a6322e458d302602483015291519190921691638f2db50691604480830192600092919082900301818387803b15801561186657600080fd5b505af115801561187a573d6000803e3d6000fd5b5050604051600160a060020a03861692507f12aa0c1acf60b5333b08339216143edf42422aeea497cab1ea40b8838c44fad89150600090a2505050565b8033600160a060020a03821614611918576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b5050565b60006006600160a060020a0383161515611937579050611a08565b6000805b60058111611a0257600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018590529151919092169163cb0cb76a916044808301926020929190829003018186803b1580156119b057600080fd5b505afa1580156119c4573d6000803e3d6000fd5b505050506040513d60208110156119da57600080fd5b50519150600160a060020a0380831690861614156119fa57809250611a02565b60010161193b565b50909150505b92915050565b333014611a53576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6000611a5f838361191c565b90506005811115611aba576040805160e560020a62461bcd02815260206004820152601b60248201527f6261636b757020696e76616c6964206f72206e6f742065786973740000000000604482015290519081900360640190fd5b600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018590529151600093929092169163db80821d91604480820192602092909190829003018186803b158015611b2b57600080fd5b505afa158015611b3f573d6000803e3d6000fd5b505050506040513d6020811015611b5557600080fd5b5051905042811115611bb1576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f742065666665637469766520796574000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301526024820186905291516000939290921691638e72cbae91604480820192602092909190829003018186803b158015611c2257600080fd5b505afa158015611c36573d6000803e3d6000fd5b505050506040513d6020811015611c4c57600080fd5b505190506000198114611ca9576040805160e560020a62461bcd02815260206004820181905260248201527f616c72656164792065787069726564206f7220746f2062652065787069726564604482015290519081900360640190fd5b600154604080517fe6a3890a000000000000000000000000000000000000000000000000000000008152600160a060020a0388811660048301526024820187905242621baf800160448301529151919092169163e6a3890a91606480830192600092919082900301818387803b158015611d2257600080fd5b505af1158015611d36573d6000803e3d6000fd5b5050604051600160a060020a038088169350881691507f7eac374ea2eb3981afc188fa95627a12d5ab994b6e35268e35ce8de071f8995790600090a35050505050565b333014611dbe576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b60015b6001546040805160e060020a63d01e547f028152600160a060020a0385811660048301529151919092169163d01e547f916024808301926020929190829003018186803b158015611e1157600080fd5b505afa158015611e25573d6000803e3d6000fd5b505050506040513d6020811015611e3b57600080fd5b50518111611f7b57600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b158015611eb057600080fd5b505afa158015611ec4573d6000803e3d6000fd5b505050506040513d6020811015611eda57600080fd5b50511515611f735760018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820186905260448201949094529051929091169163e4d1ba079160648082019260009290919082900301818387803b158015611f5a57600080fd5b505af1158015611f6e573d6000803e3d6000fd5b505050505b600101611dc1565b50604051600160a060020a038216907faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304990600090a250565b333014611ff8576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e060020a63d01e547f028152600160a060020a0385811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b15801561204c57600080fd5b505afa158015612060573d6000803e3d6000fd5b505050506040513d602081101561207657600080fd5b50516001019050600081116120d5576040805160e560020a62461bcd02815260206004820152601b60248201527f696e76616c6964206f7065726174696f6e206b657920696e6465780000000000604482015290519081900360640190fd5b6014811061212d576040805160e560020a62461bcd02815260206004820152601360248201527f696e6465782065786365656473206c696d697400000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216151561218d576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b1580156121fe57600080fd5b505afa158015612212573d6000803e3d6000fd5b505050506040513d602081101561222857600080fd5b50519050600160a060020a0381161561228b576040805160e560020a62461bcd02815260206004820152601c60248201527f6f7065726174696f6e206b657920616c72656164792065786973747300000000604482015290519081900360640190fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018690528681166044830152915191909216916352d43b4691606480830192600092919082900301818387803b15801561230157600080fd5b505af1158015612315573d6000803e3d6000fd5b5050600154604080517f74f7613b000000000000000000000000000000000000000000000000000000008152600160a060020a03898116600483015291519190921693506374f7613b9250602480830192600092919082900301818387803b15801561238057600080fd5b505af1158015612394573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507f1bd2095344d51c2e1cf6850363a7dbd762bfd3f0fc9fe7611faed11514b4b33d90600090a350505050565b33301461241b576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6000612427838361191c565b90506005811115612482576040805160e560020a62461bcd02815260206004820152601b60248201527f6261636b757020696e76616c6964206f72206e6f742065786973740000000000604482015290519081900360640190fd5b600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820185905291516000939290921691638e72cbae91604480820192602092909190829003018186803b1580156124f357600080fd5b505afa158015612507573d6000803e3d6000fd5b505050506040513d602081101561251d57600080fd5b50519050428111612578576040805160e560020a62461bcd02815260206004820152600f60248201527f616c726561647920657870697265640000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517fe6a3890a000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301526024820186905260001960448301529151919092169163e6a3890a91606480830192600092919082900301818387803b1580156125ee57600080fd5b505af1158015612602573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507fe337c318f86bcd56a2f7450c4338ed54cd1221a4327744d108d712ab5f3a11a890600090a350505050565b600154600160a060020a031681565b333014612698576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b60006126a4838361191c565b905060058111156126ff576040805160e560020a62461bcd02815260206004820152601b60248201527f6261636b757020696e76616c6964206f72206e6f742065786973740000000000604482015290519081900360640190fd5b600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018590529151600093929092169163db80821d91604480820192602092909190829003018186803b15801561277057600080fd5b505afa158015612784573d6000803e3d6000fd5b505050506040513d602081101561279a57600080fd5b505190504281116127f5576040805160e560020a62461bcd02815260206004820152601160248201527f616c726561647920656666656374697665000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8e1e9c1f000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301526024820186905291519190921691638e1e9c1f91604480830192600092919082900301818387803b15801561286357600080fd5b505af1158015612877573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507fbdec5d3ace0474dd1e79b85673c598f13f95547b7f4d648e4237861b69bc313190600090a350505050565b3330146128fe576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e060020a63d01e547f028152600160a060020a0386811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b15801561295257600080fd5b505afa158015612966573d6000803e3d6000fd5b505050506040513d602081101561297c57600080fd5b505190508181146129d7576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964206e756d626572206f66206b65797300000000000000000000604482015290519081900360640190fd5b6001546040805160e160020a6370d4d783028152600160a060020a03878116600483015260e160020a6369dcea6b0260248301529151919092169163e1a9af06916044808301926020929190829003018186803b158015612a3757600080fd5b505afa158015612a4b573d6000803e3d6000fd5b505050506040513d6020811015612a6157600080fd5b505115612ab8576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b6000805b82811015612b5757848482818110612ad057fe5b90506020020135600160a060020a031691506000600160a060020a031682600160a060020a031614151515612b4f576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600101612abc565b50600085858560405160200180807f6368616e6765416c6c4f7065726174696f6e4b6579730000000000000000000081525060160184600160a060020a0316600160a060020a03166c010000000000000000000000000281526014018383602002808284376040805191909301818103601f1901825280845281516020909201919091206001547fb2a9651d000000000000000000000000000000000000000000000000000000008352600160a060020a038f8116600485015260e160020a6369dcea6b0260248501526044840183905262093a8042016064850152945191995093909316965063b2a9651d9550608480820195506000945090839003019050818387803b158015612c6857600080fd5b505af1158015612c7c573d6000803e3d6000fd5b5050505085600160a060020a03167f58ce62729e522aab5b5e24b673fc7c092122d131157f678dbf20e3691ad365c7868660405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a2505050505050565b333014612d3a576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b82600160a060020a0316612d8383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613c7492505050565b600160a060020a031614612de1576040805160e560020a62461bcd02815260206004820152600f60248201527f696e76616c6964205f636c69656e740000000000000000000000000000000000604482015290519081900360640190fd5b6000612e2283838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061402592505050565b9050600160e060020a031981167ffdd54ba10000000000000000000000000000000000000000000000000000000014612ea5576040805160e560020a62461bcd02815260206004820152601a60248201527f696e76616c69642070726f706f73616c206279206261636b7570000000000000604482015290519081900360640190fd5b612eaf8486613ce3565b6000838360405180838380828437604080519190930181900381206001547f6bc77abe000000000000000000000000000000000000000000000000000000008352600160a060020a038d811660048501528e811660248501819052600160e060020a03198c1660448601526064850184905260848501529451919850939093169550636bc77abe945060a4808201945060009392509082900301818387803b158015612f5a57600080fd5b505af1158015612f6e573d6000803e3d6000fd5b5050505084600160a060020a031686600160a060020a03167fe5a271528ca4f69278049a0b16c3746ae06d5d0c48fc963144cf7e04bf7b77da868660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a3505050505050565b333014613033576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b600160a060020a0381161515613093576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b15801561310257600080fd5b505afa158015613116573d6000803e3d6000fd5b505050506040513d602081101561312c57600080fd5b50519050600160a060020a038082169083161415613194576040805160e560020a62461bcd02815260206004820152601a60248201527f6964656e746963616c2061646d696e206b657920657869737473000000000000604482015290519081900360640190fd5b6001546040805160e160020a6370d4d783028152600160a060020a03868116600483015260e060020a63d595d9350260248301529151919092169163e1a9af06916044808301926020929190829003018186803b1580156131f457600080fd5b505afa158015613208573d6000803e3d6000fd5b505050506040513d602081101561321e57600080fd5b505115613275576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b604080517f6368616e676541646d696e4b6579000000000000000000000000000000000000602080830191909152600160a060020a038681166c01000000000000000000000000818102602e8601528783160260428501528451808503603601815260568501808752815191909401206001547fb2a9651d00000000000000000000000000000000000000000000000000000000909452605a85019190915260e060020a63d595d93502607a850152609a8401819052621baf80420160ba850152935191169163b2a9651d9160da80830192600092919082900301818387803b15801561336157600080fd5b505af1158015613375573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507f5bf4ad704c60ebf215d54ab0377df590043c2bd6f4b09747c82a86383de4cf1190600090a350505050565b60006133f886868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613c7492505050565b9050600061343b87878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061408b92505050565b90506134478282614148565b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b1580156134b857600080fd5b505afa1580156134cc573d6000803e3d6000fd5b505050506040513d60208110156134e257600080fd5b505190506134f08185614242565b600061353389898080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250899250614336915050565b90506135778288888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508692506144a5915050565b600030600160a060020a03168a8a604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146135d5576040519150601f19603f3d011682016040523d82523d6000602084013e6135da565b606091505b50509050801515613635576040805160e560020a62461bcd02815260206004820152601360248201527f63616c6c696e672073656c66206661696c656400000000000000000000000000604482015290519081900360640190fd5b857f2792c8ad335b8f96afff7b8b99643a5e94063aabbc81eb0a6865417d4fde4fa68b8b60405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a250505050505050505050565b604080517f6368616e676541646d696e4b65790000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808716828102602e8601528187169092026042850152845160368186030181526056850180875281519185019190912060015460e160020a6370d4d78302909252605a86019390935260e060020a63d595d93502607a86015294519194169263e1a9af0692609a808301939192829003018186803b15801561376757600080fd5b505afa15801561377b573d6000803e3d6000fd5b505050506040513d602081101561379157600080fd5b505181146137e9576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260e060020a63d595d935026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b15801561386357600080fd5b505afa158015613877573d6000803e3d6000fd5b505050506040513d602081101561388d57600080fd5b50519050600081116138e9576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b4281111561392b5760405160e560020a62461bcd028152600401808060200182810382526023815260200180614a326023913960400191505060405180910390fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152600060248301819052878216604484015292519316926352d43b469260648084019391929182900301818387803b15801561399f57600080fd5b505af11580156139b3573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a03898116600483015260e060020a63d595d9350260248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015613a1857600080fd5b505af1158015613a2c573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0389811660048301527ffdd54ba10000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015613aa757600080fd5b505af1158015613abb573d6000803e3d6000fd5b50505050613ac88461457c565b60408051600160a060020a0385811682529151918616917f41252e40db93e0a30244c34108e743f98aa53e66cf81f195e8d192019175d2189181900360200190a250505050565b333014613b54576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b600160a060020a038381169083161415613ba25760405160e560020a62461bcd028152600401808060200182810382526022815260200180614a106022913960400191505060405180910390fd5b6001546040805160e260020a630870cb27028152600160a060020a0386811660048301528581166024830152600160e060020a031985166044830152915191909216916321c32c9c91606480830192600092919082900301818387803b158015613c0b57600080fd5b505af1158015613c1f573d6000803e3d6000fd5b505060408051600160e060020a0319851681529051600160a060020a038087169450871692507f0c4fb6acb21f8e7231163c2a041634bf5408227604fb1ea69e33d31112b427359181900360200190a3505050565b60006024825110151515613cd2576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b600160a060020a0381161515613d43576040805160e560020a62461bcd02815260206004820152601460248201527f6261636b75702063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515613da3576040805160e560020a62461bcd02815260206004820152601460248201527f636c69656e742063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b6000805b60058111613fc857600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b158015613e2057600080fd5b505afa158015613e34573d6000803e3d6000fd5b505050506040513d6020811015613e4a57600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b158015613ebf57600080fd5b505afa158015613ed3573d6000803e3d6000fd5b505050506040513d6020811015613ee957600080fd5b5051600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b158015613f5e57600080fd5b505afa158015613f72573d6000803e3d6000fd5b505050506040513d6020811015613f8857600080fd5b50519050600160a060020a03868116908416148015613fac5750613fac8282614899565b15613fbd5760019450505050613fc8565b505050600101613da7565b50801515614020576040805160e560020a62461bcd02815260206004820152601d60248201527f6261636b757020646f6573206e6f7420657869737420696e206c697374000000604482015290519081900360640190fd5b505050565b60006004825110151515614083576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420646174610000000000000000000000000000000000000000604482015290519081900360640190fd5b506020015190565b600080600061409984614025565b9050600160e060020a031981167f9a7f61010000000000000000000000000000000000000000000000000000000014156140d65760029150614141565b600160e060020a031981167fd470470f0000000000000000000000000000000000000000000000000000000014806141375750600160e060020a031981167f3713f74200000000000000000000000000000000000000000000000000000000145b1561414157600491505b5092915050565b600081111561191857600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b1580156141be57600080fd5b505afa1580156141d2573d6000803e3d6000fd5b505050506040513d60208110156141e857600080fd5b505160011415611918576040805160e560020a62461bcd02815260206004820152600a60248201527f66726f7a656e206b657900000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526020819052604090205481116142b1576040805160e560020a62461bcd02815260206004820152600f60248201527f6e6f6e636520746f6f20736d616c6c0000000000000000000000000000000000604482015290519081900360640190fd5b4262015180016142c482620f42406148b1565b111561431a576040805160e560020a62461bcd02815260206004820152600d60248201527f6e6f6e636520746f6f2062696700000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260208190526040902055565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c010000000000000000000000008102602287015287519195869594869492938a938a939092603690910191908501908083835b602083106143bf5780518252601f1990920191602091820191016143a0565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152848301808352815191840191909120606086018352601c8083527f19457468657265756d205369676e6564204d6573736167653a0a3332000000009684019687529251909a50600099509097508996509091019350839291508083835b602083106144645780518252601f199092019160209182019101614445565b51815160209384036101000a600019018019909216911617905292019384525060408051808503815293820190528251920191909120979650505050505050565b600160a060020a0383161515614505576040805160e560020a62461bcd02815260206004820152601360248201527f696e76616c6964207369676e696e67206b657900000000000000000000000000604482015290519081900360640190fd5b600061451182846148d5565b9050600160a060020a0380821690851614614576576040805160e560020a62461bcd02815260206004820152601d60248201527f7369676e617475726520766572696669636174696f6e206661696c6564000000604482015290519081900360640190fd5b50505050565b6001546040805160e260020a630870cb27028152600160a060020a038481166004830181905260248301527f441d2e50000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b1580156145fa57600080fd5b505af115801561460e573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f02064abc00000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b15801561469057600080fd5b505af11580156146a4573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f6952165000000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b15801561472657600080fd5b505af115801561473a573d6000803e3d6000fd5b506000925050505b6005811161191857600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156147bb57600080fd5b505afa1580156147cf573d6000803e3d6000fd5b505050506040513d60208110156147e557600080fd5b50519050600160a060020a03811615614890576001546040805160e260020a630870cb27028152600160a060020a03868116600483015284811660248301527ffdd54ba1000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b15801561487757600080fd5b505af115801561488b573d6000803e3d6000fd5b505050505b50600101614742565b60004283111580156148aa57504282115b9392505050565b60008082116148bf57600080fd5b600082848115156148cc57fe5b04949350505050565b80516000906041146148e957506000611a08565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561492f5760009350505050611a08565b8060ff16601b1415801561494757508060ff16601c14155b156149585760009350505050611a08565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa1580156149af573d6000803e3d6000fd5b5050604051601f19015197965050505050505056fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f776564000000746f6f206561726c7920746f2074726967676572206368616e6765416c6c4f7065726174696f6e4b65797363616e6e6f742063616e63656c206475616c207369676e65642070726f706f73616c746f6f206561726c7920746f2074726967676572206368616e676541646d696e4b6579a165627a7a72305820a672ffc44c5d53325af8909b3dea0d499df433ccf9f074a6c9de0a475f982ec20029000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7
Deployed Bytecode
0x608060405234801561001057600080fd5b5060043610610149576000357c0100000000000000000000000000000000000000000000000000000000900480639a7f6101116100ca578063d470470f1161008e578063d470470f146104f1578063d595d9351461057a578063ee682473146105a8578063f0caa1061461066a578063fe2c960a1461069857610149565b80639a7f6101146103c35780639c0f0dcb146103f1578063c281fb721461041f578063ce4760de14610443578063d3b9d4d61461047157610149565b806354e8ca941161011157806354e8ca94146102f55780635a6c41581461031b578063801eabea1461034157806388705ac01461036f5780638d1fdf2f1461039d57610149565b80630978ec671461014e578063102cb3d414610186578063307994c1146102085780633713f7421461023e57806345c8b1a6146102cf575b600080fd5b6101746004803603602081101561016457600080fd5b5035600160a060020a03166106d9565b60408051918252519081900360200190f35b6102066004803603604081101561019c57600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156101c757600080fd5b8201836020820111156101d957600080fd5b803590602001918460208302840111640100000000831117156101fb57600080fd5b5090925090506106f4565b005b6102066004803603604081101561021e57600080fd5b508035600160a060020a03169060200135600160e060020a031916610c52565b6102066004803603608081101561025457600080fd5b600160a060020a038235811692602081013582169260408201359092169181019060808101606082013564010000000081111561029057600080fd5b8201836020820111156102a257600080fd5b803590602001918460018302840111640100000000831117156102c457600080fd5b509092509050610d5d565b610206600480360360208110156102e557600080fd5b5035600160a060020a0316611160565b6102066004803603602081101561030b57600080fd5b5035600160a060020a03166113b7565b6102066004803603602081101561033157600080fd5b5035600160a060020a03166118b7565b6101746004803603604081101561035757600080fd5b50600160a060020a038135811691602001351661191c565b6102066004803603604081101561038557600080fd5b50600160a060020a0381358116916020013516611a0e565b610206600480360360208110156103b357600080fd5b5035600160a060020a0316611d79565b610206600480360360408110156103d957600080fd5b50600160a060020a0381358116916020013516611fb3565b6102066004803603604081101561040757600080fd5b50600160a060020a03813581169160200135166123d6565b610427612644565b60408051600160a060020a039092168252519081900360200190f35b6102066004803603604081101561045957600080fd5b50600160a060020a0381358116916020013516612653565b6102066004803603604081101561048757600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156104b257600080fd5b8201836020820111156104c457600080fd5b803590602001918460208302840111640100000000831117156104e657600080fd5b5090925090506128b9565b6102066004803603606081101561050757600080fd5b600160a060020a03823581169260208101359091169181019060608101604082013564010000000081111561053b57600080fd5b82018360208201111561054d57600080fd5b8035906020019184600183028401116401000000008311171561056f57600080fd5b509092509050612cf5565b6102066004803603604081101561059057600080fd5b50600160a060020a0381358116916020013516612fee565b610206600480360360608110156105be57600080fd5b8101906020810181356401000000008111156105d957600080fd5b8201836020820111156105eb57600080fd5b8035906020019184600183028401116401000000008311171561060d57600080fd5b91939092909160208101903564010000000081111561062b57600080fd5b82018360208201111561063d57600080fd5b8035906020019184600183028401116401000000008311171561065f57600080fd5b9193509150356133b7565b6102066004803603604081101561068057600080fd5b50600160a060020a03813581169160200135166136a2565b610206600480360360608110156106ae57600080fd5b508035600160a060020a039081169160208101359091169060400135600160e060020a031916613b0f565b600160a060020a031660009081526020819052604090205490565b600083838360405160200180807f6368616e6765416c6c4f7065726174696f6e4b6579730000000000000000000081525060160184600160a060020a0316600160a060020a03166c010000000000000000000000000281526014018383602002808284376040805191909301818103601f19018252808452815160209283012060015460e160020a6370d4d783028352600160a060020a038e8116600485015260e160020a6369dcea6b0260248501529551919a5094909416975063e1a9af069650604480820196509194508390030190508186803b1580156107d657600080fd5b505afa1580156107ea573d6000803e3d6000fd5b505050506040513d602081101561080057600080fd5b50518114610858576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015260e160020a6369dcea6b026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b1580156108d257600080fd5b505afa1580156108e6573d6000803e3d6000fd5b505050506040513d60208110156108fc57600080fd5b5051905060008111610958576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b4281111561099a5760405160e560020a62461bcd02815260040180806020018281038252602b8152602001806149e5602b913960400191505060405180910390fd5b6000805b6001546040805160e060020a63d01e547f028152600160a060020a038a811660048301529151919092169163d01e547f916024808301926020929190829003018186803b1580156109ee57600080fd5b505afa158015610a02573d6000803e3d6000fd5b505050506040513d6020811015610a1857600080fd5b5051811015610b6357858582818110610a2d57fe5b60018054604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038e81166004830152938801602482015260209094029590950135821660448401819052945194965016926352d43b469250606480830192600092919082900301818387803b158015610ab157600080fd5b505af1158015610ac5573d6000803e3d6000fd5b505060018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a038d811660048301529387016024820152600060448201819052915193909216945063e4d1ba079350606480830193919282900301818387803b158015610b3f57600080fd5b505af1158015610b53573d6000803e3d6000fd5b50506001909201915061099e9050565b506001546040805160e160020a634796da83028152600160a060020a03898116600483015260e160020a6369dcea6b02602483015291519190921691638f2db50691604480830192600092919082900301818387803b158015610bc557600080fd5b505af1158015610bd9573d6000803e3d6000fd5b5050505085600160a060020a03167f5f2d1c9107b9a08f8d37fd6ff7a052016365ba8df3a3e13308b24f1dac379e2b868660405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a2505050505050565b333014610c97576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e160020a634796da83028152600160a060020a038581166004830152600160e060020a03198516602483015291519190921691638f2db50691604480830192600092919082900301818387803b158015610cf857600080fd5b505af1158015610d0c573d6000803e3d6000fd5b505060408051600160e060020a0319851681529051600160a060020a03861693507f9c3a8fed9a5f6cf3e8ed828b524d749e361d45207e43bf167eae47b5c4aab15892509081900360200190a25050565b333014610da2576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b83600160a060020a0316610deb83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613c7492505050565b600160a060020a031614610e49576040805160e560020a62461bcd02815260206004820152600f60248201527f696e76616c6964205f636c69656e740000000000000000000000000000000000604482015290519081900360640190fd5b60008282604051808383808284376040519201829003909120945050508215159150610ec19050576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420686173680000000000000000000000000000000000000000604482015290519081900360640190fd5b610ecb8587613ce3565b600160a060020a0384811690861614610ee857610ee88585613ce3565b6000610f2984848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061402592505050565b600154604080517f60791b88000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301528981166024830152600160e060020a031985166044830152915193945060009391909216916360791b88916064808301926020929190829003018186803b158015610fad57600080fd5b505afa158015610fc1573d6000803e3d6000fd5b505050506040513d6020811015610fd757600080fd5b50519050828114611032576040805160e560020a62461bcd02815260206004820152601060248201527f70726f706f73616c20756e6d6174636800000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f6bc77abe000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301528981166024830152600160e060020a031986166044830152606482018790528b8116608483015291519190921691636bc77abe9160a480830192600092919082900301818387803b1580156110c057600080fd5b505af11580156110d4573d6000803e3d6000fd5b5050505085600160a060020a031687600160a060020a031689600160a060020a03167f1e83f58df8fb20935994cadc0851e4fde558773a60551dfd0c7980777d63e794888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a45050505050505050565b3330146111a5576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e160020a6370d4d783028152600160a060020a03848116600483015260e160020a6322e458d30260248301529151919092169163e1a9af06916044808301926020929190829003018186803b15801561120557600080fd5b505afa158015611219573d6000803e3d6000fd5b505050506040513d602081101561122f57600080fd5b505115611286576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b604080517f756e667265657a65000000000000000000000000000000000000000000000000602080830191909152600160a060020a038481166c01000000000000000000000000810260288501528451808503601c018152603c8501808752815191909401206001547fb2a9651d000000000000000000000000000000000000000000000000000000009094528486019190915260e160020a6322e458d30260608501526080840181905262093a80420160a0850152935191169163b2a9651d9160c080830192600092919082900301818387803b15801561136757600080fd5b505af115801561137b573d6000803e3d6000fd5b5050604051600160a060020a03851692507fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee9150600090a25050565b604080517f756e667265657a650000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a0380861691820260288501528451601c818603018152603c850180875281519185019190912060015460e160020a6370d4d783029092528587019390935260e160020a6322e458d302606086015294519194169263e1a9af06926080808301939192829003018186803b15801561147057600080fd5b505afa158015611484573d6000803e3d6000fd5b505050506040513d602081101561149a57600080fd5b505181146114f2576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260e160020a6322e458d3026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b15801561156c57600080fd5b505afa158015611580573d6000803e3d6000fd5b505050506040513d602081101561159657600080fd5b50519050600081116115f2576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b4281111561164a576040805160e560020a62461bcd02815260206004820152601d60248201527f746f6f206561726c7920746f207472696767657220756e667265657a65000000604482015290519081900360640190fd5b60015b6001546040805160e060020a63d01e547f028152600160a060020a0387811660048301529151919092169163d01e547f916024808301926020929190829003018186803b15801561169d57600080fd5b505afa1580156116b1573d6000803e3d6000fd5b505050506040513d60208110156116c757600080fd5b5051811161180457600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b15801561173c57600080fd5b505afa158015611750573d6000803e3d6000fd5b505050506040513d602081101561176657600080fd5b5051600114156117fc57600154604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015260248201859052600060448301819052925193169263e4d1ba079260648084019391929182900301818387803b1580156117e357600080fd5b505af11580156117f7573d6000803e3d6000fd5b505050505b60010161164d565b506001546040805160e160020a634796da83028152600160a060020a03868116600483015260e160020a6322e458d302602483015291519190921691638f2db50691604480830192600092919082900301818387803b15801561186657600080fd5b505af115801561187a573d6000803e3d6000fd5b5050604051600160a060020a03861692507f12aa0c1acf60b5333b08339216143edf42422aeea497cab1ea40b8838c44fad89150600090a2505050565b8033600160a060020a03821614611918576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b5050565b60006006600160a060020a0383161515611937579050611a08565b6000805b60058111611a0257600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018590529151919092169163cb0cb76a916044808301926020929190829003018186803b1580156119b057600080fd5b505afa1580156119c4573d6000803e3d6000fd5b505050506040513d60208110156119da57600080fd5b50519150600160a060020a0380831690861614156119fa57809250611a02565b60010161193b565b50909150505b92915050565b333014611a53576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6000611a5f838361191c565b90506005811115611aba576040805160e560020a62461bcd02815260206004820152601b60248201527f6261636b757020696e76616c6964206f72206e6f742065786973740000000000604482015290519081900360640190fd5b600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018590529151600093929092169163db80821d91604480820192602092909190829003018186803b158015611b2b57600080fd5b505afa158015611b3f573d6000803e3d6000fd5b505050506040513d6020811015611b5557600080fd5b5051905042811115611bb1576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f742065666665637469766520796574000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301526024820186905291516000939290921691638e72cbae91604480820192602092909190829003018186803b158015611c2257600080fd5b505afa158015611c36573d6000803e3d6000fd5b505050506040513d6020811015611c4c57600080fd5b505190506000198114611ca9576040805160e560020a62461bcd02815260206004820181905260248201527f616c72656164792065787069726564206f7220746f2062652065787069726564604482015290519081900360640190fd5b600154604080517fe6a3890a000000000000000000000000000000000000000000000000000000008152600160a060020a0388811660048301526024820187905242621baf800160448301529151919092169163e6a3890a91606480830192600092919082900301818387803b158015611d2257600080fd5b505af1158015611d36573d6000803e3d6000fd5b5050604051600160a060020a038088169350881691507f7eac374ea2eb3981afc188fa95627a12d5ab994b6e35268e35ce8de071f8995790600090a35050505050565b333014611dbe576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b60015b6001546040805160e060020a63d01e547f028152600160a060020a0385811660048301529151919092169163d01e547f916024808301926020929190829003018186803b158015611e1157600080fd5b505afa158015611e25573d6000803e3d6000fd5b505050506040513d6020811015611e3b57600080fd5b50518111611f7b57600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b158015611eb057600080fd5b505afa158015611ec4573d6000803e3d6000fd5b505050506040513d6020811015611eda57600080fd5b50511515611f735760018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820186905260448201949094529051929091169163e4d1ba079160648082019260009290919082900301818387803b158015611f5a57600080fd5b505af1158015611f6e573d6000803e3d6000fd5b505050505b600101611dc1565b50604051600160a060020a038216907faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304990600090a250565b333014611ff8576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e060020a63d01e547f028152600160a060020a0385811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b15801561204c57600080fd5b505afa158015612060573d6000803e3d6000fd5b505050506040513d602081101561207657600080fd5b50516001019050600081116120d5576040805160e560020a62461bcd02815260206004820152601b60248201527f696e76616c6964206f7065726174696f6e206b657920696e6465780000000000604482015290519081900360640190fd5b6014811061212d576040805160e560020a62461bcd02815260206004820152601360248201527f696e6465782065786365656473206c696d697400000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216151561218d576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b1580156121fe57600080fd5b505afa158015612212573d6000803e3d6000fd5b505050506040513d602081101561222857600080fd5b50519050600160a060020a0381161561228b576040805160e560020a62461bcd02815260206004820152601c60248201527f6f7065726174696f6e206b657920616c72656164792065786973747300000000604482015290519081900360640190fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018690528681166044830152915191909216916352d43b4691606480830192600092919082900301818387803b15801561230157600080fd5b505af1158015612315573d6000803e3d6000fd5b5050600154604080517f74f7613b000000000000000000000000000000000000000000000000000000008152600160a060020a03898116600483015291519190921693506374f7613b9250602480830192600092919082900301818387803b15801561238057600080fd5b505af1158015612394573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507f1bd2095344d51c2e1cf6850363a7dbd762bfd3f0fc9fe7611faed11514b4b33d90600090a350505050565b33301461241b576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6000612427838361191c565b90506005811115612482576040805160e560020a62461bcd02815260206004820152601b60248201527f6261636b757020696e76616c6964206f72206e6f742065786973740000000000604482015290519081900360640190fd5b600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820185905291516000939290921691638e72cbae91604480820192602092909190829003018186803b1580156124f357600080fd5b505afa158015612507573d6000803e3d6000fd5b505050506040513d602081101561251d57600080fd5b50519050428111612578576040805160e560020a62461bcd02815260206004820152600f60248201527f616c726561647920657870697265640000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517fe6a3890a000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301526024820186905260001960448301529151919092169163e6a3890a91606480830192600092919082900301818387803b1580156125ee57600080fd5b505af1158015612602573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507fe337c318f86bcd56a2f7450c4338ed54cd1221a4327744d108d712ab5f3a11a890600090a350505050565b600154600160a060020a031681565b333014612698576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b60006126a4838361191c565b905060058111156126ff576040805160e560020a62461bcd02815260206004820152601b60248201527f6261636b757020696e76616c6964206f72206e6f742065786973740000000000604482015290519081900360640190fd5b600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152602482018590529151600093929092169163db80821d91604480820192602092909190829003018186803b15801561277057600080fd5b505afa158015612784573d6000803e3d6000fd5b505050506040513d602081101561279a57600080fd5b505190504281116127f5576040805160e560020a62461bcd02815260206004820152601160248201527f616c726561647920656666656374697665000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8e1e9c1f000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301526024820186905291519190921691638e1e9c1f91604480830192600092919082900301818387803b15801561286357600080fd5b505af1158015612877573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507fbdec5d3ace0474dd1e79b85673c598f13f95547b7f4d648e4237861b69bc313190600090a350505050565b3330146128fe576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b6001546040805160e060020a63d01e547f028152600160a060020a0386811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b15801561295257600080fd5b505afa158015612966573d6000803e3d6000fd5b505050506040513d602081101561297c57600080fd5b505190508181146129d7576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964206e756d626572206f66206b65797300000000000000000000604482015290519081900360640190fd5b6001546040805160e160020a6370d4d783028152600160a060020a03878116600483015260e160020a6369dcea6b0260248301529151919092169163e1a9af06916044808301926020929190829003018186803b158015612a3757600080fd5b505afa158015612a4b573d6000803e3d6000fd5b505050506040513d6020811015612a6157600080fd5b505115612ab8576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b6000805b82811015612b5757848482818110612ad057fe5b90506020020135600160a060020a031691506000600160a060020a031682600160a060020a031614151515612b4f576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600101612abc565b50600085858560405160200180807f6368616e6765416c6c4f7065726174696f6e4b6579730000000000000000000081525060160184600160a060020a0316600160a060020a03166c010000000000000000000000000281526014018383602002808284376040805191909301818103601f1901825280845281516020909201919091206001547fb2a9651d000000000000000000000000000000000000000000000000000000008352600160a060020a038f8116600485015260e160020a6369dcea6b0260248501526044840183905262093a8042016064850152945191995093909316965063b2a9651d9550608480820195506000945090839003019050818387803b158015612c6857600080fd5b505af1158015612c7c573d6000803e3d6000fd5b5050505085600160a060020a03167f58ce62729e522aab5b5e24b673fc7c092122d131157f678dbf20e3691ad365c7868660405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a2505050505050565b333014612d3a576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b82600160a060020a0316612d8383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613c7492505050565b600160a060020a031614612de1576040805160e560020a62461bcd02815260206004820152600f60248201527f696e76616c6964205f636c69656e740000000000000000000000000000000000604482015290519081900360640190fd5b6000612e2283838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061402592505050565b9050600160e060020a031981167ffdd54ba10000000000000000000000000000000000000000000000000000000014612ea5576040805160e560020a62461bcd02815260206004820152601a60248201527f696e76616c69642070726f706f73616c206279206261636b7570000000000000604482015290519081900360640190fd5b612eaf8486613ce3565b6000838360405180838380828437604080519190930181900381206001547f6bc77abe000000000000000000000000000000000000000000000000000000008352600160a060020a038d811660048501528e811660248501819052600160e060020a03198c1660448601526064850184905260848501529451919850939093169550636bc77abe945060a4808201945060009392509082900301818387803b158015612f5a57600080fd5b505af1158015612f6e573d6000803e3d6000fd5b5050505084600160a060020a031686600160a060020a03167fe5a271528ca4f69278049a0b16c3746ae06d5d0c48fc963144cf7e04bf7b77da868660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a3505050505050565b333014613033576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b600160a060020a0381161515613093576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b15801561310257600080fd5b505afa158015613116573d6000803e3d6000fd5b505050506040513d602081101561312c57600080fd5b50519050600160a060020a038082169083161415613194576040805160e560020a62461bcd02815260206004820152601a60248201527f6964656e746963616c2061646d696e206b657920657869737473000000000000604482015290519081900360640190fd5b6001546040805160e160020a6370d4d783028152600160a060020a03868116600483015260e060020a63d595d9350260248301529151919092169163e1a9af06916044808301926020929190829003018186803b1580156131f457600080fd5b505afa158015613208573d6000803e3d6000fd5b505050506040513d602081101561321e57600080fd5b505115613275576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b604080517f6368616e676541646d696e4b6579000000000000000000000000000000000000602080830191909152600160a060020a038681166c01000000000000000000000000818102602e8601528783160260428501528451808503603601815260568501808752815191909401206001547fb2a9651d00000000000000000000000000000000000000000000000000000000909452605a85019190915260e060020a63d595d93502607a850152609a8401819052621baf80420160ba850152935191169163b2a9651d9160da80830192600092919082900301818387803b15801561336157600080fd5b505af1158015613375573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507f5bf4ad704c60ebf215d54ab0377df590043c2bd6f4b09747c82a86383de4cf1190600090a350505050565b60006133f886868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613c7492505050565b9050600061343b87878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061408b92505050565b90506134478282614148565b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b1580156134b857600080fd5b505afa1580156134cc573d6000803e3d6000fd5b505050506040513d60208110156134e257600080fd5b505190506134f08185614242565b600061353389898080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250899250614336915050565b90506135778288888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508692506144a5915050565b600030600160a060020a03168a8a604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146135d5576040519150601f19603f3d011682016040523d82523d6000602084013e6135da565b606091505b50509050801515613635576040805160e560020a62461bcd02815260206004820152601360248201527f63616c6c696e672073656c66206661696c656400000000000000000000000000604482015290519081900360640190fd5b857f2792c8ad335b8f96afff7b8b99643a5e94063aabbc81eb0a6865417d4fde4fa68b8b60405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a250505050505050505050565b604080517f6368616e676541646d696e4b65790000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808716828102602e8601528187169092026042850152845160368186030181526056850180875281519185019190912060015460e160020a6370d4d78302909252605a86019390935260e060020a63d595d93502607a86015294519194169263e1a9af0692609a808301939192829003018186803b15801561376757600080fd5b505afa15801561377b573d6000803e3d6000fd5b505050506040513d602081101561379157600080fd5b505181146137e9576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260e060020a63d595d935026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b15801561386357600080fd5b505afa158015613877573d6000803e3d6000fd5b505050506040513d602081101561388d57600080fd5b50519050600081116138e9576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b4281111561392b5760405160e560020a62461bcd028152600401808060200182810382526023815260200180614a326023913960400191505060405180910390fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152600060248301819052878216604484015292519316926352d43b469260648084019391929182900301818387803b15801561399f57600080fd5b505af11580156139b3573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a03898116600483015260e060020a63d595d9350260248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015613a1857600080fd5b505af1158015613a2c573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0389811660048301527ffdd54ba10000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015613aa757600080fd5b505af1158015613abb573d6000803e3d6000fd5b50505050613ac88461457c565b60408051600160a060020a0385811682529151918616917f41252e40db93e0a30244c34108e743f98aa53e66cf81f195e8d192019175d2189181900360200190a250505050565b333014613b54576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206149c5833981519152604482015290519081900360640190fd5b600160a060020a038381169083161415613ba25760405160e560020a62461bcd028152600401808060200182810382526022815260200180614a106022913960400191505060405180910390fd5b6001546040805160e260020a630870cb27028152600160a060020a0386811660048301528581166024830152600160e060020a031985166044830152915191909216916321c32c9c91606480830192600092919082900301818387803b158015613c0b57600080fd5b505af1158015613c1f573d6000803e3d6000fd5b505060408051600160e060020a0319851681529051600160a060020a038087169450871692507f0c4fb6acb21f8e7231163c2a041634bf5408227604fb1ea69e33d31112b427359181900360200190a3505050565b60006024825110151515613cd2576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b600160a060020a0381161515613d43576040805160e560020a62461bcd02815260206004820152601460248201527f6261636b75702063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515613da3576040805160e560020a62461bcd02815260206004820152601460248201527f636c69656e742063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b6000805b60058111613fc857600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b158015613e2057600080fd5b505afa158015613e34573d6000803e3d6000fd5b505050506040513d6020811015613e4a57600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b158015613ebf57600080fd5b505afa158015613ed3573d6000803e3d6000fd5b505050506040513d6020811015613ee957600080fd5b5051600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b158015613f5e57600080fd5b505afa158015613f72573d6000803e3d6000fd5b505050506040513d6020811015613f8857600080fd5b50519050600160a060020a03868116908416148015613fac5750613fac8282614899565b15613fbd5760019450505050613fc8565b505050600101613da7565b50801515614020576040805160e560020a62461bcd02815260206004820152601d60248201527f6261636b757020646f6573206e6f7420657869737420696e206c697374000000604482015290519081900360640190fd5b505050565b60006004825110151515614083576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420646174610000000000000000000000000000000000000000604482015290519081900360640190fd5b506020015190565b600080600061409984614025565b9050600160e060020a031981167f9a7f61010000000000000000000000000000000000000000000000000000000014156140d65760029150614141565b600160e060020a031981167fd470470f0000000000000000000000000000000000000000000000000000000014806141375750600160e060020a031981167f3713f74200000000000000000000000000000000000000000000000000000000145b1561414157600491505b5092915050565b600081111561191857600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b1580156141be57600080fd5b505afa1580156141d2573d6000803e3d6000fd5b505050506040513d60208110156141e857600080fd5b505160011415611918576040805160e560020a62461bcd02815260206004820152600a60248201527f66726f7a656e206b657900000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526020819052604090205481116142b1576040805160e560020a62461bcd02815260206004820152600f60248201527f6e6f6e636520746f6f20736d616c6c0000000000000000000000000000000000604482015290519081900360640190fd5b4262015180016142c482620f42406148b1565b111561431a576040805160e560020a62461bcd02815260206004820152600d60248201527f6e6f6e636520746f6f2062696700000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260208190526040902055565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c010000000000000000000000008102602287015287519195869594869492938a938a939092603690910191908501908083835b602083106143bf5780518252601f1990920191602091820191016143a0565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152848301808352815191840191909120606086018352601c8083527f19457468657265756d205369676e6564204d6573736167653a0a3332000000009684019687529251909a50600099509097508996509091019350839291508083835b602083106144645780518252601f199092019160209182019101614445565b51815160209384036101000a600019018019909216911617905292019384525060408051808503815293820190528251920191909120979650505050505050565b600160a060020a0383161515614505576040805160e560020a62461bcd02815260206004820152601360248201527f696e76616c6964207369676e696e67206b657900000000000000000000000000604482015290519081900360640190fd5b600061451182846148d5565b9050600160a060020a0380821690851614614576576040805160e560020a62461bcd02815260206004820152601d60248201527f7369676e617475726520766572696669636174696f6e206661696c6564000000604482015290519081900360640190fd5b50505050565b6001546040805160e260020a630870cb27028152600160a060020a038481166004830181905260248301527f441d2e50000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b1580156145fa57600080fd5b505af115801561460e573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f02064abc00000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b15801561469057600080fd5b505af11580156146a4573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f6952165000000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b15801561472657600080fd5b505af115801561473a573d6000803e3d6000fd5b506000925050505b6005811161191857600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156147bb57600080fd5b505afa1580156147cf573d6000803e3d6000fd5b505050506040513d60208110156147e557600080fd5b50519050600160a060020a03811615614890576001546040805160e260020a630870cb27028152600160a060020a03868116600483015284811660248301527ffdd54ba1000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b15801561487757600080fd5b505af115801561488b573d6000803e3d6000fd5b505050505b50600101614742565b60004283111580156148aa57504282115b9392505050565b60008082116148bf57600080fd5b600082848115156148cc57fe5b04949350505050565b80516000906041146148e957506000611a08565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561492f5760009350505050611a08565b8060ff16601b1415801561494757508060ff16601c14155b156149585760009350505050611a08565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa1580156149af573d6000803e3d6000fd5b5050604051601f19015197965050505050505056fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f776564000000746f6f206561726c7920746f2074726967676572206368616e6765416c6c4f7065726174696f6e4b65797363616e6e6f742063616e63656c206475616c207369676e65642070726f706f73616c746f6f206561726c7920746f2074726967676572206368616e676541646d696e4b6579a165627a7a72305820a672ffc44c5d53325af8909b3dea0d499df433ccf9f074a6c9de0a475f982ec20029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7
-----Decoded View---------------
Arg [0] : _accountStorage (address): 0xADc92d1fD878580579716d944eF3460E241604b7
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7
Deployed Bytecode Sourcemap
32540:14187:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32540:14187:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23140:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23140:106:0;-1:-1:-1;;;;;23140:106:0;;:::i;:::-;;;;;;;;;;;;;;;;38479:861;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;38479:861:0;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;38479:861:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38479:861:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;38479:861:0;;-1:-1:-1;38479:861:0;-1:-1:-1;38479:861:0;:::i;:::-;;42374:195;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42374:195:0;;-1:-1:-1;;;;;42374:195:0;;;;;-1:-1:-1;;;;;;42374:195:0;;:::i;44954:806::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;44954:806:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;44954:806:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44954:806:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;44954:806:0;;-1:-1:-1;44954:806:0;-1:-1:-1;44954:806:0;:::i;39791:357::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39791:357:0;-1:-1:-1;;;;;39791:357:0;;:::i;40182:699::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40182:699:0;-1:-1:-1;;;;;40182:699:0;;:::i;22986:87::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22986:87:0;-1:-1:-1;;;;;22986:87:0;;:::i;41876:396::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41876:396:0;;;;;;;;;;:::i;40977:798::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40977:798:0;;;;;;;;;;:::i;39457:301::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39457:301:0;-1:-1:-1;;;;;39457:301:0;;:::i;36958:638::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36958:638:0;;;;;;;;;;:::i;43097:474::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43097:474:0;;;;;;;;;;:::i;22408:36::-;;;:::i;:::-;;;;-1:-1:-1;;;;;22408:36:0;;;;;;;;;;;;;;42602:462;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;42602:462:0;;;;;;;;;;:::i;37704:741::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;37704:741:0;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;37704:741:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;37704:741:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;37704:741:0;;-1:-1:-1;37704:741:0;-1:-1:-1;37704:741:0;:::i;43943:594::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;43943:594:0;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;43943:594:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43943:594:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;43943:594:0;;-1:-1:-1;43943:594:0;-1:-1:-1;43943:594:0;:::i;35422:591::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35422:591:0;;;;;;;;;;:::i;34694:629::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34694:629:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;34694:629:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34694:629:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34694:629:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;34694:629:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34694:629:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34694:629:0;;-1:-1:-1;34694:629:0;-1:-1:-1;34694:629:0;;:::i;36047:811::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36047:811:0;;;;;;;;;;:::i;45793:338::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45793:338:0;;-1:-1:-1;;;;;45793:338:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45793:338:0;;:::i;23140:106::-;-1:-1:-1;;;;;23224:14:0;23197:7;23224:14;;;;;;;;;;;;23140:106::o;38479:861::-;38583:12;38651:8;38661:4;;38608:58;;;;;;;;;;;;;-1:-1:-1;;;;;38608:58:0;-1:-1:-1;;;;;38608:58:0;;;;;;;;;;;30:3:-1;22:6;14;1:33;38608:58:0;;;45:16:-1;;;;26:21;;;-1:-1;;22:32;6:49;;38608:58:0;;;38598:69;;49:4:-1;38598:69:0;;;;38688:14;;-1:-1:-1;;;;;38688:68:0;;-1:-1:-1;;;;;38688:68:0;;;;;;;-1:-1:-1;;;;;38688:68:0;;;;;;38598:69;;-1:-1:-1;38688:14:0;;;;;-1:-1:-1;38688:31:0;;-1:-1:-1;38688:68:0;;;;;-1:-1:-1;49:4;;-1:-1;38688:68:0;;;;;-1:-1:-1;38688:68:0;:14;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;38688:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38688:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38688:68:0;38680:76;;38672:107;;;;;-1:-1:-1;;;;;38672:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38800:14;;:71;;;;;;-1:-1:-1;;;;;38800:71:0;;;;;;;-1:-1:-1;;;;;38800:71:0;;;;;;38786:11;;38800:14;;;;;:34;;:71;;;;;;;;;;;;;;;:14;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;38800:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38800:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38800:71:0;;-1:-1:-1;38890:1:0;38884:7;;38876:40;;;;;-1:-1:-1;;;;;38876:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38936:3;38929:10;;;38921:66;;;;-1:-1:-1;;;;;38921:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38992:10;;39007:201;39031:14;;:45;;;-1:-1:-1;;;;;39031:45:0;;-1:-1:-1;;;;;39031:45:0;;;;;;;;;:14;;;;;:35;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;39031:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39031:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39031:45:0;39027:49;;39007:201;;;39094:4;;39099:1;39094:7;;;;;;;39107:14;;;:44;;;;;;-1:-1:-1;;;;;39107:44:0;;;;;;;39143:3;;;39107:44;;;;39094:7;;;;;;;;;;;39107:44;;;;;;;;39094:7;;-1:-1:-1;39107:14:0;;:25;;-1:-1:-1;39107:44:0;;;;;:14;;:44;;;;;;;:14;;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;39107:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39157:14:0;;;:45;;;;;;-1:-1:-1;;;;;39157:45:0;;;;;;;39195:3;;;39157:45;;;;:14;:45;;;;;;;;:14;;;;;-1:-1:-1;39157:27:0;;-1:-1:-1;39157:45:0;;;;;:14;;:45;;;;;:14;;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;39157:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39078:3:0;;;;;-1:-1:-1;39007:201:0;;-1:-1:-1;39007:201:0;;-1:-1:-1;39212:14:0;;:66;;;-1:-1:-1;;;;;39212:66:0;;-1:-1:-1;;;;;39212:66:0;;;;;;;-1:-1:-1;;;;;39212:66:0;;;;;;:14;;;;;:29;;:66;;;;;:14;;:66;;;;;;;:14;;:66;;;5:2:-1;;;;30:1;27;20:12;5:2;39212:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39212:66:0;;;;39320:8;-1:-1:-1;;;;;39288:47:0;;39330:4;;39288:47;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;39288:47:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;39288:47:0;;;;-1:-1:-1;39288:47:0;;-1:-1:-1;;;;39288:47:0;38479:861;;;;;;:::o;42374:195::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;42472:14;;:50;;;-1:-1:-1;;;;;42472:50:0;;-1:-1:-1;;;;;42472:50:0;;;;;;;-1:-1:-1;;;;;;42472:50:0;;;;;;;;:14;;;;;:29;;:50;;;;;:14;;:50;;;;;;;:14;;:50;;;5:2:-1;;;;30:1;27;20:12;5:2;42472:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;42532:32:0;;;-1:-1:-1;;;;;;42532:32:0;;;;;;-1:-1:-1;;;;;42532:32:0;;;-1:-1:-1;42532:32:0;;-1:-1:-1;42532:32:0;;;;;;;;42374:195;;:::o;44954:806::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;45146:7;-1:-1:-1;;;;;45111:42:0;:31;45128:13;;45111:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;45111:16:0;;-1:-1:-1;;;45111:31:0:i;:::-;-1:-1:-1;;;;;45111:42:0;;45103:70;;;;;-1:-1:-1;;;;;45103:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45180:20;45213:13;;45203:24;;;;;30:3:-1;22:6;14;1:33;45203:24:0;;45:16:-1;;45203:24:0;;;;;;;-1:-1:-1;;;45240:17:0;;;;-1:-1:-1;45232:42:0;;-1:-1:-1;45232:42:0;;;;-1:-1:-1;;;;;45232:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45279:31;45293:7;45302;45279:13;:31::i;:::-;-1:-1:-1;;;;;45319:20:0;;;;;;;45315:71;;45347:33;45361:7;45370:9;45347:13;:33::i;:::-;45392:23;45418:26;45430:13;;45418:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;45418:11:0;;-1:-1:-1;;;45418:26:0:i;:::-;45464:14;;:72;;;;;;-1:-1:-1;;;;;45464:72:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;45464:72:0;;;;;;;;45392:52;;-1:-1:-1;45449:12:0;;45464:14;;;;;:34;;:72;;;;;;;;;;;;;;:14;:72;;;5:2:-1;;;;30:1;27;20:12;5:2;45464:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45464:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45464:72:0;;-1:-1:-1;45549:20:0;;;45541:49;;;;;-1:-1:-1;;;;;45541:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45595:14;;:91;;;;;;-1:-1:-1;;;;;45595:91:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;45595:91:0;;;;;;;;;;;;;;;;;;;;;:14;;;;;:30;;:91;;;;;:14;;:91;;;;;;;:14;;:91;;;5:2:-1;;;;30:1;27;20:12;5:2;45595:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45595:91:0;;;;45730:9;-1:-1:-1;;;;;45696:59:0;45721:7;-1:-1:-1;;;;;45696:59:0;45712:7;-1:-1:-1;;;;;45696:59:0;;45741:13;;45696:59;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;45696:59:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;45696:59:0;;;;-1:-1:-1;45696:59:0;;-1:-1:-1;;;;45696:59:0;22575:1;;;44954:806;;;;;:::o;39791:357::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;39876:14;;:51;;;-1:-1:-1;;;;;39876:51:0;;-1:-1:-1;;;;;39876:51:0;;;;;;;-1:-1:-1;;;;;39876:51:0;;;;;;:14;;;;;:31;;:51;;;;;;;;;;;;;;:14;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;39876:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39876:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39876:51:0;:56;39868:94;;;;;-1:-1:-1;;;;;39868:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39992:38;;;;;;;;;;;;-1:-1:-1;;;;;39992:38:0;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;39992:38:0;;;;;;39982:49;;;;;;;40036:14;;:79;;;;;;;;;;;-1:-1:-1;;;;;40036:79:0;;;;;;;;;;29142:6;40090:3;:24;40036:79;;;;;;:14;;;:27;;:79;;;;;-1:-1:-1;;40036:79:0;;;;;;;-1:-1:-1;40036:14:0;:79;;;5:2:-1;;;;30:1;27;20:12;5:2;40036:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;40125:18:0;;-1:-1:-1;;;;;40125:18:0;;;-1:-1:-1;40125:18:0;;-1:-1:-1;40125:18:0;;;22575:1;39791:357;:::o;40182:699::-;40272:38;;;;;;;;;;;;;-1:-1:-1;;;;;40272:38:0;;;;;;;;;;;;22:32:-1;26:21;;;22:32;6:49;;40272:38:0;;;;;;40262:49;;;;;;;;;40332:14;;-1:-1:-1;;;;;40332:51:0;;;;;;;;;;-1:-1:-1;;;;;40332:51:0;;;;;;40262:49;;40332:14;;:31;;:51;;;;;40272:38;;40332:51;;;;;:14;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;40332:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40332:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40332:51:0;40324:59;;40316:90;;;;;-1:-1:-1;;;;;40316:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40427:14;;:54;;;;;;-1:-1:-1;;;;;40427:54:0;;;;;;;-1:-1:-1;;;;;40427:54:0;;;;;;40413:11;;40427:14;;;;;:34;;:54;;;;;;;;;;;;;;;:14;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;40427:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40427:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40427:54:0;;-1:-1:-1;40500:1:0;40494:7;;40486:40;;;;;-1:-1:-1;;;;;40486:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40546:3;40539:10;;;40531:52;;;;;-1:-1:-1;;;;;40531:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40607:1;40590:196;40615:14;;:45;;;-1:-1:-1;;;;;40615:45:0;;-1:-1:-1;;;;;40615:45:0;;;;;;;;;:14;;;;;:35;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;40615:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40615:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40615:45:0;40610:50;;40590:196;;40677:14;;:40;;;;;;-1:-1:-1;;;;;40677:40:0;;;;;;;;;;;;;;;:14;;;;;:27;;:40;;;;;;;;;;;;;;:14;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;40677:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40677:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40677:40:0;40721:1;40677:45;40673:108;;;40731:14;;:43;;;;;;-1:-1:-1;;;;;40731:43:0;;;;;;;;;;;;;:14;:43;;;;;;;;:14;;;:27;;:43;;;;;:14;;:43;;;;;;:14;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;40731:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40731:43:0;;;;40673:108;40662:3;;40590:196;;;-1:-1:-1;40790:14:0;;:49;;;-1:-1:-1;;;;;40790:49:0;;-1:-1:-1;;;;;40790:49:0;;;;;;;-1:-1:-1;;;;;40790:49:0;;;;;;:14;;;;;:29;;:49;;;;;:14;;:49;;;;;;;:14;;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;40790:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;40849:27:0;;-1:-1:-1;;;;;40849:27:0;;;-1:-1:-1;40849:27:0;;-1:-1:-1;40849:27:0;;;40182:699;;;:::o;22986:87::-;23056:8;22660:10;-1:-1:-1;;;;;22660:31:0;;;22652:66;;;;;-1:-1:-1;;;;;22652:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22986:87;;:::o;41876:396::-;41951:4;41975:28;-1:-1:-1;;;;;42012:21:0;;;42008:51;;;42048:5;-1:-1:-1;42041:12:0;;42008:51;42063:9;;42077:174;29347:1;42097:29;;42077:174;;42143:14;;:44;;;;;;-1:-1:-1;;;;;42143:44:0;;;;;;;;;;;;;;;:14;;;;;:31;;:44;;;;;;;;;;;;;;:14;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;42143:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42143:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42143:44:0;;-1:-1:-1;;;;;;42197:12:0;;;;;;;42193:53;;;42226:1;42218:9;;42234:5;;42193:53;42128:3;;42077:174;;;-1:-1:-1;42262:5:0;;-1:-1:-1;;41876:396:0;;;;;:::o;40977:798::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;41075:13;41091:29;41102:8;41112:7;41091:10;:29::i;:::-;41075:45;-1:-1:-1;29347:1:0;41133:33;;;41125:73;;;;;-1:-1:-1;;;;;41125:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41229:14;;:54;;;;;;-1:-1:-1;;;;;41229:54:0;;;;;;;;;;;;;;;41205:21;;41229:14;;;;;:37;;:54;;;;;;;;;;;;;;;:14;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;41229:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41229:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41229:54:0;;-1:-1:-1;41349:3:0;41332:20;;;41324:50;;;;;-1:-1:-1;;;;;41324:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41402:14;;:51;;;;;;-1:-1:-1;;;;;41402:51:0;;;;;;;;;;;;;;;41381:18;;41402:14;;;;;:34;;:51;;;;;;;;;;;;;;;:14;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;41402:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41402:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41402:51:0;;-1:-1:-1;;;41582:25:0;;41574:70;;;;;-1:-1:-1;;;;;41574:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41651:14;;:78;;;;;;-1:-1:-1;;;;;41651:78:0;;;;;;;;;;;;;41703:3;29203:7;41703:25;41651:78;;;;;;:14;;;;;:34;;:78;;;;;:14;;:78;;;;;;;:14;;:78;;;5:2:-1;;;;30:1;27;20:12;5:2;41651:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;41739:31:0;;-1:-1:-1;;;;;41739:31:0;;;;-1:-1:-1;41739:31:0;;;-1:-1:-1;41739:31:0;;;;;22575:1;;;40977:798;;:::o;39457:301::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;39549:1;39532:196;39557:14;;:45;;;-1:-1:-1;;;;;39557:45:0;;-1:-1:-1;;;;;39557:45:0;;;;;;;;;:14;;;;;:35;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;39557:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39557:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39557:45:0;39552:50;;39532:196;;39619:14;;:40;;;;;;-1:-1:-1;;;;;39619:40:0;;;;;;;;;;;;;;;:14;;;;;:27;;:40;;;;;;;;;;;;;;:14;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;39619:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39619:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39619:40:0;:45;39615:108;;;39673:14;;;:43;;;;;;-1:-1:-1;;;;;39673:43:0;;;;;;;;;;;;;;;;;;;;;;:14;;;;;:27;;:43;;;;;:14;;:43;;;;;;;;:14;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;39673:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39673:43:0;;;;39615:108;39604:3;;39532:196;;;-1:-1:-1;39737:16:0;;-1:-1:-1;;;;;39737:16:0;;;;;;;;39457:301;:::o;36958:638::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;37074:14;;:45;;;-1:-1:-1;;;;;37074:45:0;;-1:-1:-1;;;;;37074:45:0;;;;;;;;;37058:13;;37074:14;;;;;:35;;:45;;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;37074:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37074:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37074:45:0;37122:1;37074:49;;-1:-1:-1;37144:1:0;37136:9;;37128:49;;;;;-1:-1:-1;;;;;37128:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37247:2;37239:10;;37231:42;;;;;-1:-1:-1;;;;;37231:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37286:20:0;;;;37278:47;;;;;-1:-1:-1;;;;;37278:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37343:14;;:42;;;;;;-1:-1:-1;;;;;37343:42:0;;;;;;;;;;;;;;;37330:10;;37343:14;;;;;:25;;:42;;;;;;;;;;;;;;;:14;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;37343:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37343:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37343:42:0;;-1:-1:-1;;;;;;37398:16:0;;;37390:57;;;;;-1:-1:-1;;;;;37390:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37452:14;;:50;;;;;;-1:-1:-1;;;;;37452:50:0;;;;;;;;;;;;;;;;;;;;;;:14;;;;;:25;;:50;;;;;:14;;:50;;;;;;;:14;;:50;;;5:2:-1;;;;30:1;27;20:12;5:2;37452:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37507:14:0;;:41;;;;;;-1:-1:-1;;;;;37507:41:0;;;;;;;;;:14;;;;;-1:-1:-1;37507:31:0;;-1:-1:-1;37507:41:0;;;;;:14;;:41;;;;;;;:14;;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;37507:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37558:33:0;;-1:-1:-1;;;;;37558:33:0;;;;-1:-1:-1;37558:33:0;;;-1:-1:-1;37558:33:0;;;;;22575:1;;36958:638;;:::o;43097:474::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;43201:13;43217:29;43228:8;43238:7;43217:10;:29::i;:::-;43201:45;-1:-1:-1;29347:1:0;43259:33;;;43251:73;;;;;-1:-1:-1;;;;;43251:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43350:14;;:51;;;;;;-1:-1:-1;;;;;43350:51:0;;;;;;;;;;;;;;;43329:18;;43350:14;;;;;:34;;:51;;;;;;;;;;;;;;;:14;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;43350:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43350:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43350:51:0;;-1:-1:-1;43427:3:0;43414:16;;43406:44;;;;;-1:-1:-1;;;;;43406:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43455:14;;:64;;;;;;-1:-1:-1;;;;;43455:64:0;;;;;;;;;;;;;-1:-1:-1;;43455:64:0;;;;;;:14;;;;;:34;;:64;;;;;:14;;:64;;;;;;;:14;;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;43455:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;43529:37:0;;-1:-1:-1;;;;;43529:37:0;;;;-1:-1:-1;43529:37:0;;;-1:-1:-1;43529:37:0;;;;;22575:1;;43097:474;;:::o;22408:36::-;;;-1:-1:-1;;;;;22408:36:0;;:::o;42602:462::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;42703:13;42719:29;42730:8;42740:7;42719:10;:29::i;:::-;42703:45;-1:-1:-1;29347:1:0;42761:33;;;42753:73;;;;;-1:-1:-1;;;;;42753:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42855:14;;:54;;;;;;-1:-1:-1;;;;;42855:54:0;;;;;;;;;;;;;;;42831:21;;42855:14;;;;;:37;;:54;;;;;;;;;;;;;;;:14;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;42855:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42855:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42855:54:0;;-1:-1:-1;42938:3:0;42922:19;;42914:49;;;;;-1:-1:-1;;;;;42914:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42968:14;;:47;;;;;;-1:-1:-1;;;;;42968:47:0;;;;;;;;;;;;;;;:14;;;;;:30;;:47;;;;;:14;;:47;;;;;;;:14;;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;42968:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;43025:34:0;;-1:-1:-1;;;;;43025:34:0;;;;-1:-1:-1;43025:34:0;;;-1:-1:-1;43025:34:0;;;;;22575:1;;42602:462;;:::o;37704:741::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;37839:14;;:45;;;-1:-1:-1;;;;;37839:45:0;;-1:-1:-1;;;;;37839:45:0;;;;;;;;;37820:16;;37839:14;;;;;:35;;:45;;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;37839:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37839:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37839:45:0;;-1:-1:-1;37897:23:0;;;37889:58;;;;;-1:-1:-1;;;;;37889:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37960:14;;:68;;;-1:-1:-1;;;;;37960:68:0;;-1:-1:-1;;;;;37960:68:0;;;;;;;-1:-1:-1;;;;;37960:68:0;;;;;;:14;;;;;:31;;:68;;;;;;;;;;;;;;:14;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;37960:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37960:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37960:68:0;:73;37952:111;;;;;-1:-1:-1;;;;;37952:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38068:10;;38083:112;38107:8;38103:1;:12;38083:112;;;38133:4;;38138:1;38133:7;;;;;;;;;;;;;-1:-1:-1;;;;;38133:7:0;38128:12;;38168:1;-1:-1:-1;;;;;38154:16:0;:2;-1:-1:-1;;;;;38154:16:0;;;38146:43;;;;;;;-1:-1:-1;;;;;38146:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38117:3;;38083:112;;;;38199:12;38267:8;38277:4;;38224:58;;;;;;;;;;;;;-1:-1:-1;;;;;38224:58:0;-1:-1:-1;;;;;38224:58:0;;;;;;;;;;;30:3:-1;22:6;14;1:33;38224:58:0;;;45:16:-1;;;;26:21;;;-1:-1;;22:32;6:49;;38224:58:0;;;38214:69;;49:4:-1;38214:69:0;;;;;;;38288:14;;:104;;;-1:-1:-1;;;;;38288:104:0;;;;;;;-1:-1:-1;;;;;38288:104:0;;;;;;;;;;29082:6;38359:3;:32;38288:104;;;;;;38214:69;;-1:-1:-1;38288:14:0;;;;;-1:-1:-1;38288:27:0;;-1:-1:-1;38288:104:0;;;;;-1:-1:-1;;;;38288:104:0;;;;;;-1:-1:-1;38288:104:0;-1:-1:-1;38288:14:0;:104;;;5:2:-1;;;;30:1;27;20:12;5:2;38288:104:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38288:104:0;;;;38425:8;-1:-1:-1;;;;;38402:38:0;;38435:4;;38402:38;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;38402:38:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;38402:38:0;;;;-1:-1:-1;38402:38:0;;-1:-1:-1;;;;38402:38:0;22575:1;;;37704:741;;;:::o;43943:594::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;44116:7;-1:-1:-1;;;;;44081:42:0;:31;44098:13;;44081:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44081:16:0;;-1:-1:-1;;;44081:31:0:i;:::-;-1:-1:-1;;;;;44081:42:0;;44073:70;;;;;-1:-1:-1;;;;;44073:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44150:23;44176:26;44188:13;;44176:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44176:11:0;;-1:-1:-1;;;44176:26:0:i;:::-;44150:52;-1:-1:-1;;;;;;;44215:46:0;;44235:26;44215:46;44207:85;;;;;-1:-1:-1;;;;;44207:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44297:31;44311:7;44320;44297:13;:31::i;:::-;44333:20;44366:13;;44356:24;;;;;30:3:-1;22:6;14;1:33;44356:24:0;;;45:16:-1;;;;44356:24:0;;;;;44385:14;;:89;;;-1:-1:-1;;;;;44385:89:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44385:89:0;;;;;;;;;;;;;;;;;;44356:24;;-1:-1:-1;44385:14:0;;;;;-1:-1:-1;44385:30:0;;-1:-1:-1;44385:89:0;;;;;-1:-1:-1;;;44385:89:0;-1:-1:-1;44385:89:0;;;;;;-1:-1:-1;44385:14:0;:89;;;5:2:-1;;;;30:1;27;20:12;5:2;44385:89:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44385:89:0;;;;44509:7;-1:-1:-1;;;;;44484:48:0;44500:7;-1:-1:-1;;;;;44484:48:0;;44518:13;;44484:48;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;44484:48:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;44484:48:0;;;;-1:-1:-1;44484:48:0;;-1:-1:-1;;;;44484:48:0;22575:1;;43943:594;;;;:::o;35422:591::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35529:20:0;;;;35521:47;;;;;-1:-1:-1;;;;;35521:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35586:14;;:38;;;;;;-1:-1:-1;;;;;35586:38:0;;;;;;;35573:10;35586:38;;;;;;;;35573:10;;35586:14;;:25;;:38;;;;;;;;;;;;;;;:14;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;35586:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35586:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35586:38:0;;-1:-1:-1;;;;;;35637:12:0;;;;;;;;35629:51;;;;;-1:-1:-1;;;;;35629:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35693:14;;:59;;;-1:-1:-1;;;;;35693:59:0;;-1:-1:-1;;;;;35693:59:0;;;;;;;-1:-1:-1;;;;;35693:59:0;;;;;;:14;;;;;:31;;:59;;;;;;;;;;;;;;:14;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;35693:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35693:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35693:59:0;:64;35685:102;;;;;-1:-1:-1;;;;;35685:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35817:52;;;;;;;;;;;;-1:-1:-1;;;;;35817:52:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;35817:52:0;;;;;;35807:63;;;;;;;35875:14;;:91;;;;;;;;;;;-1:-1:-1;;;;;35875:91:0;;;;;;;;;;29013:7;35937:3;:28;35875:91;;;;;;:14;;;:27;;:91;;;;;-1:-1:-1;;35875:91:0;;;;;;;-1:-1:-1;35875:14:0;:91;;;5:2:-1;;;;30:1;27;20:12;5:2;35875:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;35976:32:0;;-1:-1:-1;;;;;35976:32:0;;;;-1:-1:-1;35976:32:0;;;-1:-1:-1;35976:32:0;;;;;22575:1;;35422:591;;:::o;34694:629::-;34788:15;34806:23;34823:5;;34806:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34806:16:0;;-1:-1:-1;;;34806:23:0:i;:::-;34788:41;;34834:16;34853:18;34865:5;;34853:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34853:11:0;;-1:-1:-1;;;34853:18:0:i;:::-;34834:37;;34876:33;34891:7;34900:8;34876:14;:33::i;:::-;34935:14;;:44;;;;;;-1:-1:-1;;;;;34935:44:0;;;;;;;;;;;;;;;34914:18;;34935:14;;;;;:25;;:44;;;;;;;;;;;;;;;:14;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;34935:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34935:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34935:44:0;;-1:-1:-1;34984:39:0;34935:44;35016:6;34984:19;:39::i;:::-;35028:16;35047:26;35059:5;;35047:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35066:6:0;;-1:-1:-1;35047:11:0;;-1:-1:-1;;35047:26:0:i;:::-;35028:45;;35078:43;35088:10;35100;;35078:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35112:8:0;;-1:-1:-1;35078:9:0;;-1:-1:-1;;35078:43:0:i;:::-;35188:12;35213:4;-1:-1:-1;;;;;35205:18:0;35224:5;;35205:25;;;;;30:3:-1;22:6;14;1:33;35205:25:0;;45:16:-1;;;-1:-1;35205:25:0;;-1:-1:-1;35205:25:0;;-1:-1:-1;;35205:25:0;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;35187:43:0;;;35243:7;35235:39;;;;;;;-1:-1:-1;;;;;35235:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35311:6;35284:34;35304:5;;35284:34;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;35284:34:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;35284:34:0;;;;-1:-1:-1;35284:34:0;;-1:-1:-1;;;;35284:34:0;34694:629;;;;;;;;;;:::o;36047:811::-;36159:52;;;;;;;;;;;;;-1:-1:-1;;;;;36159:52:0;;;;;;;;;;;;;;;;;;;;;;22:32:-1;26:21;;;22:32;6:49;;36159:52:0;;;;;;36149:63;;;;;;;;;36233:14;;-1:-1:-1;;;;;36233:59:0;;;;;;;;;;-1:-1:-1;;;;;36233:59:0;;;;;;36149:63;;36233:14;;:31;;:59;;;;;36159:52;;36233:59;;;;;:14;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;36233:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36233:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36233:59:0;36225:67;;36217:98;;;;;-1:-1:-1;;;;;36217:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36336:14;;:62;;;;;;-1:-1:-1;;;;;36336:62:0;;;;;;;-1:-1:-1;;;;;36336:62:0;;;;;;36322:11;;36336:14;;;;;:34;;:62;;;;;;;;;;;;;;;:14;:62;;;5:2:-1;;;;30:1;27;20:12;5:2;36336:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36336:62:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36336:62:0;;-1:-1:-1;36417:1:0;36411:7;;36403:40;;;;;-1:-1:-1;;;;;36403:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36463:3;36456:10;;;36448:58;;;;-1:-1:-1;;;;;36448:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36511:14;;:46;;;;;;-1:-1:-1;;;;;36511:46:0;;;;;;;:14;:46;;;;;;;;;;;;;;;:14;;;:25;;:46;;;;;:14;;:46;;;;;;:14;;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;36511:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36618:14:0;;:57;;;-1:-1:-1;;;;;36618:57:0;;-1:-1:-1;;;;;36618:57:0;;;;;;;-1:-1:-1;;;;;36618:57:0;;;;;;:14;;;;;-1:-1:-1;36618:29:0;;-1:-1:-1;36618:57:0;;;;;:14;;:57;;;;;;;:14;;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;36618:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36680:14:0;;:67;;;-1:-1:-1;;;;;36680:67:0;;-1:-1:-1;;;;;36680:67:0;;;;;;;36720:26;36680:67;;;;;;:14;;;;;-1:-1:-1;36680:29:0;;-1:-1:-1;36680:67:0;;;;;:14;;:67;;;;;;;:14;;:67;;;5:2:-1;;;;30:1;27;20:12;5:2;36680:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36680:67:0;;;;36752:50;36793:8;36752:40;:50::i;:::-;36812:41;;;-1:-1:-1;;;;;36812:41:0;;;;;;;;;;;;;;;;;;;;36047:811;;;;:::o;45793:338::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45928:20:0;;;;;;;;45920:67;;;;-1:-1:-1;;;;;45920:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45992:14;;:71;;;-1:-1:-1;;;;;45992:71:0;;-1:-1:-1;;;;;45992:71:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;45992:71:0;;;;;;;;:14;;;;;:32;;:71;;;;;:14;;:71;;;;;;;:14;;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;45992:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;46073:53:0;;;-1:-1:-1;;;;;;46073:53:0;;;;;;-1:-1:-1;;;;;46073:53:0;;;;-1:-1:-1;46073:53:0;;;-1:-1:-1;46073:53:0;;;;;;;;;45793:338;;;:::o;27254:676::-;27320:10;27364:2;27351;:9;:15;;27343:41;;;;;;;-1:-1:-1;;;;;27343:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27582:2:0;27574:11;27568:18;-1:-1:-1;;;;;27558:29:0;;27469:454::o;30630:835::-;-1:-1:-1;;;;;30720:21:0;;;;30712:54;;;;;-1:-1:-1;;;;;30712:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30785:21:0;;;;30777:54;;;;;-1:-1:-1;;;;;30777:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30842:13;;30866:531;29347:1;30886:29;;30866:531;;30954:14;;:43;;;;;;-1:-1:-1;;;;;30954:43:0;;;;;;;;;;;;;;;30937:14;;30954;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;30954:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30954:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30954:43:0;31036:14;;:49;;;;;;-1:-1:-1;;;;;31036:49:0;;;;;;;;;;;;;;;30954:43;;-1:-1:-1;31012:21:0;;31036:14;;;;;:37;;:49;;;;;30954:43;;31036:49;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;31036:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31036:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31036:49:0;31121:14;;:46;;;;;;-1:-1:-1;;;;;31121:46:0;;;;;;;;;;;;;;;31036:49;;-1:-1:-1;31100:18:0;;31121:14;;;;;:34;;:46;;;;;31036:49;;31121:46;;;;;;;:14;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;31121:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31121:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31121:46:0;;-1:-1:-1;;;;;;31245:17:0;;;;;;;:65;;;;;31266:44;31284:13;31299:10;31266:17;:44::i;:::-;31241:145;;;31342:4;31331:15;;31365:5;;;;;31241:145;-1:-1:-1;;;30917:3:0;;30866:531;;;;31415:8;31407:50;;;;;;;-1:-1:-1;;;;;31407:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30630:835;;;:::o;27983:322::-;28044:9;28087:1;28074:2;:9;:14;;28066:39;;;;;;;-1:-1:-1;;;;;28066:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28283:2:0;28275:11;28269:18;;28190:108::o;46346:376::-;46410:7;46424:13;46480:15;46498:18;46510:5;46498:11;:18::i;:::-;46480:36;-1:-1:-1;;;;;;;46525:29:0;;46537:17;46525:29;46521:180;;;46572:1;46564:9;;46521:180;;;-1:-1:-1;;;;;;46602:29:0;;46614:17;46602:29;;:61;;-1:-1:-1;;;;;;;46635:28:0;;46647:16;46635:28;46602:61;46598:103;;;46681:1;46673:9;;46598:103;-1:-1:-1;46712:5:0;46346:376;-1:-1:-1;;46346:376:0:o;28313:245::-;28448:1;28439:6;:10;28435:116;;;28474:14;;:45;;;;;;-1:-1:-1;;;;;28474:45:0;;;;;;;;;;;;;;;:14;;;;;:27;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;28474:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28474:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28474:45:0;28523:1;28474:50;;28466:73;;;;;-1:-1:-1;;;;;28466:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28627:280;-1:-1:-1;;;;;28723:14:0;;:8;:14;;;;;;;;;;;28714:23;;28706:51;;;;;-1:-1:-1;;;;;28706:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28809:3;28815:5;28809:11;28776:29;28789:6;28797:7;28776:12;:29::i;:::-;:44;;28768:70;;;;;-1:-1:-1;;;;;28768:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28876:14:0;;;:8;:14;;;;;;;;;;:23;28627:280::o;23316:415::-;23537:67;;23554:10;23537:67;;;;;;;23395:7;23537:67;;;;;;23583:4;23537:67;;;;;;;;;23395:7;;;;23554:10;23395:7;;23583:4;;23537:67;;23597:6;;23537:67;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;23537:67:0;;;;;-1:-1:-1;23537:67:0;;;26:21:-1;;;6:49;;23537:67:0;;;;;;23527:78;;;;;;;;;23666:16;;;;;;;;;;;;;;;;23649:43;;23527:78;;-1:-1:-1;;;;23537:67:0;;-1:-1:-1;23527:78:0;;-1:-1:-1;23649:43:0;;;;-1:-1:-1;23649:43:0;;23666:16;-1:-1:-1;23666:16:0;23649:43;23666:16;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;23649:43:0;;;;;-1:-1:-1;23649:43:0;;;26:21:-1;;;6:49;;23649:43:0;;;;;23639:54;;;;;;;;;23316:415;-1:-1:-1;;;;;;;23316:415:0:o;23739:320::-;-1:-1:-1;;;;;23856:25:0;;;;23848:57;;;;;-1:-1:-1;;;;;23848:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23916:21;23940:30;23948:9;23959:10;23940:7;:30::i;:::-;23916:54;-1:-1:-1;;;;;;23989:28:0;;;;;;;23981:70;;;;;-1:-1:-1;;;;;23981:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23739:320;;;;:::o;31653:846::-;31825:14;;:82;;;-1:-1:-1;;;;;31825:82:0;;-1:-1:-1;;;;;31825:82:0;;;;;;;;;;;;;31876:30;31825:82;;;;;;:14;;;;;:32;;:82;;;;;:14;;:82;;;;;;;:14;;:82;;;5:2:-1;;;;30:1;27;20:12;5:2;31825:82:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31918:14:0;;:91;;;-1:-1:-1;;;;;31918:91:0;;-1:-1:-1;;;;;31918:91:0;;;;;;;;;;;;;31969:39;31918:91;;;;;;:14;;;;;-1:-1:-1;31918:32:0;;-1:-1:-1;31918:91:0;;;;;:14;;:91;;;;;;;:14;;:91;;;5:2:-1;;;;30:1;27;20:12;5:2;31918:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32020:14:0;;:74;;;-1:-1:-1;;;;;32020:74:0;;-1:-1:-1;;;;;32020:74:0;;;;;;;;;;;;;32071:22;32020:74;;;;;;:14;;;;;-1:-1:-1;32020:32:0;;-1:-1:-1;32020:74:0;;;;;:14;;:74;;;;;;;:14;;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;32020:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;32202:9:0;;-1:-1:-1;;;32197:295:0;29347:1;32217:29;;32197:295;;32285:14;;:43;;;;;;-1:-1:-1;;;;;32285:43:0;;;;;;;;;;;;;;;32268:14;;32285;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;32285:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32285:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32285:43:0;;-1:-1:-1;;;;;;32347:20:0;;;32343:138;;32388:14;;:77;;;-1:-1:-1;;;;;32388:77:0;;-1:-1:-1;;;;;32388:77:0;;;;;;;;;;;;;;32438:26;32388:77;;;;;;:14;;;;;:32;;:77;;;;;:14;;:77;;;;;;;:14;;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;32388:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32388:77:0;;;;32343:138;-1:-1:-1;32248:3:0;;32197:295;;31473:172;31567:4;31610:3;31592:14;:21;;31591:46;;;;;31633:3;31619:11;:17;31591:46;31584:53;31473:172;-1:-1:-1;;;31473:172:0:o;20897:294::-;20955:7;20983:5;;;20975:14;;;;;;21058:9;21074:1;21070;:5;;;;;;;;;20897:294;-1:-1:-1;;;;20897:294:0:o;25061:1930::-;25202:16;;25139:7;;25222:2;25202:22;25198:74;;-1:-1:-1;25257:1:0;25241:19;;25198:74;25633:4;25618:20;;25612:27;25679:4;25664:20;;25658:27;25733:4;25718:20;;25712:27;25341:9;25704:36;26663:66;26650:79;;26646:129;;;26761:1;26746:17;;;;;;;26646:129;26791:1;:7;;26796:2;26791:7;;:18;;;;;26802:1;:7;;26807:2;26802:7;;26791:18;26787:68;;;26841:1;26826:17;;;;;;;26787:68;26959:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26959:24:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26959:24:0;;-1:-1:-1;;26959:24:0;;;25061:1930;-1:-1:-1;;;;;;;25061:1930:0:o
Swarm Source
bzzr://a672ffc44c5d53325af8909b3dea0d499df433ccf9f074a6c9de0a475f982ec2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.