More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 45 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Token Loan Cance... | 18766398 | 437 days ago | IN | 0 ETH | 0.00165877 | ||||
Create Loan Toke... | 18742088 | 441 days ago | IN | 0 ETH | 0.04840702 | ||||
Token Loan Cance... | 18677545 | 450 days ago | IN | 0 ETH | 0.00193468 | ||||
Create Loan Toke... | 18636604 | 455 days ago | IN | 0 ETH | 0.01741447 | ||||
Create Loan Toke... | 18636601 | 455 days ago | IN | 0 ETH | 0.0174117 | ||||
Create Loan Toke... | 18636585 | 455 days ago | IN | 0 ETH | 0.01800297 | ||||
Add Tokens | 18636563 | 455 days ago | IN | 0 ETH | 0.00302985 | ||||
Token Loan Offer... | 18636184 | 455 days ago | IN | 0 ETH | 0.00127467 | ||||
Create Loan Toke... | 18636163 | 455 days ago | IN | 0 ETH | 0.02873528 | ||||
Payback Token | 18636091 | 455 days ago | IN | 0 ETH | 0.01803779 | ||||
Activate Loan To... | 18635969 | 455 days ago | IN | 0 ETH | 0.03403007 | ||||
Create Loan Toke... | 18635945 | 455 days ago | IN | 0 ETH | 0.02494819 | ||||
Add Tokens | 18635811 | 455 days ago | IN | 0 ETH | 0.03743918 | ||||
Diamond Cut | 18629195 | 456 days ago | IN | 0 ETH | 0.03477416 | ||||
Diamond Cut | 18629182 | 456 days ago | IN | 0 ETH | 0.00913845 | ||||
Diamond Cut | 18622173 | 457 days ago | IN | 0 ETH | 0.03243231 | ||||
Diamond Cut | 18621793 | 457 days ago | IN | 0 ETH | 0.01294809 | ||||
Activate Loan To... | 18618475 | 458 days ago | IN | 0 ETH | 0.0116867 | ||||
Create Loan Toke... | 18618464 | 458 days ago | IN | 0 ETH | 0.01462946 | ||||
Create Loan Toke... | 18613402 | 459 days ago | IN | 0 ETH | 0.01628095 | ||||
Approve Collater... | 18612482 | 459 days ago | IN | 0 ETH | 0.00158261 | ||||
Activate Loan To... | 18590054 | 462 days ago | IN | 0 ETH | 0.00806083 | ||||
Create Loan Toke... | 18590048 | 462 days ago | IN | 0 ETH | 0.01004503 | ||||
Activate Loan To... | 18589868 | 462 days ago | IN | 0 ETH | 0.01164328 | ||||
Create Loan Toke... | 18585431 | 462 days ago | IN | 0 ETH | 0.03007774 |
Latest 5 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18635811 | 455 days ago | Contract Creation | 0 ETH | |||
18568278 | 465 days ago | Contract Creation | 0 ETH | |||
18561513 | 466 days ago | Contract Creation | 0 ETH | |||
18561513 | 466 days ago | Contract Creation | 0 ETH | |||
18561513 | 466 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Diamond
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /******************************************************************************\ * Authors: Nick Mudge (https://twitter.com/mudgen) * * Implementation of a diamond. /******************************************************************************/ import {LibDiamond} from "./libraries/LibDiamond.sol"; import {DiamondCutFacet} from "./facets/DiamondCutFacet.sol"; import {DiamondLoupeFacet} from "./facets/DiamondLoupeFacet.sol"; import {OwnershipFacet} from "./facets/OwnershipFacet.sol"; contract Diamond { constructor(address _contractOwner) { LibDiamond.setContractOwner(_contractOwner); LibDiamond.addDiamondFunctions( address(new DiamondCutFacet()), address(new DiamondLoupeFacet()), address(new OwnershipFacet()) ); } // Find facet for function that is called and execute the // function if a facet is found and return any value. fallback() external payable { LibDiamond.DiamondStorage storage ds; bytes32 position = LibDiamond.DIAMOND_STORAGE_POSITION; assembly { ds.slot := position } address facet = ds.selectorToFacetAndPosition[msg.sig].facetAddress; require(facet != address(0), "Diamond: Function does not exist"); assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), facet, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /******************************************************************************\ * Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen) * EIP-2535 Diamond Standard: https://eips.ethereum.org/EIPS/eip-2535 /******************************************************************************/ import {IDiamondCut} from "../interfaces/IDiamondCut.sol"; import {LibDiamond} from "../libraries/LibDiamond.sol"; contract DiamondCutFacet is IDiamondCut { /// @notice Add/replace/remove any number of functions and optionally execute /// a function with delegatecall /// @param _diamondCut Contains the facet addresses and function selectors /// @param _init The address of the contract or facet to execute _calldata /// @param _calldata A function call, including function selector and arguments /// _calldata is executed with delegatecall on _init function diamondCut( FacetCut[] calldata _diamondCut, address _init, bytes calldata _calldata ) external override { LibDiamond.enforceIsContractOwner(); LibDiamond.diamondCut(_diamondCut, _init, _calldata); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /******************************************************************************\ * Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen) * EIP-2535 Diamond Standard: https://eips.ethereum.org/EIPS/eip-2535 /******************************************************************************/ import {LibDiamond} from "../libraries/LibDiamond.sol"; import {IDiamondLoupe} from "../interfaces/IDiamondLoupe.sol"; import {IERC165} from "../interfaces/IERC165.sol"; contract DiamondLoupeFacet is IDiamondLoupe, IERC165 { // Diamond Loupe Functions //////////////////////////////////////////////////////////////////// /// These functions are expected to be called frequently by tools. // // struct Facet { // address facetAddress; // bytes4[] functionSelectors; // } /// @notice Gets all facets and their selectors. /// @return facets_ Facet function facets() external view override returns (Facet[] memory facets_) { LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage(); uint256 numFacets = ds.facetAddresses.length; facets_ = new Facet[](numFacets); for (uint256 i; i < numFacets; i++) { address facetAddress_ = ds.facetAddresses[i]; facets_[i].facetAddress = facetAddress_; facets_[i].functionSelectors = ds .facetFunctionSelectors[facetAddress_] .functionSelectors; } } /// @notice Gets all the function selectors provided by a facet. /// @param _facet The facet address. /// @return facetFunctionSelectors_ function facetFunctionSelectors( address _facet ) external view override returns (bytes4[] memory facetFunctionSelectors_) { LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage(); facetFunctionSelectors_ = ds .facetFunctionSelectors[_facet] .functionSelectors; } /// @notice Get all the facet addresses used by a diamond. /// @return facetAddresses_ function facetAddresses() external view override returns (address[] memory facetAddresses_) { LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage(); facetAddresses_ = ds.facetAddresses; } /// @notice Gets the facet that supports the given selector. /// @dev If facet is not found return address(0). /// @param _functionSelector The function selector. /// @return facetAddress_ The facet address. function facetAddress( bytes4 _functionSelector ) external view override returns (address facetAddress_) { LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage(); facetAddress_ = ds .selectorToFacetAndPosition[_functionSelector] .facetAddress; } // This implements ERC-165. function supportsInterface( bytes4 _interfaceId ) external view override returns (bool) { LibDiamond.DiamondStorage storage ds = LibDiamond.diamondStorage(); return ds.supportedInterfaces[_interfaceId]; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import {LibDiamond} from "../libraries/LibDiamond.sol"; import {IERC173} from "../interfaces/IERC173.sol"; contract OwnershipFacet is IERC173 { function transferOwnership(address _newOwner) external override { LibDiamond.enforceIsContractOwner(); require(_newOwner != address(0x0), "GTM: null address error"); LibDiamond.setContractOwner(_newOwner); } function owner() external view override returns (address owner_) { owner_ = LibDiamond.contractOwner(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /******************************************************************************\ * Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen) /******************************************************************************/ interface IDiamondCut { enum FacetCutAction { Add, Replace, Remove } struct FacetCut { address facetAddress; FacetCutAction action; bytes4[] functionSelectors; } /// @notice Add/replace/remove any number of functions and optionally execute /// a function with delegatecall /// @param _diamondCut Contains the facet addresses and function selectors /// @param _init The address of the contract or facet to execute _calldata /// @param _calldata A function call, including function selector and arguments /// _calldata is executed with delegatecall on _init function diamondCut( FacetCut[] calldata _diamondCut, address _init, bytes calldata _calldata ) external; event DiamondCut(FacetCut[] _diamondCut, address _init, bytes _calldata); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; // A loupe is a small magnifying glass used to look at diamonds. // These functions look at diamonds interface IDiamondLoupe { /// These functions are expected to be called frequently /// by tools. struct Facet { address facetAddress; bytes4[] functionSelectors; } /// @notice Gets all facet addresses and their four byte function selectors. /// @return facets_ Facet function facets() external view returns (Facet[] memory facets_); /// @notice Gets all the function selectors supported by a specific facet. /// @param _facet The facet address. /// @return facetFunctionSelectors_ function facetFunctionSelectors( address _facet ) external view returns (bytes4[] memory facetFunctionSelectors_); /// @notice Get all the facet addresses used by a diamond. /// @return facetAddresses_ function facetAddresses() external view returns (address[] memory facetAddresses_); /// @notice Gets the facet that supports the given selector. /// @dev If facet is not found return address(0). /// @param _functionSelector The function selector. /// @return facetAddress_ The facet address. function facetAddress( bytes4 _functionSelector ) external view returns (address facetAddress_); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; interface IERC165 { /// @notice Query if a contract implements an interface /// @param interfaceId The interface identifier, as specified in ERC-165 /// @dev Interface identification is specified in ERC-165. This function /// uses less than 30,000 gas. /// @return `true` if the contract implements `interfaceID` and /// `interfaceID` is not 0xffffffff, `false` otherwise function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /// @title ERC-173 Contract Ownership Standard /// Note: the ERC-165 identifier for this interface is 0x7f5828d0 /* is ERC165 */ interface IERC173 { /// @notice Get the address of the owner /// @return owner_ The address of the owner. function owner() external view returns (address owner_); /// @notice Set the address of the new owner of the contract /// @dev Set _newOwner to address(0) to renounce any ownership. /// @param _newOwner The address of the new owner of the contract function transferOwnership(address _newOwner) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /******************************************************************************\ * Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen) * EIP-2535 Diamond Standard: https://eips.ethereum.org/EIPS/eip-2535 /******************************************************************************/ import {IDiamondCut} from "../interfaces/IDiamondCut.sol"; import {IDiamondLoupe} from "../interfaces/IDiamondLoupe.sol"; import {IERC165} from "../interfaces/IERC165.sol"; import {IERC173} from "../interfaces/IERC173.sol"; import {LibMeta} from "./LibMeta.sol"; library LibDiamond { bytes32 constant DIAMOND_STORAGE_POSITION = keccak256("diamond.standard.diamond.storage"); struct FacetAddressAndPosition { address facetAddress; uint16 functionSelectorPosition; // position in facetFunctionSelectors.functionSelectors array } struct FacetFunctionSelectors { bytes4[] functionSelectors; uint16 facetAddressPosition; // position of facetAddress in facetAddresses array } struct DiamondStorage { // maps function selector to the facet address and // the position of the selector in the facetFunctionSelectors.selectors array mapping(bytes4 => FacetAddressAndPosition) selectorToFacetAndPosition; // maps facet addresses to function selectors mapping(address => FacetFunctionSelectors) facetFunctionSelectors; // facet addresses address[] facetAddresses; // Used to query if a contract implements an interface. // Used to implement ERC-165. mapping(bytes4 => bool) supportedInterfaces; // owner of the contract address contractOwner; } function diamondStorage() internal pure returns (DiamondStorage storage ds) { bytes32 position = DIAMOND_STORAGE_POSITION; assembly { ds.slot := position } } event OwnershipTransferredDiamond( address indexed previousOwner, address indexed newOwner ); function setContractOwner(address _newOwner) internal { DiamondStorage storage ds = diamondStorage(); address previousOwner = ds.contractOwner; ds.contractOwner = _newOwner; emit OwnershipTransferredDiamond(previousOwner, _newOwner); } function contractOwner() internal view returns (address contractOwner_) { contractOwner_ = diamondStorage().contractOwner; } function enforceIsContractOwner() internal view { require( LibMeta._msgSender() == diamondStorage().contractOwner, "LibDiamond: Must be contract owner" ); } event DiamondCut( IDiamondCut.FacetCut[] _diamondCut, address _init, bytes _calldata ); function addDiamondFunctions( address _diamondCutFacet, address _diamondLoupeFacet, address _ownershipFacet ) internal { IDiamondCut.FacetCut[] memory cut = new IDiamondCut.FacetCut[](3); bytes4[] memory functionSelectors = new bytes4[](1); functionSelectors[0] = IDiamondCut.diamondCut.selector; cut[0] = IDiamondCut.FacetCut({ facetAddress: _diamondCutFacet, action: IDiamondCut.FacetCutAction.Add, functionSelectors: functionSelectors }); functionSelectors = new bytes4[](5); functionSelectors[0] = IDiamondLoupe.facets.selector; functionSelectors[1] = IDiamondLoupe.facetFunctionSelectors.selector; functionSelectors[2] = IDiamondLoupe.facetAddresses.selector; functionSelectors[3] = IDiamondLoupe.facetAddress.selector; functionSelectors[4] = IERC165.supportsInterface.selector; cut[1] = IDiamondCut.FacetCut({ facetAddress: _diamondLoupeFacet, action: IDiamondCut.FacetCutAction.Add, functionSelectors: functionSelectors }); functionSelectors = new bytes4[](2); functionSelectors[0] = IERC173.transferOwnership.selector; functionSelectors[1] = IERC173.owner.selector; cut[2] = IDiamondCut.FacetCut({ facetAddress: _ownershipFacet, action: IDiamondCut.FacetCutAction.Add, functionSelectors: functionSelectors }); diamondCut(cut, address(0), ""); } // Internal function version of diamondCut function diamondCut( IDiamondCut.FacetCut[] memory _diamondCut, address _init, bytes memory _calldata ) internal { for ( uint256 facetIndex; facetIndex < _diamondCut.length; facetIndex++ ) { IDiamondCut.FacetCutAction action = _diamondCut[facetIndex].action; if (action == IDiamondCut.FacetCutAction.Add) { addFunctions( _diamondCut[facetIndex].facetAddress, _diamondCut[facetIndex].functionSelectors ); } else if (action == IDiamondCut.FacetCutAction.Replace) { replaceFunctions( _diamondCut[facetIndex].facetAddress, _diamondCut[facetIndex].functionSelectors ); } else if (action == IDiamondCut.FacetCutAction.Remove) { removeFunctions( _diamondCut[facetIndex].facetAddress, _diamondCut[facetIndex].functionSelectors ); } else { revert("LibDiamondCut: Incorrect FacetCutAction"); } } emit DiamondCut(_diamondCut, _init, _calldata); initializeDiamondCut(_init, _calldata); } function addFunctions( address _facetAddress, bytes4[] memory _functionSelectors ) internal { require( _functionSelectors.length > 0, "LibDiamondCut: No selectors in facet to cut" ); DiamondStorage storage ds = diamondStorage(); // uint16 selectorCount = uint16(diamondStorage().selectors.length); require( _facetAddress != address(0), "LibDiamondCut: Add facet can't be address(0)" ); uint16 selectorPosition = uint16( ds.facetFunctionSelectors[_facetAddress].functionSelectors.length ); // add new facet address if it does not exist if (selectorPosition == 0) { enforceHasContractCode( _facetAddress, "LibDiamondCut: New facet has no code" ); ds .facetFunctionSelectors[_facetAddress] .facetAddressPosition = uint16(ds.facetAddresses.length); ds.facetAddresses.push(_facetAddress); } for ( uint256 selectorIndex; selectorIndex < _functionSelectors.length; selectorIndex++ ) { bytes4 selector = _functionSelectors[selectorIndex]; address oldFacetAddress = ds .selectorToFacetAndPosition[selector] .facetAddress; require( oldFacetAddress == address(0), "LibDiamondCut: Can't add function that already exists" ); ds.facetFunctionSelectors[_facetAddress].functionSelectors.push( selector ); ds .selectorToFacetAndPosition[selector] .facetAddress = _facetAddress; ds .selectorToFacetAndPosition[selector] .functionSelectorPosition = selectorPosition; selectorPosition++; } } function replaceFunctions( address _facetAddress, bytes4[] memory _functionSelectors ) internal { require( _functionSelectors.length > 0, "LibDiamondCut: No selectors in facet to cut" ); DiamondStorage storage ds = diamondStorage(); require( _facetAddress != address(0), "LibDiamondCut: Add facet can't be address(0)" ); uint16 selectorPosition = uint16( ds.facetFunctionSelectors[_facetAddress].functionSelectors.length ); // add new facet address if it does not exist if (selectorPosition == 0) { enforceHasContractCode( _facetAddress, "LibDiamondCut: New facet has no code" ); ds .facetFunctionSelectors[_facetAddress] .facetAddressPosition = uint16(ds.facetAddresses.length); ds.facetAddresses.push(_facetAddress); } for ( uint256 selectorIndex; selectorIndex < _functionSelectors.length; selectorIndex++ ) { bytes4 selector = _functionSelectors[selectorIndex]; address oldFacetAddress = ds .selectorToFacetAndPosition[selector] .facetAddress; require( oldFacetAddress != _facetAddress, "LibDiamondCut: Can't replace function with same function" ); removeFunction(oldFacetAddress, selector); // add function ds .selectorToFacetAndPosition[selector] .functionSelectorPosition = selectorPosition; ds.facetFunctionSelectors[_facetAddress].functionSelectors.push( selector ); ds .selectorToFacetAndPosition[selector] .facetAddress = _facetAddress; selectorPosition++; } } function removeFunctions( address _facetAddress, bytes4[] memory _functionSelectors ) internal { require( _functionSelectors.length > 0, "LibDiamondCut: No selectors in facet to cut" ); DiamondStorage storage ds = diamondStorage(); // if function does not exist then do nothing and return require( _facetAddress == address(0), "LibDiamondCut: Remove facet address must be address(0)" ); for ( uint256 selectorIndex; selectorIndex < _functionSelectors.length; selectorIndex++ ) { bytes4 selector = _functionSelectors[selectorIndex]; address oldFacetAddress = ds .selectorToFacetAndPosition[selector] .facetAddress; removeFunction(oldFacetAddress, selector); } } function removeFunction(address _facetAddress, bytes4 _selector) internal { DiamondStorage storage ds = diamondStorage(); require( _facetAddress != address(0), "LibDiamondCut: Can't remove function that doesn't exist" ); // an immutable function is a function defined directly in a diamond require( _facetAddress != address(this), "LibDiamondCut: Can't remove immutable function" ); // replace selector with last selector, then delete last selector uint256 selectorPosition = ds .selectorToFacetAndPosition[_selector] .functionSelectorPosition; uint256 lastSelectorPosition = ds .facetFunctionSelectors[_facetAddress] .functionSelectors .length - 1; // if not the same then replace _selector with lastSelector if (selectorPosition != lastSelectorPosition) { bytes4 lastSelector = ds .facetFunctionSelectors[_facetAddress] .functionSelectors[lastSelectorPosition]; ds.facetFunctionSelectors[_facetAddress].functionSelectors[ selectorPosition ] = lastSelector; ds .selectorToFacetAndPosition[lastSelector] .functionSelectorPosition = uint16(selectorPosition); } // delete the last selector ds.facetFunctionSelectors[_facetAddress].functionSelectors.pop(); delete ds.selectorToFacetAndPosition[_selector]; // if no more selectors for facet address then delete the facet address if (lastSelectorPosition == 0) { // replace facet address with last facet address and delete last facet address uint256 lastFacetAddressPosition = ds.facetAddresses.length - 1; uint256 facetAddressPosition = ds .facetFunctionSelectors[_facetAddress] .facetAddressPosition; if (facetAddressPosition != lastFacetAddressPosition) { address lastFacetAddress = ds.facetAddresses[ lastFacetAddressPosition ]; ds.facetAddresses[facetAddressPosition] = lastFacetAddress; ds .facetFunctionSelectors[lastFacetAddress] .facetAddressPosition = uint16(facetAddressPosition); } ds.facetAddresses.pop(); delete ds .facetFunctionSelectors[_facetAddress] .facetAddressPosition; } } function initializeDiamondCut( address _init, bytes memory _calldata ) internal { if (_init == address(0)) { require( _calldata.length == 0, "LibDiamondCut: _init is address(0) but_calldata is not empty" ); } else { require( _calldata.length > 0, "LibDiamondCut: _calldata is empty but _init is not address(0)" ); if (_init != address(this)) { enforceHasContractCode( _init, "LibDiamondCut: _init address has no code" ); } (bool success, bytes memory error) = _init.delegatecall(_calldata); if (success == false) { if (error.length > 0) { // bubble up the error revert(string(error)); } else { revert("LibDiamondCut: _init function reverted"); } } } } function enforceHasContractCode( address _contract, string memory _errorMessage ) internal view { uint256 contractSize; assembly { contractSize := extcodesize(_contract) } require(contractSize != 0, _errorMessage); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; library LibMeta { function _msgSender() internal view returns (address) { return msg.sender; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_contractOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004d9f38038062004d9f833981016040819052620000349162001500565b6200004a81620000ea60201b620000af1760201c565b620000e36040516200005c90620014d6565b604051809103906000f08015801562000079573d6000803e3d6000fd5b506040516200008890620014e4565b604051809103906000f080158015620000a5573d6000803e3d6000fd5b50604051620000b490620014f2565b604051809103906000f080158015620000d1573d6000803e3d6000fd5b506200016e60201b620001321760201c565b506200177e565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b0384811691821790935560405160008051602062004cf3833981519152939092169182907f9b363ab62ae420e413b470255847b66115b39866862db4084a593eef2d9f724290600090a3505050565b60408051600380825260808201909252600091816020015b60408051606080820183526000808352602083015291810191909152815260200190600190039081620001865750506040805160018082528183019092529192506000919060208083019080368337019050509050631f931c1c60e01b81600081518110620001f957620001f962001532565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b03871681529081016000815260200182815250826000815181106200024c576200024c62001532565b602090810291909101015260408051600580825260c0820190925290816020016020820280368337019050509050637a0ed62760e01b8160008151811062000298576200029862001532565b6001600160e01b03199092166020928302919091019091015280516356fe50af60e11b9082906001908110620002d257620002d262001532565b6001600160e01b03199092166020928302919091019091015280516314bbdacb60e21b90829060029081106200030c576200030c62001532565b6001600160e01b03199092166020928302919091019091015280516366ffd66360e11b908290600390811062000346576200034662001532565b6001600160e01b03199092166020928302919091019091015280516301ffc9a760e01b908290600490811062000380576200038062001532565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b0386168152908101600081526020018281525082600181518110620003d357620003d362001532565b6020908102919091010152604080516002808252606082019092529081602001602082028036833701905050905063f2fde38b60e01b816000815181106200041f576200041f62001532565b6001600160e01b0319909216602092830291909101909101528051638da5cb5b60e01b908290600190811062000459576200045962001532565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b0385168152908101600081526020018281525082600281518110620004ac57620004ac62001532565b6020026020010181905250620004da82600060405180602001604052806000815250620004e160201b60201c565b5050505050565b60005b8351811015620006f057600084828151811062000505576200050562001532565b60200260200101516020015190506000600281111562000529576200052962001548565b8160028111156200053e576200053e62001548565b14156200059d57620005978583815181106200055e576200055e62001532565b6020026020010151600001518684815181106200057f576200057f62001532565b6020026020010151604001516200073f60201b60201c565b620006da565b6001816002811115620005b457620005b462001548565b14156200060d5762000597858381518110620005d457620005d462001532565b602002602001015160000151868481518110620005f557620005f562001532565b60200260200101516040015162000a2060201b60201c565b600281600281111562000624576200062462001548565b14156200067d576200059785838151811062000644576200064462001532565b60200260200101516000015186848151811062000665576200066562001532565b60200260200101516040015162000d2560201b60201c565b60405162461bcd60e51b815260206004820152602760248201527f4c69624469616d6f6e644375743a20496e636f727265637420466163657443756044820152663a20b1ba34b7b760c91b60648201526084015b60405180910390fd5b5080620006e78162001574565b915050620004e4565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb6738383836040516200072693929190620015ef565b60405180910390a16200073a828262000e8a565b505050565b6000815111620007955760405162461bcd60e51b815260206004820152602b602482015260008051602062004d7f83398151915260448201526a1858d95d081d1bc818dd5d60aa1b6064820152608401620006d1565b60008051602062004cf38339815191526001600160a01b038316620008015760405162461bcd60e51b815260206004820152602c602482015260008051602062004d3b83398151915260448201526b65206164647265737328302960a01b6064820152608401620006d1565b6001600160a01b038316600090815260018201602052604090205461ffff8116620008a7576200084b8460405180606001604052806024815260200162004d5b60249139620010aa565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b8351811015620004da576000848281518110620008cb57620008cb62001532565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b03168015620009735760405162461bcd60e51b815260206004820152603560248201527f4c69624469616d6f6e644375743a2043616e2774206164642066756e6374696f60448201527f6e207468617420616c72656164792065786973747300000000000000000000006064820152608401620006d1565b6001600160a01b03871660008181526001878101602090815260408084208054938401815584528184206008840401805463ffffffff60079095166004026101000a948502191660e089901c94909402939093179092556001600160e01b031986168352889052902080546001600160b01b031916909117600160a01b61ffff8716021790558362000a0581620016f6565b9450505050808062000a179062001574565b915050620008aa565b600081511162000a765760405162461bcd60e51b815260206004820152602b602482015260008051602062004d7f83398151915260448201526a1858d95d081d1bc818dd5d60aa1b6064820152608401620006d1565b60008051602062004cf38339815191526001600160a01b03831662000ae25760405162461bcd60e51b815260206004820152602c602482015260008051602062004d3b83398151915260448201526b65206164647265737328302960a01b6064820152608401620006d1565b6001600160a01b038316600090815260018201602052604090205461ffff811662000b885762000b2c8460405180606001604052806024815260200162004d5b60249139620010aa565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b8351811015620004da57600084828151811062000bac5762000bac62001532565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b0390811690871681141562000c5a5760405162461bcd60e51b815260206004820152603860248201527f4c69624469616d6f6e644375743a2043616e2774207265706c6163652066756e60448201527f6374696f6e20776974682073616d652066756e6374696f6e00000000000000006064820152608401620006d1565b62000c668183620010ce565b6001600160e01b03198216600081815260208781526040808320805461ffff60a01b1916600160a01b61ffff8b16021781556001600160a01b038c168085526001808c0185529285208054938401815585528385206008840401805463ffffffff60079095166004026101000a948502191660e08a901c94909402939093179092559390925287905281546001600160a01b0319161790558362000d0a81620016f6565b9450505050808062000d1c9062001574565b91505062000b8b565b600081511162000d7b5760405162461bcd60e51b815260206004820152602b602482015260008051602062004d7f83398151915260448201526a1858d95d081d1bc818dd5d60aa1b6064820152608401620006d1565b60008051602062004cf38339815191526001600160a01b0383161562000e0a5760405162461bcd60e51b815260206004820152603660248201527f4c69624469616d6f6e644375743a2052656d6f7665206661636574206164647260448201527f657373206d7573742062652061646472657373283029000000000000000000006064820152608401620006d1565b60005b825181101562000e8457600083828151811062000e2e5762000e2e62001532565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b031662000e6c8183620010ce565b5050808062000e7b9062001574565b91505062000e0d565b50505050565b6001600160a01b03821662000f145780511562000f105760405162461bcd60e51b815260206004820152603c60248201527f4c69624469616d6f6e644375743a205f696e697420697320616464726573732860448201527f3029206275745f63616c6c64617461206973206e6f7420656d707479000000006064820152608401620006d1565b5050565b600081511162000f8d5760405162461bcd60e51b815260206004820152603d60248201527f4c69624469616d6f6e644375743a205f63616c6c6461746120697320656d707460448201527f7920627574205f696e6974206973206e6f7420616464726573732830290000006064820152608401620006d1565b6001600160a01b038216301462000fc35762000fc38260405180606001604052806028815260200162004d1360289139620010aa565b600080836001600160a01b03168360405162000fe091906200171b565b600060405180830381855af49150503d80600081146200101d576040519150601f19603f3d011682016040523d82523d6000602084013e62001022565b606091505b5090925090508162000e845780511562001052578060405162461bcd60e51b8152600401620006d1919062001739565b60405162461bcd60e51b815260206004820152602660248201527f4c69624469616d6f6e644375743a205f696e69742066756e6374696f6e2072656044820152651d995c9d195960d21b6064820152608401620006d1565b813b818162000e845760405162461bcd60e51b8152600401620006d1919062001739565b60008051602062004cf38339815191526001600160a01b0383166200115c5760405162461bcd60e51b815260206004820152603760248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f76652066756e6360448201527f74696f6e207468617420646f65736e27742065786973740000000000000000006064820152608401620006d1565b6001600160a01b038316301415620011ce5760405162461bcd60e51b815260206004820152602e60248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f766520696d6d7560448201526d3a30b1363290333ab731ba34b7b760911b6064820152608401620006d1565b6001600160e01b03198216600090815260208281526040808320546001600160a01b0387168452600180860190935290832054600160a01b90910461ffff1692916200121a916200174e565b90508082146200130d576001600160a01b0385166000908152600184016020526040812080548390811062001253576200125362001532565b600091825260208083206008830401546001600160a01b038a168452600188019091526040909220805460079092166004026101000a90920460e01b925082919085908110620012a757620012a762001532565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b031992909216825284905260409020805461ffff60a01b1916600160a01b61ffff8516021790555b6001600160a01b0385166000908152600184016020526040902080548062001339576200133962001768565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b0319861682528490526040902080546001600160b01b031916905580620004da576002830154600090620013a8906001906200174e565b6001600160a01b038716600090815260018087016020526040909120015490915061ffff168082146200146e576000856002018381548110620013ef57620013ef62001532565b6000918252602090912001546002870180546001600160a01b03909216925082918490811062001423576200142362001532565b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018781019092526040902001805461ffff191661ffff83161790555b8460020180548062001484576200148462001768565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03891682526001878101909152604090912001805461ffff1916905550505050505050565b6115db8062002dac83390190565b6106b0806200438783390190565b6102bc8062004a3783390190565b6000602082840312156200151357600080fd5b81516001600160a01b03811681146200152b57600080fd5b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200158b576200158b6200155e565b5060010190565b60005b83811015620015af57818101518382015260200162001595565b8381111562000e845750506000910152565b60008151808452620015db81602086016020860162001592565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b84811015620016c457898403607f19018652815180516001600160a01b031685528381015189860190600381106200166057634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b80831015620016ae5783516001600160e01b031916825292860192600192909201919086019062001682565b5097850197955050509082019060010162001618565b50506001600160a01b038a16908801528681036040880152620016e88189620015c1565b9a9950505050505050505050565b600061ffff808316818114156200171157620017116200155e565b6001019392505050565b600082516200172f81846020870162001592565b9190910192915050565b6020815260006200152b6020830184620015c1565b6000828210156200176357620017636200155e565b500390565b634e487b7160e01b600052603160045260246000fd5b61161e806200178e6000396000f3fe60806040908152600080356001600160e01b031916815260008051602061157d83398151915260208190529190205481906001600160a01b03168061008b5760405162461bcd60e51b815260206004820181905260248201527f4469616d6f6e643a2046756e6374696f6e20646f6573206e6f7420657869737460448201526064015b60405180910390fd5b3660008037600080366000845af43d6000803e8080156100aa573d6000f35b3d6000fd5b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b0384811691821790935560405160008051602061157d833981519152939092169182907f9b363ab62ae420e413b470255847b66115b39866862db4084a593eef2d9f724290600090a3505050565b60408051600380825260808201909252600091816020015b6040805160608082018352600080835260208301529181019190915281526020019060019003908161014a5750506040805160018082528183019092529192506000919060208083019080368337019050509050631f931c1c60e01b816000815181106101b9576101b96112ab565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b0387168152908101600081526020018281525082600081518110610209576102096112ab565b602090810291909101015260408051600580825260c0820190925290816020016020820280368337019050509050637a0ed62760e01b81600081518110610252576102526112ab565b6001600160e01b03199092166020928302919091019091015280516356fe50af60e11b9082906001908110610289576102896112ab565b6001600160e01b03199092166020928302919091019091015280516314bbdacb60e21b90829060029081106102c0576102c06112ab565b6001600160e01b03199092166020928302919091019091015280516366ffd66360e11b90829060039081106102f7576102f76112ab565b6001600160e01b03199092166020928302919091019091015280516301ffc9a760e01b908290600490811061032e5761032e6112ab565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b038616815290810160008152602001828152508260018151811061037e5761037e6112ab565b6020908102919091010152604080516002808252606082019092529081602001602082028036833701905050905063f2fde38b60e01b816000815181106103c7576103c76112ab565b6001600160e01b0319909216602092830291909101909101528051638da5cb5b60e01b90829060019081106103fe576103fe6112ab565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b038516815290810160008152602001828152508260028151811061044e5761044e6112ab565b60200260200101819052506104748260006040518060200160405280600081525061047b565b5050505050565b60005b835181101561064457600084828151811061049b5761049b6112ab565b6020026020010151602001519050600060028111156104bc576104bc6112c1565b8160028111156104ce576104ce6112c1565b141561051d576105188583815181106104e9576104e96112ab565b602002602001015160000151868481518110610507576105076112ab565b60200260200101516040015161068f565b610631565b6001816002811115610531576105316112c1565b141561057b5761051885838151811061054c5761054c6112ab565b60200260200101516000015186848151811061056a5761056a6112ab565b6020026020010151604001516108ed565b600281600281111561058f5761058f6112c1565b14156105d9576105188583815181106105aa576105aa6112ab565b6020026020010151600001518684815181106105c8576105c86112ab565b602002602001015160400151610b75565b60405162461bcd60e51b815260206004820152602760248201527f4c69624469616d6f6e644375743a20496e636f727265637420466163657443756044820152663a20b1ba34b7b760c91b6064820152608401610082565b508061063c816112ed565b91505061047e565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb67383838360405161067893929190611360565b60405180910390a161068a8282610c92565b505050565b60008151116106b05760405162461bcd60e51b815260040161008290611460565b60008051602061157d8339815191526001600160a01b0383166106e55760405162461bcd60e51b8152600401610082906114ab565b6001600160a01b038316600090815260018201602052604090205461ffff81166107875761072b846040518060600160405280602481526020016115c560249139610ea0565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b83518110156104745760008482815181106107a7576107a76112ab565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b031680156108455760405162461bcd60e51b815260206004820152603560248201527f4c69624469616d6f6e644375743a2043616e2774206164642066756e6374696f6044820152746e207468617420616c72656164792065786973747360581b6064820152608401610082565b6001600160a01b03871660008181526001878101602090815260408084208054938401815584528184206008840401805463ffffffff60079095166004026101000a948502191660e089901c94909402939093179092556001600160e01b031986168352889052902080546001600160b01b031916909117600160a01b61ffff871602179055836108d5816114f7565b945050505080806108e5906112ed565b91505061078a565b600081511161090e5760405162461bcd60e51b815260040161008290611460565b60008051602061157d8339815191526001600160a01b0383166109435760405162461bcd60e51b8152600401610082906114ab565b6001600160a01b038316600090815260018201602052604090205461ffff81166109e557610989846040518060600160405280602481526020016115c560249139610ea0565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b8351811015610474576000848281518110610a0557610a056112ab565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b03908116908716811415610ab15760405162461bcd60e51b815260206004820152603860248201527f4c69624469616d6f6e644375743a2043616e2774207265706c6163652066756e60448201527f6374696f6e20776974682073616d652066756e6374696f6e00000000000000006064820152608401610082565b610abb8183610ec1565b6001600160e01b03198216600081815260208781526040808320805461ffff60a01b1916600160a01b61ffff8b16021781556001600160a01b038c168085526001808c0185529285208054938401815585528385206008840401805463ffffffff60079095166004026101000a948502191660e08a901c94909402939093179092559390925287905281546001600160a01b03191617905583610b5d816114f7565b94505050508080610b6d906112ed565b9150506109e8565b6000815111610b965760405162461bcd60e51b815260040161008290611460565b60008051602061157d8339815191526001600160a01b03831615610c1b5760405162461bcd60e51b815260206004820152603660248201527f4c69624469616d6f6e644375743a2052656d6f76652066616365742061646472604482015275657373206d757374206265206164647265737328302960501b6064820152608401610082565b60005b8251811015610c8c576000838281518110610c3b57610c3b6112ab565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b0316610c778183610ec1565b50508080610c84906112ed565b915050610c1e565b50505050565b6001600160a01b038216610d1957805115610d155760405162461bcd60e51b815260206004820152603c60248201527f4c69624469616d6f6e644375743a205f696e697420697320616464726573732860448201527f3029206275745f63616c6c64617461206973206e6f7420656d707479000000006064820152608401610082565b5050565b6000815111610d905760405162461bcd60e51b815260206004820152603d60248201527f4c69624469616d6f6e644375743a205f63616c6c6461746120697320656d707460448201527f7920627574205f696e6974206973206e6f7420616464726573732830290000006064820152608401610082565b6001600160a01b0382163014610dc257610dc28260405180606001604052806028815260200161159d60289139610ea0565b600080836001600160a01b031683604051610ddd9190611519565b600060405180830381855af49150503d8060008114610e18576040519150601f19603f3d011682016040523d82523d6000602084013e610e1d565b606091505b50909250905081610c8c57805115610e49578060405162461bcd60e51b81526004016100829190611535565b60405162461bcd60e51b815260206004820152602660248201527f4c69624469616d6f6e644375743a205f696e69742066756e6374696f6e2072656044820152651d995c9d195960d21b6064820152608401610082565b813b8181610c8c5760405162461bcd60e51b81526004016100829190611535565b60008051602061157d8339815191526001600160a01b038316610f4c5760405162461bcd60e51b815260206004820152603760248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f76652066756e6360448201527f74696f6e207468617420646f65736e27742065786973740000000000000000006064820152608401610082565b6001600160a01b038316301415610fbc5760405162461bcd60e51b815260206004820152602e60248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f766520696d6d7560448201526d3a30b1363290333ab731ba34b7b760911b6064820152608401610082565b6001600160e01b03198216600090815260208281526040808320546001600160a01b0387168452600180860190935290832054600160a01b90910461ffff1692916110069161154f565b90508082146110f2576001600160a01b0385166000908152600184016020526040812080548390811061103b5761103b6112ab565b600091825260208083206008830401546001600160a01b038a168452600188019091526040909220805460079092166004026101000a90920460e01b92508291908590811061108c5761108c6112ab565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b031992909216825284905260409020805461ffff60a01b1916600160a01b61ffff8516021790555b6001600160a01b0385166000908152600184016020526040902080548061111b5761111b611566565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b0319861682528490526040902080546001600160b01b0319169055806104745760028301546000906111879060019061154f565b6001600160a01b038716600090815260018087016020526040909120015490915061ffff168082146112465760008560020183815481106111ca576111ca6112ab565b6000918252602090912001546002870180546001600160a01b0390921692508291849081106111fb576111fb6112ab565b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018781019092526040902001805461ffff191661ffff83161790555b8460020180548061125957611259611566565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03891682526001878101909152604090912001805461ffff1916905550505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611301576113016112d7565b5060010190565b60005b8381101561132357818101518382015260200161130b565b83811115610c8c5750506000910152565b6000815180845261134c816020860160208601611308565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b8481101561143057898403607f19018652815180516001600160a01b031685528381015189860190600381106113cf57634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b8083101561141b5783516001600160e01b03191682529286019260019290920191908601906113f1565b50978501979550505090820190600101611389565b50506001600160a01b038a169088015286810360408801526114528189611334565b9a9950505050505050505050565b6020808252602b908201527f4c69624469616d6f6e644375743a204e6f2073656c6563746f727320696e206660408201526a1858d95d081d1bc818dd5d60aa1b606082015260800190565b6020808252602c908201527f4c69624469616d6f6e644375743a204164642066616365742063616e2774206260408201526b65206164647265737328302960a01b606082015260800190565b600061ffff8083168181141561150f5761150f6112d7565b6001019392505050565b6000825161152b818460208701611308565b9190910192915050565b6020815260006115486020830184611334565b9392505050565b600082821015611561576115616112d7565b500390565b634e487b7160e01b600052603160045260246000fdfec8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c4c69624469616d6f6e644375743a205f696e6974206164647265737320686173206e6f20636f64654c69624469616d6f6e644375743a204e657720666163657420686173206e6f20636f6465a264697066735822122002a80a948bfe7a928e9f34cb10c971f44fd64456ce18b135d96f6c810b42131a64736f6c634300080a0033608060405234801561001057600080fd5b506115bb806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80631f931c1c14610030575b600080fd5b61004361003e366004610fbe565b610045565b005b61004d61009e565b61009761005a8587611104565b8484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061012992505050565b5050505050565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c1320546001600160a01b031633146101275760405162461bcd60e51b815260206004820152602260248201527f4c69624469616d6f6e643a204d75737420626520636f6e7472616374206f776e60448201526132b960f11b60648201526084015b60405180910390fd5b565b60005b83518110156102f257600084828151811061014957610149611248565b60200260200101516020015190506000600281111561016a5761016a61125e565b81600281111561017c5761017c61125e565b14156101cb576101c685838151811061019757610197611248565b6020026020010151600001518684815181106101b5576101b5611248565b60200260200101516040015161033d565b6102df565b60018160028111156101df576101df61125e565b1415610229576101c68583815181106101fa576101fa611248565b60200260200101516000015186848151811061021857610218611248565b60200260200101516040015161059b565b600281600281111561023d5761023d61125e565b1415610287576101c685838151811061025857610258611248565b60200260200101516000015186848151811061027657610276611248565b602002602001015160400151610823565b60405162461bcd60e51b815260206004820152602760248201527f4c69624469616d6f6e644375743a20496e636f727265637420466163657443756044820152663a20b1ba34b7b760c91b606482015260840161011e565b50806102ea8161128a565b91505061012c565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb673838383604051610326939291906112fd565b60405180910390a16103388282610940565b505050565b600081511161035e5760405162461bcd60e51b815260040161011e906113fd565b60008051602061151a8339815191526001600160a01b0383166103935760405162461bcd60e51b815260040161011e90611448565b6001600160a01b038316600090815260018201602052604090205461ffff8116610435576103d98460405180606001604052806024815260200161156260249139610b4e565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b835181101561009757600084828151811061045557610455611248565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b031680156104f35760405162461bcd60e51b815260206004820152603560248201527f4c69624469616d6f6e644375743a2043616e2774206164642066756e6374696f6044820152746e207468617420616c72656164792065786973747360581b606482015260840161011e565b6001600160a01b03871660008181526001878101602090815260408084208054938401815584528184206008840401805463ffffffff60079095166004026101000a948502191660e089901c94909402939093179092556001600160e01b031986168352889052902080546001600160b01b031916909117600160a01b61ffff8716021790558361058381611494565b945050505080806105939061128a565b915050610438565b60008151116105bc5760405162461bcd60e51b815260040161011e906113fd565b60008051602061151a8339815191526001600160a01b0383166105f15760405162461bcd60e51b815260040161011e90611448565b6001600160a01b038316600090815260018201602052604090205461ffff8116610693576106378460405180606001604052806024815260200161156260249139610b4e565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b83518110156100975760008482815181106106b3576106b3611248565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b0390811690871681141561075f5760405162461bcd60e51b815260206004820152603860248201527f4c69624469616d6f6e644375743a2043616e2774207265706c6163652066756e60448201527f6374696f6e20776974682073616d652066756e6374696f6e0000000000000000606482015260840161011e565b6107698183610b6f565b6001600160e01b03198216600081815260208781526040808320805461ffff60a01b1916600160a01b61ffff8b16021781556001600160a01b038c168085526001808c0185529285208054938401815585528385206008840401805463ffffffff60079095166004026101000a948502191660e08a901c94909402939093179092559390925287905281546001600160a01b0319161790558361080b81611494565b9450505050808061081b9061128a565b915050610696565b60008151116108445760405162461bcd60e51b815260040161011e906113fd565b60008051602061151a8339815191526001600160a01b038316156108c95760405162461bcd60e51b815260206004820152603660248201527f4c69624469616d6f6e644375743a2052656d6f76652066616365742061646472604482015275657373206d757374206265206164647265737328302960501b606482015260840161011e565b60005b825181101561093a5760008382815181106108e9576108e9611248565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b03166109258183610b6f565b505080806109329061128a565b9150506108cc565b50505050565b6001600160a01b0382166109c7578051156109c35760405162461bcd60e51b815260206004820152603c60248201527f4c69624469616d6f6e644375743a205f696e697420697320616464726573732860448201527f3029206275745f63616c6c64617461206973206e6f7420656d70747900000000606482015260840161011e565b5050565b6000815111610a3e5760405162461bcd60e51b815260206004820152603d60248201527f4c69624469616d6f6e644375743a205f63616c6c6461746120697320656d707460448201527f7920627574205f696e6974206973206e6f742061646472657373283029000000606482015260840161011e565b6001600160a01b0382163014610a7057610a708260405180606001604052806028815260200161153a60289139610b4e565b600080836001600160a01b031683604051610a8b91906114b6565b600060405180830381855af49150503d8060008114610ac6576040519150601f19603f3d011682016040523d82523d6000602084013e610acb565b606091505b5090925090508161093a57805115610af7578060405162461bcd60e51b815260040161011e91906114d2565b60405162461bcd60e51b815260206004820152602660248201527f4c69624469616d6f6e644375743a205f696e69742066756e6374696f6e2072656044820152651d995c9d195960d21b606482015260840161011e565b813b818161093a5760405162461bcd60e51b815260040161011e91906114d2565b60008051602061151a8339815191526001600160a01b038316610bfa5760405162461bcd60e51b815260206004820152603760248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f76652066756e6360448201527f74696f6e207468617420646f65736e2774206578697374000000000000000000606482015260840161011e565b6001600160a01b038316301415610c6a5760405162461bcd60e51b815260206004820152602e60248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f766520696d6d7560448201526d3a30b1363290333ab731ba34b7b760911b606482015260840161011e565b6001600160e01b03198216600090815260208281526040808320546001600160a01b0387168452600180860190935290832054600160a01b90910461ffff169291610cb4916114ec565b9050808214610da0576001600160a01b03851660009081526001840160205260408120805483908110610ce957610ce9611248565b600091825260208083206008830401546001600160a01b038a168452600188019091526040909220805460079092166004026101000a90920460e01b925082919085908110610d3a57610d3a611248565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b031992909216825284905260409020805461ffff60a01b1916600160a01b61ffff8516021790555b6001600160a01b03851660009081526001840160205260409020805480610dc957610dc9611503565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b0319861682528490526040902080546001600160b01b031916905580610097576002830154600090610e35906001906114ec565b6001600160a01b038716600090815260018087016020526040909120015490915061ffff16808214610ef4576000856002018381548110610e7857610e78611248565b6000918252602090912001546002870180546001600160a01b039092169250829184908110610ea957610ea9611248565b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018781019092526040902001805461ffff191661ffff83161790555b84600201805480610f0757610f07611503565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03891682526001878101909152604090912001805461ffff1916905550505050505050565b80356001600160a01b0381168114610f7057600080fd5b919050565b60008083601f840112610f8757600080fd5b50813567ffffffffffffffff811115610f9f57600080fd5b602083019150836020828501011115610fb757600080fd5b9250929050565b600080600080600060608688031215610fd657600080fd5b853567ffffffffffffffff80821115610fee57600080fd5b818801915088601f83011261100257600080fd5b81358181111561101157600080fd5b8960208260051b850101111561102657600080fd5b6020830197508096505061103c60208901610f59565b9450604088013591508082111561105257600080fd5b5061105f88828901610f75565b969995985093965092949392505050565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156110a9576110a9611070565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156110d8576110d8611070565b604052919050565b600067ffffffffffffffff8211156110fa576110fa611070565b5060051b60200190565b6000611117611112846110e0565b6110af565b83815260208082019190600586811b86013681111561113557600080fd5b865b8181101561123b57803567ffffffffffffffff808211156111585760008081fd5b818a0191506060823603121561116e5760008081fd5b611176611086565b61117f83610f59565b815286830135600381106111935760008081fd5b81880152604083810135838111156111ab5760008081fd5b939093019236601f8501126111c257600092508283fd5b833592506111d2611112846110e0565b83815292871b840188019288810190368511156111ef5760008081fd5b948901945b848610156112245785356001600160e01b0319811681146112155760008081fd5b825294890194908901906111f4565b918301919091525088525050948301948301611137565b5092979650505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561129e5761129e611274565b5060010190565b60005b838110156112c05781810151838201526020016112a8565b8381111561093a5750506000910152565b600081518084526112e98160208601602086016112a5565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b848110156113cd57898403607f19018652815180516001600160a01b0316855283810151898601906003811061136c57634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b808310156113b85783516001600160e01b031916825292860192600192909201919086019061138e565b50978501979550505090820190600101611326565b50506001600160a01b038a169088015286810360408801526113ef81896112d1565b9a9950505050505050505050565b6020808252602b908201527f4c69624469616d6f6e644375743a204e6f2073656c6563746f727320696e206660408201526a1858d95d081d1bc818dd5d60aa1b606082015260800190565b6020808252602c908201527f4c69624469616d6f6e644375743a204164642066616365742063616e2774206260408201526b65206164647265737328302960a01b606082015260800190565b600061ffff808316818114156114ac576114ac611274565b6001019392505050565b600082516114c88184602087016112a5565b9190910192915050565b6020815260006114e560208301846112d1565b9392505050565b6000828210156114fe576114fe611274565b500390565b634e487b7160e01b600052603160045260246000fdfec8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c4c69624469616d6f6e644375743a205f696e6974206164647265737320686173206e6f20636f64654c69624469616d6f6e644375743a204e657720666163657420686173206e6f20636f6465a264697066735822122052f59ee6d9e8a7a8da3b8c96685082762caf0de916f4b5260af5879c0acb800964736f6c634300080a0033608060405234801561001057600080fd5b50610690806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c806301ffc9a71461005c57806352ef6b2c146100bd5780637a0ed627146100d2578063adfca15e146100e7578063cdffacc614610107575b600080fd5b6100a861006a366004610469565b6001600160e01b03191660009081527fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131f602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100c561015f565b6040516100b4919061049a565b6100da6101d2565b6040516100b4919061052c565b6100fa6100f53660046105a9565b61039d565b6040516100b491906105d2565b610147610115366004610469565b6001600160e01b031916600090815260008051602061063b83398151915260205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016100b4565b6060600060008051602061063b833981519152600281018054604080516020808402820181019092528281529394508301828280156101c757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116101a9575b505050505091505090565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131e5460609060008051602061063b833981519152908067ffffffffffffffff811115610220576102206105e5565b60405190808252806020026020018201604052801561026657816020015b60408051808201909152600081526060602082015281526020019060019003908161023e5790505b50925060005b8181101561039757600083600201828154811061028b5761028b6105fb565b9060005260206000200160009054906101000a90046001600160a01b03169050808583815181106102be576102be6105fb565b6020908102919091018101516001600160a01b03928316905290821660009081526001860182526040908190208054825181850281018501909352808352919290919083018282801561035d57602002820191906000526020600020906000905b82829054906101000a900460e01b6001600160e01b0319168152602001906004019060208260030104928301926001038202915080841161031f5790505b5050505050858381518110610374576103746105fb565b60200260200101516020018190525050808061038f90610611565b91505061026c565b50505090565b6001600160a01b03811660009081527fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131d6020908152604091829020805483518184028101840190945280845260609360008051602061063b833981519152939092919083018282801561045c57602002820191906000526020600020906000905b82829054906101000a900460e01b6001600160e01b0319168152602001906004019060208260030104928301926001038202915080841161041e5790505b5050505050915050919050565b60006020828403121561047b57600080fd5b81356001600160e01b03198116811461049357600080fd5b9392505050565b6020808252825182820181905260009190848201906040850190845b818110156104db5783516001600160a01b0316835292840192918401916001016104b6565b50909695505050505050565b600081518084526020808501945080840160005b838110156105215781516001600160e01b031916875295820195908201906001016104fb565b509495945050505050565b60006020808301818452808551808352604092508286019150828160051b87010184880160005b8381101561059b57888303603f19018552815180516001600160a01b03168452870151878401879052610588878501826104e7565b9588019593505090860190600101610553565b509098975050505050505050565b6000602082840312156105bb57600080fd5b81356001600160a01b038116811461049357600080fd5b60208152600061049360208301846104e7565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060001982141561063357634e487b7160e01b600052601160045260246000fd5b506001019056fec8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131ca2646970667358221220e7811be043e4e07c83dcfc7399dc35c0fdcc7635e97629835d70c6199a179a4164736f6c634300080a0033608060405234801561001057600080fd5b5061029c806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80638da5cb5b1461003b578063f2fde38b1461005f575b600080fd5b610043610074565b6040516001600160a01b03909116815260200160405180910390f35b61007261006d366004610236565b6100ac565b005b60006100a77fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c1320546001600160a01b031690565b905090565b6100b461011b565b6001600160a01b03811661010f5760405162461bcd60e51b815260206004820152601760248201527f47544d3a206e756c6c2061646472657373206572726f7200000000000000000060448201526064015b60405180910390fd5b610118816101a1565b50565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c1320546001600160a01b0316331461019f5760405162461bcd60e51b815260206004820152602260248201527f4c69624469616d6f6e643a204d75737420626520636f6e7472616374206f776e60448201526132b960f11b6064820152608401610106565b565b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b038481169182179093556040517fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c939092169182907f9b363ab62ae420e413b470255847b66115b39866862db4084a593eef2d9f724290600090a3505050565b60006020828403121561024857600080fd5b81356001600160a01b038116811461025f57600080fd5b939250505056fea2646970667358221220d7f79a1dadfb76fa36e2b07106e731de9494f6a2155922fd5f5ff0a62aeb8c6264736f6c634300080a0033c8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c4c69624469616d6f6e644375743a205f696e6974206164647265737320686173206e6f20636f64654c69624469616d6f6e644375743a204164642066616365742063616e277420624c69624469616d6f6e644375743a204e657720666163657420686173206e6f20636f64654c69624469616d6f6e644375743a204e6f2073656c6563746f727320696e2066000000000000000000000000ac727841b1599171cb10ebc8ae0fced5759bd965
Deployed Bytecode
0x60806040908152600080356001600160e01b031916815260008051602061157d83398151915260208190529190205481906001600160a01b03168061008b5760405162461bcd60e51b815260206004820181905260248201527f4469616d6f6e643a2046756e6374696f6e20646f6573206e6f7420657869737460448201526064015b60405180910390fd5b3660008037600080366000845af43d6000803e8080156100aa573d6000f35b3d6000fd5b7fc8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c132080546001600160a01b031981166001600160a01b0384811691821790935560405160008051602061157d833981519152939092169182907f9b363ab62ae420e413b470255847b66115b39866862db4084a593eef2d9f724290600090a3505050565b60408051600380825260808201909252600091816020015b6040805160608082018352600080835260208301529181019190915281526020019060019003908161014a5750506040805160018082528183019092529192506000919060208083019080368337019050509050631f931c1c60e01b816000815181106101b9576101b96112ab565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b0387168152908101600081526020018281525082600081518110610209576102096112ab565b602090810291909101015260408051600580825260c0820190925290816020016020820280368337019050509050637a0ed62760e01b81600081518110610252576102526112ab565b6001600160e01b03199092166020928302919091019091015280516356fe50af60e11b9082906001908110610289576102896112ab565b6001600160e01b03199092166020928302919091019091015280516314bbdacb60e21b90829060029081106102c0576102c06112ab565b6001600160e01b03199092166020928302919091019091015280516366ffd66360e11b90829060039081106102f7576102f76112ab565b6001600160e01b03199092166020928302919091019091015280516301ffc9a760e01b908290600490811061032e5761032e6112ab565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b038616815290810160008152602001828152508260018151811061037e5761037e6112ab565b6020908102919091010152604080516002808252606082019092529081602001602082028036833701905050905063f2fde38b60e01b816000815181106103c7576103c76112ab565b6001600160e01b0319909216602092830291909101909101528051638da5cb5b60e01b90829060019081106103fe576103fe6112ab565b6001600160e01b031990921660209283029190910182015260408051606081019091526001600160a01b038516815290810160008152602001828152508260028151811061044e5761044e6112ab565b60200260200101819052506104748260006040518060200160405280600081525061047b565b5050505050565b60005b835181101561064457600084828151811061049b5761049b6112ab565b6020026020010151602001519050600060028111156104bc576104bc6112c1565b8160028111156104ce576104ce6112c1565b141561051d576105188583815181106104e9576104e96112ab565b602002602001015160000151868481518110610507576105076112ab565b60200260200101516040015161068f565b610631565b6001816002811115610531576105316112c1565b141561057b5761051885838151811061054c5761054c6112ab565b60200260200101516000015186848151811061056a5761056a6112ab565b6020026020010151604001516108ed565b600281600281111561058f5761058f6112c1565b14156105d9576105188583815181106105aa576105aa6112ab565b6020026020010151600001518684815181106105c8576105c86112ab565b602002602001015160400151610b75565b60405162461bcd60e51b815260206004820152602760248201527f4c69624469616d6f6e644375743a20496e636f727265637420466163657443756044820152663a20b1ba34b7b760c91b6064820152608401610082565b508061063c816112ed565b91505061047e565b507f8faa70878671ccd212d20771b795c50af8fd3ff6cf27f4bde57e5d4de0aeb67383838360405161067893929190611360565b60405180910390a161068a8282610c92565b505050565b60008151116106b05760405162461bcd60e51b815260040161008290611460565b60008051602061157d8339815191526001600160a01b0383166106e55760405162461bcd60e51b8152600401610082906114ab565b6001600160a01b038316600090815260018201602052604090205461ffff81166107875761072b846040518060600160405280602481526020016115c560249139610ea0565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b83518110156104745760008482815181106107a7576107a76112ab565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b031680156108455760405162461bcd60e51b815260206004820152603560248201527f4c69624469616d6f6e644375743a2043616e2774206164642066756e6374696f6044820152746e207468617420616c72656164792065786973747360581b6064820152608401610082565b6001600160a01b03871660008181526001878101602090815260408084208054938401815584528184206008840401805463ffffffff60079095166004026101000a948502191660e089901c94909402939093179092556001600160e01b031986168352889052902080546001600160b01b031916909117600160a01b61ffff871602179055836108d5816114f7565b945050505080806108e5906112ed565b91505061078a565b600081511161090e5760405162461bcd60e51b815260040161008290611460565b60008051602061157d8339815191526001600160a01b0383166109435760405162461bcd60e51b8152600401610082906114ab565b6001600160a01b038316600090815260018201602052604090205461ffff81166109e557610989846040518060600160405280602481526020016115c560249139610ea0565b6002820180546001600160a01b038616600081815260018087016020908152604083208201805461ffff191661ffff90961695909517909455845490810185559381529190912090910180546001600160a01b03191690911790555b60005b8351811015610474576000848281518110610a0557610a056112ab565b6020908102919091018101516001600160e01b031981166000908152918690526040909120549091506001600160a01b03908116908716811415610ab15760405162461bcd60e51b815260206004820152603860248201527f4c69624469616d6f6e644375743a2043616e2774207265706c6163652066756e60448201527f6374696f6e20776974682073616d652066756e6374696f6e00000000000000006064820152608401610082565b610abb8183610ec1565b6001600160e01b03198216600081815260208781526040808320805461ffff60a01b1916600160a01b61ffff8b16021781556001600160a01b038c168085526001808c0185529285208054938401815585528385206008840401805463ffffffff60079095166004026101000a948502191660e08a901c94909402939093179092559390925287905281546001600160a01b03191617905583610b5d816114f7565b94505050508080610b6d906112ed565b9150506109e8565b6000815111610b965760405162461bcd60e51b815260040161008290611460565b60008051602061157d8339815191526001600160a01b03831615610c1b5760405162461bcd60e51b815260206004820152603660248201527f4c69624469616d6f6e644375743a2052656d6f76652066616365742061646472604482015275657373206d757374206265206164647265737328302960501b6064820152608401610082565b60005b8251811015610c8c576000838281518110610c3b57610c3b6112ab565b6020908102919091018101516001600160e01b031981166000908152918590526040909120549091506001600160a01b0316610c778183610ec1565b50508080610c84906112ed565b915050610c1e565b50505050565b6001600160a01b038216610d1957805115610d155760405162461bcd60e51b815260206004820152603c60248201527f4c69624469616d6f6e644375743a205f696e697420697320616464726573732860448201527f3029206275745f63616c6c64617461206973206e6f7420656d707479000000006064820152608401610082565b5050565b6000815111610d905760405162461bcd60e51b815260206004820152603d60248201527f4c69624469616d6f6e644375743a205f63616c6c6461746120697320656d707460448201527f7920627574205f696e6974206973206e6f7420616464726573732830290000006064820152608401610082565b6001600160a01b0382163014610dc257610dc28260405180606001604052806028815260200161159d60289139610ea0565b600080836001600160a01b031683604051610ddd9190611519565b600060405180830381855af49150503d8060008114610e18576040519150601f19603f3d011682016040523d82523d6000602084013e610e1d565b606091505b50909250905081610c8c57805115610e49578060405162461bcd60e51b81526004016100829190611535565b60405162461bcd60e51b815260206004820152602660248201527f4c69624469616d6f6e644375743a205f696e69742066756e6374696f6e2072656044820152651d995c9d195960d21b6064820152608401610082565b813b8181610c8c5760405162461bcd60e51b81526004016100829190611535565b60008051602061157d8339815191526001600160a01b038316610f4c5760405162461bcd60e51b815260206004820152603760248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f76652066756e6360448201527f74696f6e207468617420646f65736e27742065786973740000000000000000006064820152608401610082565b6001600160a01b038316301415610fbc5760405162461bcd60e51b815260206004820152602e60248201527f4c69624469616d6f6e644375743a2043616e27742072656d6f766520696d6d7560448201526d3a30b1363290333ab731ba34b7b760911b6064820152608401610082565b6001600160e01b03198216600090815260208281526040808320546001600160a01b0387168452600180860190935290832054600160a01b90910461ffff1692916110069161154f565b90508082146110f2576001600160a01b0385166000908152600184016020526040812080548390811061103b5761103b6112ab565b600091825260208083206008830401546001600160a01b038a168452600188019091526040909220805460079092166004026101000a90920460e01b92508291908590811061108c5761108c6112ab565b600091825260208083206008830401805463ffffffff60079094166004026101000a938402191660e09590951c929092029390931790556001600160e01b031992909216825284905260409020805461ffff60a01b1916600160a01b61ffff8516021790555b6001600160a01b0385166000908152600184016020526040902080548061111b5761111b611566565b60008281526020808220600860001990940193840401805463ffffffff600460078716026101000a0219169055919092556001600160e01b0319861682528490526040902080546001600160b01b0319169055806104745760028301546000906111879060019061154f565b6001600160a01b038716600090815260018087016020526040909120015490915061ffff168082146112465760008560020183815481106111ca576111ca6112ab565b6000918252602090912001546002870180546001600160a01b0390921692508291849081106111fb576111fb6112ab565b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018781019092526040902001805461ffff191661ffff83161790555b8460020180548061125957611259611566565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03891682526001878101909152604090912001805461ffff1916905550505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611301576113016112d7565b5060010190565b60005b8381101561132357818101518382015260200161130b565b83811115610c8c5750506000910152565b6000815180845261134c816020860160208601611308565b601f01601f19169290920160200192915050565b60006060808301818452808751808352608092508286019150828160051b8701016020808b0160005b8481101561143057898403607f19018652815180516001600160a01b031685528381015189860190600381106113cf57634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b8083101561141b5783516001600160e01b03191682529286019260019290920191908601906113f1565b50978501979550505090820190600101611389565b50506001600160a01b038a169088015286810360408801526114528189611334565b9a9950505050505050505050565b6020808252602b908201527f4c69624469616d6f6e644375743a204e6f2073656c6563746f727320696e206660408201526a1858d95d081d1bc818dd5d60aa1b606082015260800190565b6020808252602c908201527f4c69624469616d6f6e644375743a204164642066616365742063616e2774206260408201526b65206164647265737328302960a01b606082015260800190565b600061ffff8083168181141561150f5761150f6112d7565b6001019392505050565b6000825161152b818460208701611308565b9190910192915050565b6020815260006115486020830184611334565b9392505050565b600082821015611561576115616112d7565b500390565b634e487b7160e01b600052603160045260246000fdfec8fcad8db84d3cc18b4c41d551ea0ee66dd599cde068d998e57d5e09332c131c4c69624469616d6f6e644375743a205f696e6974206164647265737320686173206e6f20636f64654c69624469616d6f6e644375743a204e657720666163657420686173206e6f20636f6465a264697066735822122002a80a948bfe7a928e9f34cb10c971f44fd64456ce18b135d96f6c810b42131a64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ac727841b1599171cb10ebc8ae0fced5759bd965
-----Decoded View---------------
Arg [0] : _contractOwner (address): 0xac727841b1599171cB10ebC8ae0fCeD5759bd965
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ac727841b1599171cb10ebc8ae0fced5759bd965
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 33.65% | $658.34 | 0.22 | $144.83 | |
BSC | 26.15% | $1 | 112.5319 | $112.53 | |
BSC | 10.07% | $666.16 | 0.065 | $43.33 | |
BSC | 8.36% | $0.011927 | 3,015.6129 | $35.97 | |
BSC | 5.78% | <$0.000001 | 1,000,000,000.8891 | $24.86 | |
BSC | 5.12% | $0.212097 | 103.9439 | $22.05 | |
BSC | 4.22% | $1.3 | 13.9408 | $18.16 | |
BSC | 3.45% | $0.281131 | 52.7751 | $14.84 | |
BSC | 2.26% | $3.6 | 2.699 | $9.72 | |
BSC | 0.45% | $0.000012 | 167,101.1005 | $1.95 | |
BSC | 0.13% | $0.999923 | 0.5647 | $0.5646 | |
BSC | 0.10% | $0.999845 | 0.4492 | $0.4491 | |
BSC | 0.06% | $0.259189 | 0.9313 | $0.2413 | |
ETH | 0.12% | $1 | 0.514 | $0.5139 | |
ETH | 0.09% | $0.99989 | 0.3672 | $0.3671 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.