{
    "Function": "addOptionRatio",
    "File": "contracts/types/TokenId.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addOptionRatio(\n        uint256 self,\n        uint256 _optionRatio,\n        uint256 legIndex\n    ) internal pure returns (uint256) {\n        unchecked {\n            return self + (uint256(_optionRatio % 128) << (64 + legIndex * 48 + 1));\n        }\n    }"
}