{
    "Function": "isEqual",
    "File": "contracts/Router.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "sha256(bytes)",
        "sha256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function isEqual(bytes memory part1, bytes memory part2) external pure returns(bool equal){\n        if(sha256(part1) == sha256(part2)){\n            return true;\n        }\n    }"
}