From 6590fb40860ea80dd262b6abb61b0f5ee29ad81b Mon Sep 17 00:00:00 2001 From: onahprosperity Date: Mon, 10 Jun 2024 21:08:27 +0100 Subject: [PATCH] chore: update invalid institution test with allowance checks --- .../Ownable2StepUpgradeable.dbg.json | 4 + .../Ownable2StepUpgradeable.json | 115 +++ .../OwnableUpgradeable.dbg.json | 4 + .../OwnableUpgradeable.json | 76 ++ .../Initializable.sol/Initializable.dbg.json | 4 + .../Initializable.sol/Initializable.json | 24 + .../PausableUpgradeable.dbg.json | 4 + .../PausableUpgradeable.json | 63 ++ .../AddressUpgradeable.dbg.json | 4 + .../AddressUpgradeable.json | 10 + .../ContextUpgradeable.dbg.json | 4 + .../ContextUpgradeable.json | 24 + .../token/ERC20/ERC20.sol/ERC20.dbg.json | 4 + .../token/ERC20/ERC20.sol/ERC20.json | 297 +++++++ .../token/ERC20/IERC20.sol/IERC20.dbg.json | 4 + .../token/ERC20/IERC20.sol/IERC20.json | 194 +++++ .../IERC20Metadata.dbg.json | 4 + .../IERC20Metadata.sol/IERC20Metadata.json | 233 ++++++ .../utils/Context.sol/Context.dbg.json | 4 + .../contracts/utils/Context.sol/Context.json | 10 + .../d775da09ef809423b637832990bde81f.json | 1 + .../contracts/Gateway.sol/Gateway.dbg.json | 4 + artifacts/contracts/Gateway.sol/Gateway.json | 771 ++++++++++++++++++ .../GatewaySettingManager.dbg.json | 4 + .../GatewaySettingManager.json | 300 +++++++ .../GatewayV2.sol/GatewayV2.dbg.json | 4 + .../contracts/GatewayV2.sol/GatewayV2.json | 709 ++++++++++++++++ .../interfaces/IGateway.sol/IGateway.dbg.json | 4 + .../interfaces/IGateway.sol/IGateway.json | 417 ++++++++++ .../IGatewayV2.sol/IGatewayV2.dbg.json | 4 + .../interfaces/IGatewayV2.sol/IGatewayV2.json | 355 ++++++++ .../SharedStructs.sol/SharedStructs.dbg.json | 4 + .../SharedStructs.sol/SharedStructs.json | 10 + .../mocks/MockUSDC.sol/MockUSDT.dbg.json | 4 + .../mocks/MockUSDC.sol/MockUSDT.json | 319 ++++++++ test/gateway/gateway.createorder.test.js | 28 +- test/utils/utils.manager.js | 31 +- 37 files changed, 4026 insertions(+), 29 deletions(-) create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json create mode 100644 artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json create mode 100644 artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json create mode 100644 artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json create mode 100644 artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json create mode 100644 artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json create mode 100644 artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json create mode 100644 artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json create mode 100644 artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json create mode 100644 artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json create mode 100644 artifacts/build-info/d775da09ef809423b637832990bde81f.json create mode 100644 artifacts/contracts/Gateway.sol/Gateway.dbg.json create mode 100644 artifacts/contracts/Gateway.sol/Gateway.json create mode 100644 artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json create mode 100644 artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json create mode 100644 artifacts/contracts/GatewayV2.sol/GatewayV2.dbg.json create mode 100644 artifacts/contracts/GatewayV2.sol/GatewayV2.json create mode 100644 artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json create mode 100644 artifacts/contracts/interfaces/IGateway.sol/IGateway.json create mode 100644 artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.dbg.json create mode 100644 artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.json create mode 100644 artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.dbg.json create mode 100644 artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.json create mode 100644 artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json create mode 100644 artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json new file mode 100644 index 0000000..ea1d8d1 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json new file mode 100644 index 0000000..fbc6085 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json @@ -0,0 +1,115 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Ownable2StepUpgradeable", + "sourceName": "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json new file mode 100644 index 0000000..ea1d8d1 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json new file mode 100644 index 0000000..5251870 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json @@ -0,0 +1,76 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "OwnableUpgradeable", + "sourceName": "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json new file mode 100644 index 0000000..55402e8 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json b/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json new file mode 100644 index 0000000..4b29c72 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json @@ -0,0 +1,24 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Initializable", + "sourceName": "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json new file mode 100644 index 0000000..ea1d8d1 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json new file mode 100644 index 0000000..4bc1f5e --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json @@ -0,0 +1,63 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "PausableUpgradeable", + "sourceName": "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json new file mode 100644 index 0000000..ea1d8d1 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json new file mode 100644 index 0000000..0647384 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "AddressUpgradeable", + "sourceName": "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol", + "abi": [], + "bytecode": "0x60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220df70283ff728a1a88debad8b56cd6b31b858a143aff601e8f42a16699317e70d64736f6c63430008120033", + "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220df70283ff728a1a88debad8b56cd6b31b858a143aff601e8f42a16699317e70d64736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json new file mode 100644 index 0000000..ea1d8d1 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json b/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json new file mode 100644 index 0000000..e154d60 --- /dev/null +++ b/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json @@ -0,0 +1,24 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ContextUpgradeable", + "sourceName": "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json b/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json new file mode 100644 index 0000000..55402e8 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json b/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json new file mode 100644 index 0000000..7aeccf5 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json @@ -0,0 +1,297 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC20", + "sourceName": "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "string", + "name": "name_", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol_", + "type": "string" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x60806040523480156200001157600080fd5b50604051620017ec380380620017ec8339818101604052810190620000379190620001f6565b8160039081620000489190620004c6565b5080600490816200005a9190620004c6565b505050620005ad565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620000cc8262000081565b810181811067ffffffffffffffff82111715620000ee57620000ed62000092565b5b80604052505050565b60006200010362000063565b9050620001118282620000c1565b919050565b600067ffffffffffffffff82111562000134576200013362000092565b5b6200013f8262000081565b9050602081019050919050565b60005b838110156200016c5780820151818401526020810190506200014f565b60008484015250505050565b60006200018f620001898462000116565b620000f7565b905082815260208101848484011115620001ae57620001ad6200007c565b5b620001bb8482856200014c565b509392505050565b600082601f830112620001db57620001da62000077565b5b8151620001ed84826020860162000178565b91505092915050565b6000806040838503121562000210576200020f6200006d565b5b600083015167ffffffffffffffff81111562000231576200023062000072565b5b6200023f85828601620001c3565b925050602083015167ffffffffffffffff81111562000263576200026262000072565b5b6200027185828601620001c3565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ce57607f821691505b602082108103620002e457620002e362000286565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200034e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030f565b6200035a86836200030f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a7620003a16200039b8462000372565b6200037c565b62000372565b9050919050565b6000819050919050565b620003c38362000386565b620003db620003d282620003ae565b8484546200031c565b825550505050565b600090565b620003f2620003e3565b620003ff818484620003b8565b505050565b5b8181101562000427576200041b600082620003e8565b60018101905062000405565b5050565b601f82111562000476576200044081620002ea565b6200044b84620002ff565b810160208510156200045b578190505b620004736200046a85620002ff565b83018262000404565b50505b505050565b600082821c905092915050565b60006200049b600019846008026200047b565b1980831691505092915050565b6000620004b6838362000488565b9150826002028217905092915050565b620004d1826200027b565b67ffffffffffffffff811115620004ed57620004ec62000092565b5b620004f98254620002b5565b620005068282856200042b565b600060209050601f8311600181146200053e576000841562000529578287015190505b620005358582620004a8565b865550620005a5565b601f1984166200054e86620002ea565b60005b82811015620005785784890151825560018201915060208501945060208101905062000551565b8683101562000598578489015162000594601f89168262000488565b8355505b6001600288020188555050505b505050505050565b61122f80620005bd6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea26469706673582212203f964721ffb5f8e7386b9365859b9194e4ad9856f3c840f128334936a424267d64736f6c63430008120033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea26469706673582212203f964721ffb5f8e7386b9365859b9194e4ad9856f3c840f128334936a424267d64736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json b/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json new file mode 100644 index 0000000..55402e8 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json b/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json new file mode 100644 index 0000000..76b073c --- /dev/null +++ b/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json @@ -0,0 +1,194 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC20", + "sourceName": "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json b/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json new file mode 100644 index 0000000..2c1e2ee --- /dev/null +++ b/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json b/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json new file mode 100644 index 0000000..0436b92 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json @@ -0,0 +1,233 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC20Metadata", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json b/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json new file mode 100644 index 0000000..ea1d8d1 --- /dev/null +++ b/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json b/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json new file mode 100644 index 0000000..8fe86fc --- /dev/null +++ b/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Context", + "sourceName": "@openzeppelin/contracts/utils/Context.sol", + "abi": [], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/build-info/d775da09ef809423b637832990bde81f.json b/artifacts/build-info/d775da09ef809423b637832990bde81f.json new file mode 100644 index 0000000..45817af --- /dev/null +++ b/artifacts/build-info/d775da09ef809423b637832990bde81f.json @@ -0,0 +1 @@ +{"id":"d775da09ef809423b637832990bde81f","_format":"hh-sol-build-info-1","solcVersion":"0.8.18","solcLongVersion":"0.8.18+commit.87f61d96","input":{"language":"Solidity","sources":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./OwnableUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which provides access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership} and {acceptOwnership}.\n *\n * This module is used through inheritance. It will make available all functions\n * from parent (Ownable).\n */\nabstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\n address private _pendingOwner;\n\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n function __Ownable2Step_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable2Step_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the address of the pending owner.\n */\n function pendingOwner() public view virtual returns (address) {\n return _pendingOwner;\n }\n\n /**\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual override onlyOwner {\n _pendingOwner = newOwner;\n emit OwnershipTransferStarted(owner(), newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual override {\n delete _pendingOwner;\n super._transferOwnership(newOwner);\n }\n\n /**\n * @dev The new owner accepts the ownership transfer.\n */\n function acceptOwnership() public virtual {\n address sender = _msgSender();\n require(pendingOwner() == sender, \"Ownable2Step: caller is not the new owner\");\n _transferOwnership(sender);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal onlyInitializing {\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal onlyInitializing {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n * function initialize() initializer public {\n * __ERC20_init(\"MyToken\", \"MTK\");\n * }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n * function initializeV2() reinitializer(2) public {\n * __ERC20Permit_init(\"MyToken\");\n * }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n * _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n /**\n * @dev Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 version);\n\n /**\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n * `onlyInitializing` functions can be used to initialize parent contracts.\n *\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\n );\n _initialized = 1;\n if (isTopLevelCall) {\n _initializing = true;\n }\n _;\n if (isTopLevelCall) {\n _initializing = false;\n emit Initialized(1);\n }\n }\n\n /**\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n * used to initialize parent contracts.\n *\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n * are added through upgrades and that require initialization.\n *\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n * cannot be nested. If one is invoked in the context of another, execution will revert.\n *\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n * a contract, executing them in the right order is up to the developer or operator.\n *\n * WARNING: setting the version to 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\n _initialized = version;\n _initializing = true;\n _;\n _initializing = false;\n emit Initialized(version);\n }\n\n /**\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\n */\n modifier onlyInitializing() {\n require(_initializing, \"Initializable: contract is not initializing\");\n _;\n }\n\n /**\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n * through proxies.\n *\n * Emits an {Initialized} event the first time it is successfully executed.\n */\n function _disableInitializers() internal virtual {\n require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _initialized;\n }\n\n /**\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n */\n function _isInitializing() internal view returns (bool) {\n return _initializing;\n }\n}\n"},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n function __Pausable_init() internal onlyInitializing {\n __Pausable_init_unchained();\n }\n\n function __Pausable_init_unchained() internal onlyInitializing {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"},"contracts/Gateway.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\n\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\nimport {SharedStructs} from './libraries/SharedStructs.sol';\n\n/**\n * @title Gateway\n * @notice This contract serves as a gateway for creating orders and managing settlements.\n */\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\n\tstruct fee {\n\t\tuint256 protocolFee;\n\t\tuint256 liquidityProviderAmount;\n\t}\n\n\tmapping(bytes32 => Order) private order;\n\tmapping(address => uint256) private _nonce;\n\tuint256[50] private __gap;\n\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @dev Initialize function.\n\t */\n\tfunction initialize() external initializer {\n\t\tMAX_BPS = 100_000;\n\t\t__Ownable2Step_init();\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @dev Modifier that allows only the aggregator to call a function.\n\t */\n\tmodifier onlyAggregator() {\n\t\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\n\t\t_;\n\t}\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\t/**\n\t * @dev Pause the contract.\n\t */\n\tfunction pause() external onlyOwner {\n\t\t_pause();\n\t}\n\n\t/**\n\t * @dev Unpause the contract.\n\t */\n\tfunction unpause() external onlyOwner {\n\t\t_unpause();\n\t}\n\n\t/* ##################################################################\n USER CALLS\n ################################################################## */\n\t/** @dev See {createOrder-IGateway}. */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tbytes32 _institutionCode,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external whenNotPaused returns (bytes32 orderId) {\n\t\t// checks that are required\n\t\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\n\n\t\t// validate messageHash\n\t\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\n\n\t\t// transfer token from msg.sender to contract\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\t// increase users nonce to avoid replay attacks\n\t\t_nonce[msg.sender]++;\n\n\t\t// generate transaction id for the transaction\n\t\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender]));\n\n\t\t// update transaction\n\t\tuint256 _protocolFee = (_amount * protocolFeePercent) / MAX_BPS;\n\t\torder[orderId] = Order({\n\t\t\tsender: msg.sender,\n\t\t\ttoken: _token,\n\t\t\tsenderFeeRecipient: _senderFeeRecipient,\n\t\t\tsenderFee: _senderFee,\n\t\t\tprotocolFee: _protocolFee,\n\t\t\tisFulfilled: false,\n\t\t\tisRefunded: false,\n\t\t\trefundAddress: _refundAddress,\n\t\t\tcurrentBPS: uint64(MAX_BPS),\n\t\t\tamount: _amount - _protocolFee\n\t\t});\n\n\t\t// emit order created event\n\t\temit OrderCreated(\n\t\t\torder[orderId].sender,\n\t\t\t_token,\n\t\t\torder[orderId].amount,\n\t\t\t_protocolFee,\n\t\t\torderId,\n\t\t\t_rate,\n\t\t\t_institutionCode,\n\t\t\tmessageHash\n\t\t);\n\t}\n\n\t/**\n\t * @dev Internal function to handle order creation.\n\t * @param _token The address of the token being traded.\n\t * @param _amount The amount of tokens being traded.\n\t * @param _refundAddress The address to refund the tokens in case of cancellation.\n\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\n\t * @param _senderFee The amount of the sender fee.\n\t */\n\tfunction _handler(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _refundAddress,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee\n\t) internal view {\n\t\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\n\t\trequire(_amount != 0, 'AmountIsZero');\n\t\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\n\n\t\tif (_senderFee != 0) {\n\t\t\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\n\t\t}\n\t}\n\n\t/* ##################################################################\n AGGREGATOR FUNCTIONS\n ################################################################## */\n\t/** @dev See {settle-IGateway}. */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\n\t\t// load the token into memory\n\t\taddress token = order[_orderId].token;\n\n\t\t// subtract sum of amount based on the input _settlePercent\n\t\torder[_orderId].currentBPS -= _settlePercent;\n\n\t\tif (order[_orderId].currentBPS == 0) {\n\t\t\t// update the transaction to be fulfilled\n\t\t\torder[_orderId].isFulfilled = true;\n\n\t\t\tif (order[_orderId].senderFee != 0) {\n\t\t\t\t// transfer sender fee\n\t\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\t\torder[_orderId].senderFee\n\t\t\t\t);\n\n\t\t\t\t// emit event\n\t\t\t\temit SenderFeeTransferred(\n\t\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\t\torder[_orderId].senderFee\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (order[_orderId].protocolFee != 0) {\n\t\t\t\t// transfer protocol fee\n\t\t\t\tIERC20(token).transfer(treasuryAddress, order[_orderId].protocolFee);\n\t\t\t}\n\t\t}\n\n\t\t// transfer to liquidity provider\n\t\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / MAX_BPS;\n\t\torder[_orderId].amount -= liquidityProviderAmount;\n\t\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\n\n\t\t// emit settled event\n\t\temit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {refund-IGateway}. */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\n\n\t\t// transfer refund fee to the treasury\n\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\n\n\t\t// reset state values\n\t\torder[_orderId].isRefunded = true;\n\t\torder[_orderId].currentBPS = 0;\n\n\t\t// deduct fee from order amount\n\t\tuint256 refundAmount = order[_orderId].amount + order[_orderId].protocolFee - _fee;\n\n\t\t// transfer refund amount and sender fee to the refund address\n\t\tIERC20(order[_orderId].token).transfer(\n\t\t\torder[_orderId].refundAddress,\n\t\t\trefundAmount + order[_orderId].senderFee\n\t\t);\n\n\t\t// emit refunded event\n\t\temit OrderRefunded(_fee, _orderId);\n\n\t\treturn true;\n\t}\n\n\t/* ##################################################################\n VIEW CALLS\n ################################################################## */\n\t/** @dev See {getOrderInfo-IGateway}. */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\n\t\treturn order[_orderId];\n\t}\n\n\t/** @dev See {isTokenSupported-IGateway}. */\n\tfunction isTokenSupported(address _token) external view returns (bool) {\n\t\tif (_isTokenSupported[_token] == 1) return true;\n\t\treturn false;\n\t}\n\n\t/** @dev See {getSupportedInstitutionByCode-IGateway}. */\n\tfunction getSupportedInstitutionByCode(\n\t\tbytes32 _code\n\t) external view returns (SharedStructs.InstitutionByCode memory) {\n\t\treturn supportedInstitutionsByCode[_code];\n\t}\n\n\t/** @dev See {getSupportedInstitutions-IGateway}. */\n\tfunction getSupportedInstitutions(\n\t\tbytes32 _currency\n\t) external view returns (SharedStructs.Institution[] memory) {\n\t\treturn supportedInstitutions[_currency];\n\t}\n\n\t/** @dev See {getFeeDetails-IGateway}. */\n\tfunction getFeeDetails() external view returns (uint64, uint256) {\n\t\treturn (protocolFeePercent, MAX_BPS);\n\t}\n}\n"},"contracts/GatewaySettingManager.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\n\n/**\n * @title GatewaySettingManager\n * @dev This contract manages the settings and configurations for the Gateway protocol.\n */\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\n\nimport {SharedStructs} from './libraries/SharedStructs.sol';\n\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\n\tuint256 internal MAX_BPS;\n\tuint64 internal protocolFeePercent;\n\taddress internal treasuryAddress;\n\taddress internal _aggregatorAddress;\n\n\t// this should decrease if more slots are needed on this contract to avoid collisions with base contract\n\tuint256[50] private __gap;\n\n\tmapping(address => uint256) internal _isTokenSupported;\n\n\tmapping(bytes32 => SharedStructs.Institution[]) internal supportedInstitutions;\n\tmapping(bytes32 => SharedStructs.InstitutionByCode) internal supportedInstitutionsByCode;\n\n\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\n\tevent SupportedInstitutionsUpdated(\n\t\tbytes32 indexed currency,\n\t\tSharedStructs.Institution[] institutions\n\t);\n\tevent ProtocolFeeUpdated(uint64 protocolFee);\n\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\n\tevent SetFeeRecipient(address indexed treasuryAddress);\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\n\t/**\n\t * @dev Sets the boolean value for a specific setting.\n\t * @param what The setting to be updated.\n\t * @param value The address or value associated with the setting.\n\t * @param status The boolean value to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\trequire(status == 1 || status == 2, 'Gateway: invalid status');\n\t\tif (what == 'token') {\n\t\t\t_isTokenSupported[value] = status;\n\t\t\temit SettingManagerBool(what, value, status);\n\t\t}\n\t}\n\n\t/**\n\t * @dev Sets the supported institutions for a specific currency.\n\t * @param currency The currency for which the institutions are being set.\n\t * @param institutions The array of institutions to be set.\n\t */\n\tfunction setSupportedInstitutions(\n\t\tbytes32 currency,\n\t\tSharedStructs.Institution[] memory institutions\n\t) external onlyOwner {\n\t\tdelete supportedInstitutions[currency];\n\t\tfor (uint i; i < institutions.length; ) {\n\t\t\tsupportedInstitutions[currency].push(institutions[i]);\n\t\t\tsupportedInstitutionsByCode[institutions[i].code] = SharedStructs.InstitutionByCode({\n\t\t\t\tname: institutions[i].name,\n\t\t\t\tcurrency: currency\n\t\t\t});\n\t\t\tunchecked {\n\t\t\t\t++i;\n\t\t\t}\n\t\t}\n\t\temit SupportedInstitutionsUpdated(currency, supportedInstitutions[currency]);\n\t}\n\n\t/**\n\t * @dev Updates the protocol fee percentage.\n\t * @param _protocolFeePercent The new protocol fee percentage to be set.\n\t */\n\tfunction updateProtocolFee(uint64 _protocolFeePercent) external onlyOwner {\n\t\tprotocolFeePercent = _protocolFeePercent;\n\t\temit ProtocolFeeUpdated(_protocolFeePercent);\n\t}\n\n\t/**\n\t * @dev Updates a protocol address.\n\t * @param what The address type to be updated (treasury or aggregator).\n\t * @param value The new address to be set.\n\t * Requirements:\n\t * - The value must not be a zero address.\n\t */\n\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\n\t\trequire(value != address(0), 'Gateway: zero address');\n\t\tbool updated;\n\t\tif (what == 'treasury') {\n\t\t\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\n\t\t\ttreasuryAddress = value;\n\t\t\tupdated = true;\n\t\t} else if (what == 'aggregator') {\n\t\t\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\n\t\t\t_aggregatorAddress = value;\n\t\t\tupdated = true;\n\t\t}\n\t\tif (updated) {\n\t\t\temit ProtocolAddressUpdated(what, value);\n\t\t}\n\t}\n}\n"},"contracts/GatewayV2.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\n\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\nimport {IGatewayV2, IERC20} from './interfaces/IGatewayV2.sol';\n\n/**\n * @title Gateway\n * @notice This contract serves as a gateway for creating orders and managing settlements.\n */\ncontract GatewayV2 is IGatewayV2, GatewaySettingManager, PausableUpgradeable {\n\tstruct fee {\n\t\tuint256 protocolFee;\n\t\tuint256 liquidityProviderAmount;\n\t}\n\n\tmapping(bytes32 => Order) private order;\n\tmapping(address => uint256) private _nonce;\n\tuint256[50] private __gap;\n\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @dev Initialize function.\n\t */\n\tfunction initialize() external initializer {\n\t\tMAX_BPS = 100_000;\n\t\t__Ownable2Step_init();\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @dev Modifier that allows only the aggregator to call a function.\n\t */\n\tmodifier onlyAggregator() {\n\t\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\n\t\t_;\n\t}\n\n\t/* ##################################################################\n OWNER FUNCTIONS\n ################################################################## */\n\t/**\n\t * @dev Pause the contract.\n\t */\n\tfunction pause() external onlyOwner {\n\t\t_pause();\n\t}\n\n\t/**\n\t * @dev Unpause the contract.\n\t */\n\tfunction unpause() external onlyOwner {\n\t\t_unpause();\n\t}\n\n\t/* ##################################################################\n USER CALLS\n ################################################################## */\n\t/** @dev See {createOrder-IGateway}. */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tbytes32 _institutionCode,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external whenNotPaused returns (bytes32 orderId) {\n\t\t// checks that are required\n\t\t_handler(\n\t\t\t_token,\n\t\t\t_amount,\n\t\t\t_refundAddress,\n\t\t\t_senderFeeRecipient,\n\t\t\t_senderFee,\n\t\t\t_institutionCode\n\t\t);\n\n\t\t// validate messageHash\n\t\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\n\n\t\t// transfer token from msg.sender to contract\n\t\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\n\n\t\t// increase users nonce to avoid replay attacks\n\t\t_nonce[msg.sender]++;\n\n\t\t// generate transaction id for the transaction\n\t\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender]));\n\n\t\t// update transaction\n\t\tuint256 _protocolFee = (_amount * protocolFeePercent) / MAX_BPS;\n\t\torder[orderId] = Order({\n\t\t\tsender: msg.sender,\n\t\t\ttoken: _token,\n\t\t\tsenderFeeRecipient: _senderFeeRecipient,\n\t\t\tsenderFee: _senderFee,\n\t\t\tprotocolFee: _protocolFee,\n\t\t\tisFulfilled: false,\n\t\t\tisRefunded: false,\n\t\t\trefundAddress: _refundAddress,\n\t\t\tcurrentBPS: uint64(MAX_BPS),\n\t\t\tamount: _amount - _protocolFee\n\t\t});\n\n\t\t// emit order created event\n\t\temit OrderCreated(\n\t\t\torder[orderId].sender,\n\t\t\t_token,\n\t\t\torder[orderId].amount,\n\t\t\t_protocolFee,\n\t\t\torderId,\n\t\t\t_rate,\n\t\t\t_institutionCode,\n\t\t\tmessageHash\n\t\t);\n\t}\n\n\t/**\n\t * @dev Internal function to handle order creation.\n\t * @param _token The address of the token being traded.\n\t * @param _amount The amount of tokens being traded.\n\t * @param _refundAddress The address to refund the tokens in case of cancellation.\n\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\n\t * @param _senderFee The amount of the sender fee.\n\t * @param _institutionCode The code of the institution associated with the order.\n\t */\n\tfunction _handler(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\taddress _refundAddress,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\tbytes32 _institutionCode\n\t) internal view {\n\t\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\n\t\trequire(_amount != 0, 'AmountIsZero');\n\t\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\n\t\trequire(\n\t\t\t_institutionCode.length > 0,\n\t\t\t'InvalidInstitutionCode'\n\t\t);\n\n\t\tif (_senderFee != 0) {\n\t\t\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\n\t\t}\n\t}\n\n\t/* ##################################################################\n AGGREGATOR FUNCTIONS\n ################################################################## */\n\t/** @dev See {settle-IGateway}. */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\n\t\t// load the token into memory\n\t\taddress token = order[_orderId].token;\n\n\t\t// subtract sum of amount based on the input _settlePercent\n\t\torder[_orderId].currentBPS -= _settlePercent;\n\n\t\tif (order[_orderId].currentBPS == 0) {\n\t\t\t// update the transaction to be fulfilled\n\t\t\torder[_orderId].isFulfilled = true;\n\n\t\t\tif (order[_orderId].senderFee != 0) {\n\t\t\t\t// transfer sender fee\n\t\t\t\tIERC20(order[_orderId].token).transfer(\n\t\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\t\torder[_orderId].senderFee\n\t\t\t\t);\n\n\t\t\t\t// emit event\n\t\t\t\temit SenderFeeTransferred(\n\t\t\t\t\torder[_orderId].senderFeeRecipient,\n\t\t\t\t\torder[_orderId].senderFee\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (order[_orderId].protocolFee != 0) {\n\t\t\t\t// transfer protocol fee\n\t\t\t\tIERC20(token).transfer(treasuryAddress, order[_orderId].protocolFee);\n\t\t\t}\n\t\t}\n\n\t\t// transfer to liquidity provider\n\t\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / MAX_BPS;\n\t\torder[_orderId].amount -= liquidityProviderAmount;\n\t\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\n\n\t\t// emit settled event\n\t\temit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent);\n\n\t\treturn true;\n\t}\n\n\t/** @dev See {refund-IGateway}. */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\n\t\t// ensure the transaction has not been fulfilled\n\t\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\n\t\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\n\t\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\n\n\t\t// transfer refund fee to the treasury\n\t\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\n\n\t\t// reset state values\n\t\torder[_orderId].isRefunded = true;\n\t\torder[_orderId].currentBPS = 0;\n\n\t\t// deduct fee from order amount\n\t\tuint256 refundAmount = order[_orderId].amount + order[_orderId].protocolFee - _fee;\n\n\t\t// transfer refund amount and sender fee to the refund address\n\t\tIERC20(order[_orderId].token).transfer(\n\t\t\torder[_orderId].refundAddress,\n\t\t\trefundAmount + order[_orderId].senderFee\n\t\t);\n\n\t\t// emit refunded event\n\t\temit OrderRefunded(_fee, _orderId);\n\n\t\treturn true;\n\t}\n\n\t/* ##################################################################\n VIEW CALLS\n ################################################################## */\n\t/** @dev See {getOrderInfo-IGateway}. */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\n\t\treturn order[_orderId];\n\t}\n\n\t/** @dev See {isTokenSupported-IGateway}. */\n\tfunction isTokenSupported(address _token) external view returns (bool) {\n\t\tif (_isTokenSupported[_token] == 1) return true;\n\t\treturn false;\n\t}\n\n\t/** @dev See {getFeeDetails-IGateway}. */\n\tfunction getFeeDetails() external view returns (uint64, uint256) {\n\t\treturn (protocolFeePercent, MAX_BPS);\n\t}\n}\n"},"contracts/interfaces/IGateway.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\nimport {SharedStructs} from '../libraries/SharedStructs.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGateway {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param institutionCode The code of the institution.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tbytes32 institutionCode,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t */\n\tevent OrderSettled(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint96 settlePercent\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing transaction metadata.\n\t * @param identifier The identifier of the transaction.\n\t * @param institution The institution of the transaction.\n\t * @param name The name of the transaction.\n\t * @param currency The currency of the transaction.\n\t * @param liquidityProviderID The ID of the liquidity provider.\n\t */\n\tstruct TransactionMetadata {\n\t\tbytes8 identifier;\n\t\tbytes8 institution;\n\t\tbytes8 name;\n\t\tbytes8 currency;\n\t\tuint256 liquidityProviderID;\n\t}\n\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _institutionCode The institution code of the sender.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tbytes32 _institutionCode,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n\n\t/**\n\t * @notice Gets the fee details of Gateway.\n\t * @return protocolReward The protocol reward amount.\n\t * @return max_bps The maximum basis points.\n\t */\n\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\n\n\t/**\n\t * @notice Gets the details of a supported institution by code.\n\t * @param _code The institution code.\n\t * @return InstitutionByCode The institution details.\n\t */\n\tfunction getSupportedInstitutionByCode(\n\t\tbytes32 _code\n\t) external view returns (SharedStructs.InstitutionByCode memory);\n\n\t/**\n\t * @notice Gets the details of supported institutions by currency.\n\t * @param _currency The currency code.\n\t * @return Institutions An array of institutions.\n\t */\n\tfunction getSupportedInstitutions(\n\t\tbytes32 _currency\n\t) external view returns (SharedStructs.Institution[] memory);\n}\n"},"contracts/interfaces/IGatewayV2.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\n\nimport {SharedStructs} from '../libraries/SharedStructs.sol';\n\n/**\n * @title IGateway\n * @notice Interface for the Gateway contract.\n */\ninterface IGatewayV2 {\n\t/* ##################################################################\n EVENTS\n ################################################################## */\n\t/**\n\t * @dev Emitted when a deposit is made.\n\t * @param sender The address of the sender.\n\t * @param token The address of the deposited token.\n\t * @param amount The amount of the deposit.\n\t * @param orderId The ID of the order.\n\t * @param rate The rate at which the deposit is made.\n\t * @param institutionCode The code of the institution.\n\t * @param messageHash The hash of the message.\n\t */\n\tevent OrderCreated(\n\t\taddress indexed sender,\n\t\taddress indexed token,\n\t\tuint256 indexed amount,\n\t\tuint256 protocolFee,\n\t\tbytes32 orderId,\n\t\tuint256 rate,\n\t\tbytes32 institutionCode,\n\t\tstring messageHash\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator settles a transaction.\n\t * @param splitOrderId The ID of the split order.\n\t * @param orderId The ID of the order.\n\t * @param liquidityProvider The address of the liquidity provider.\n\t * @param settlePercent The percentage at which the transaction is settled.\n\t */\n\tevent OrderSettled(\n\t\tbytes32 splitOrderId,\n\t\tbytes32 indexed orderId,\n\t\taddress indexed liquidityProvider,\n\t\tuint96 settlePercent\n\t);\n\n\t/**\n\t * @dev Emitted when an aggregator refunds a transaction.\n\t * @param fee The fee deducted from the refund amount.\n\t * @param orderId The ID of the order.\n\t */\n\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\n\n\t/**\n\t * @dev Emitted when the sender's fee is transferred.\n\t * @param sender The address of the sender.\n\t * @param amount The amount of the fee transferred.\n\t */\n\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\n\n\t/* ##################################################################\n STRUCTS\n ################################################################## */\n\t/**\n\t * @dev Struct representing transaction metadata.\n\t * @param identifier The identifier of the transaction.\n\t * @param institution The institution of the transaction.\n\t * @param name The name of the transaction.\n\t * @param currency The currency of the transaction.\n\t * @param liquidityProviderID The ID of the liquidity provider.\n\t */\n\tstruct TransactionMetadata {\n\t\tbytes8 identifier;\n\t\tbytes8 institution;\n\t\tbytes8 name;\n\t\tbytes8 currency;\n\t\tuint256 liquidityProviderID;\n\t}\n\n\t/**\n\t * @dev Struct representing an order.\n\t * @param sender The address of the sender.\n\t * @param token The address of the token.\n\t * @param senderFeeRecipient The address of the sender fee recipient.\n\t * @param senderFee The fee to be paid to the sender fee recipient.\n\t * @param protocolFee The protocol fee to be paid.\n\t * @param isFulfilled Whether the order is fulfilled.\n\t * @param isRefunded Whether the order is refunded.\n\t * @param refundAddress The address to which the refund is made.\n\t * @param currentBPS The current basis points.\n\t * @param amount The amount of the order.\n\t */\n\tstruct Order {\n\t\taddress sender;\n\t\taddress token;\n\t\taddress senderFeeRecipient;\n\t\tuint256 senderFee;\n\t\tuint256 protocolFee;\n\t\tbool isFulfilled;\n\t\tbool isRefunded;\n\t\taddress refundAddress;\n\t\tuint96 currentBPS;\n\t\tuint256 amount;\n\t}\n\n\t/* ##################################################################\n EXTERNAL CALLS\n ################################################################## */\n\t/**\n\t * @notice Locks the sender's amount of token into Gateway.\n\t * @dev Requirements:\n\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n\t * - `_token` must be an acceptable token. See {isTokenSupported}.\n\t * - `amount` must be greater than minimum.\n\t * - `_refundAddress` refund address must not be zero address.\n\t * @param _token The address of the token.\n\t * @param _amount The amount in the decimal of `_token` to be locked.\n\t * @param _institutionCode The institution code of the sender.\n\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n\t * @param messageHash The hash of the message.\n\t * @return _orderId The ID of the order.\n\t */\n\tfunction createOrder(\n\t\taddress _token,\n\t\tuint256 _amount,\n\t\tbytes32 _institutionCode,\n\t\tuint96 _rate,\n\t\taddress _senderFeeRecipient,\n\t\tuint256 _senderFee,\n\t\taddress _refundAddress,\n\t\tstring calldata messageHash\n\t) external returns (bytes32 _orderId);\n\n\t/**\n\t * @notice Settles a transaction and distributes rewards accordingly.\n\t * @param _splitOrderId The ID of the split order.\n\t * @param _orderId The ID of the transaction.\n\t * @param _liquidityProvider The address of the liquidity provider.\n\t * @param _settlePercent The rate at which the transaction is settled.\n\t * @return bool the settlement is successful.\n\t */\n\tfunction settle(\n\t\tbytes32 _splitOrderId,\n\t\tbytes32 _orderId,\n\t\taddress _liquidityProvider,\n\t\tuint64 _settlePercent\n\t) external returns (bool);\n\n\t/**\n\t * @notice Refunds to the specified refundable address.\n\t * @dev Requirements:\n\t * - Only aggregators can call this function.\n\t * @param _fee The amount to be deducted from the amount to be refunded.\n\t * @param _orderId The ID of the transaction.\n\t * @return bool the refund is successful.\n\t */\n\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\n\n\t/**\n\t * @notice Checks if a token is supported by Gateway.\n\t * @param _token The address of the token to check.\n\t * @return bool the token is supported.\n\t */\n\tfunction isTokenSupported(address _token) external view returns (bool);\n\n\t/**\n\t * @notice Gets the details of an order.\n\t * @param _orderId The ID of the order.\n\t * @return Order The order details.\n\t */\n\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\n\n\t/**\n\t * @notice Gets the fee details of Gateway.\n\t * @return protocolReward The protocol reward amount.\n\t * @return max_bps The maximum basis points.\n\t */\n\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\n\n}\n"},"contracts/libraries/SharedStructs.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nlibrary SharedStructs {\n /**\n * @dev Struct representing an institution.\n * @param code The code of the institution.\n * @param name The name of the institution.\n */\n struct Institution {\n bytes32 code;\n bytes32 name;\n }\n\n /**\n * @dev Struct representing an institution by code.\n * @param name The name of the institution.\n * @param currency The currency of the institution.\n */\n struct InstitutionByCode {\n bytes32 name;\n bytes32 currency;\n }\n}"},"contracts/mocks/MockUSDC.sol":{"content":"//SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.18;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\n/// @dev Mock mintable USDC\ncontract MockUSDT is ERC20 {\n constructor() ERC20(\"MockUDSC\", \"MUSDC\") {\n _mint(msg.sender, 1_000_000E18);\n }\n\n function mint(uint256 _amount) external {\n _mint(msg.sender, _amount);\n }\n\n function burn(uint256 _amount) external {\n _burn(msg.sender, _amount);\n }\n\n function burnAll() external {\n uint256 _balanceOf = balanceOf(msg.sender);\n require(_balanceOf > 0, \"MockUSDT: Nothing to burn\");\n _burn(msg.sender, _balanceOf);\n }\n}\n"}},"settings":{"optimizer":{"enabled":false,"runs":200},"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","devdoc","userdoc","storageLayout","evm.gasEstimates"],"":["ast"]}},"metadata":{"useLiteralContent":true}}},"output":{"sources":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239]},"id":107,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"107:23:0"},{"absolutePath":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol","file":"./OwnableUpgradeable.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":240,"src":"132:34:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":107,"sourceUnit":409,"src":"167:63:0","symbolAliases":[{"foreign":{"id":3,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"175:13:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"Initializable","nameLocations":["719:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"719:13:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"719:13:0"},{"baseName":{"id":8,"name":"OwnableUpgradeable","nameLocations":["734:18:0"],"nodeType":"IdentifierPath","referencedDeclaration":239,"src":"734:18:0"},"id":9,"nodeType":"InheritanceSpecifier","src":"734:18:0"}],"canonicalName":"Ownable2StepUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"232:441:0","text":" @dev Contract module which provides access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership} and {acceptOwnership}.\n This module is used through inheritance. It will make available all functions\n from parent (Ownable)."},"fullyImplemented":true,"id":106,"linearizedBaseContracts":[106,239,917,408],"name":"Ownable2StepUpgradeable","nameLocation":"692:23:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":11,"mutability":"mutable","name":"_pendingOwner","nameLocation":"775:13:0","nodeType":"VariableDeclaration","scope":106,"src":"759:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"759:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700","id":17,"name":"OwnershipTransferStarted","nameLocation":"801:24:0","nodeType":"EventDefinition","parameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"842:13:0","nodeType":"VariableDeclaration","scope":17,"src":"826:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"873:8:0","nodeType":"VariableDeclaration","scope":17,"src":"857:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14,"name":"address","nodeType":"ElementaryTypeName","src":"857:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"825:57:0"},"src":"795:88:0"},{"body":{"id":25,"nodeType":"Block","src":"946:43:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":22,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"956:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"956:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24,"nodeType":"ExpressionStatement","src":"956:26:0"}]},"id":26,"implemented":true,"kind":"function","modifiers":[{"id":20,"kind":"modifierInvocation","modifierName":{"id":19,"name":"onlyInitializing","nameLocations":["929:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"929:16:0"},"nodeType":"ModifierInvocation","src":"929:16:0"}],"name":"__Ownable2Step_init","nameLocation":"898:19:0","nodeType":"FunctionDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[],"src":"917:2:0"},"returnParameters":{"id":21,"nodeType":"ParameterList","parameters":[],"src":"946:0:0"},"scope":106,"src":"889:100:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":31,"nodeType":"Block","src":"1062:7:0","statements":[]},"id":32,"implemented":true,"kind":"function","modifiers":[{"id":29,"kind":"modifierInvocation","modifierName":{"id":28,"name":"onlyInitializing","nameLocations":["1045:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1045:16:0"},"nodeType":"ModifierInvocation","src":"1045:16:0"}],"name":"__Ownable2Step_init_unchained","nameLocation":"1004:29:0","nodeType":"FunctionDefinition","parameters":{"id":27,"nodeType":"ParameterList","parameters":[],"src":"1033:2:0"},"returnParameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1062:0:0"},"scope":106,"src":"995:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":40,"nodeType":"Block","src":"1206:37:0","statements":[{"expression":{"id":38,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1223:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":37,"id":39,"nodeType":"Return","src":"1216:20:0"}]},"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"1074:65:0","text":" @dev Returns the address of the pending owner."},"functionSelector":"e30c3978","id":41,"implemented":true,"kind":"function","modifiers":[],"name":"pendingOwner","nameLocation":"1153:12:0","nodeType":"FunctionDefinition","parameters":{"id":34,"nodeType":"ParameterList","parameters":[],"src":"1165:2:0"},"returnParameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":41,"src":"1197:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":35,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1196:9:0"},"scope":106,"src":"1144:99:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[213],"body":{"id":60,"nodeType":"Block","src":"1515:99:0","statements":[{"expression":{"id":52,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":50,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1525:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":51,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1541:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1525:24:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":53,"nodeType":"ExpressionStatement","src":"1525:24:0"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":55,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1589:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1589:7:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":57,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":44,"src":"1598:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":54,"name":"OwnershipTransferStarted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17,"src":"1564:24:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":59,"nodeType":"EmitStatement","src":"1559:48:0"}]},"documentation":{"id":42,"nodeType":"StructuredDocumentation","src":"1249:182:0","text":" @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":61,"implemented":true,"kind":"function","modifiers":[{"id":48,"kind":"modifierInvocation","modifierName":{"id":47,"name":"onlyOwner","nameLocations":["1505:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1505:9:0"},"nodeType":"ModifierInvocation","src":"1505:9:0"}],"name":"transferOwnership","nameLocation":"1445:17:0","nodeType":"FunctionDefinition","overrides":{"id":46,"nodeType":"OverrideSpecifier","overrides":[],"src":"1496:8:0"},"parameters":{"id":45,"nodeType":"ParameterList","parameters":[{"constant":false,"id":44,"mutability":"mutable","name":"newOwner","nameLocation":"1471:8:0","nodeType":"VariableDeclaration","scope":61,"src":"1463:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":43,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:18:0"},"returnParameters":{"id":49,"nodeType":"ParameterList","parameters":[],"src":"1515:0:0"},"scope":106,"src":"1436:178:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[233],"body":{"id":77,"nodeType":"Block","src":"1870:81:0","statements":[{"expression":{"id":69,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"1880:20:0","subExpression":{"id":68,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"1887:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":70,"nodeType":"ExpressionStatement","src":"1880:20:0"},{"expression":{"arguments":[{"id":74,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":64,"src":"1935:8:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":71,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1910:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Ownable2StepUpgradeable_$106_$","typeString":"type(contract super Ownable2StepUpgradeable)"}},"id":73,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1916:18:0","memberName":"_transferOwnership","nodeType":"MemberAccess","referencedDeclaration":233,"src":"1910:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":76,"nodeType":"ExpressionStatement","src":"1910:34:0"}]},"documentation":{"id":62,"nodeType":"StructuredDocumentation","src":"1620:173:0","text":" @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n Internal function without access restriction."},"id":78,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"1807:18:0","nodeType":"FunctionDefinition","overrides":{"id":66,"nodeType":"OverrideSpecifier","overrides":[],"src":"1861:8:0"},"parameters":{"id":65,"nodeType":"ParameterList","parameters":[{"constant":false,"id":64,"mutability":"mutable","name":"newOwner","nameLocation":"1834:8:0","nodeType":"VariableDeclaration","scope":78,"src":"1826:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":63,"name":"address","nodeType":"ElementaryTypeName","src":"1826:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1825:18:0"},"returnParameters":{"id":67,"nodeType":"ParameterList","parameters":[],"src":"1870:0:0"},"scope":106,"src":"1798:153:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":99,"nodeType":"Block","src":"2073:170:0","statements":[{"assignments":[83],"declarations":[{"constant":false,"id":83,"mutability":"mutable","name":"sender","nameLocation":"2091:6:0","nodeType":"VariableDeclaration","scope":99,"src":"2083:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":82,"name":"address","nodeType":"ElementaryTypeName","src":"2083:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":86,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":84,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2100:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2100:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2083:29:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":91,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"2130:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2130:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":90,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2148:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2130:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e6572","id":92,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2156:43:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""},"value":"Ownable2Step: caller is not the new owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","typeString":"literal_string \"Ownable2Step: caller is not the new owner\""}],"id":87,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2122:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":93,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2122:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":94,"nodeType":"ExpressionStatement","src":"2122:78:0"},{"expression":{"arguments":[{"id":96,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"2229:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":95,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[78],"referencedDeclaration":78,"src":"2210:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":97,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2210:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":98,"nodeType":"ExpressionStatement","src":"2210:26:0"}]},"documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"1957:69:0","text":" @dev The new owner accepts the ownership transfer."},"functionSelector":"79ba5097","id":100,"implemented":true,"kind":"function","modifiers":[],"name":"acceptOwnership","nameLocation":"2040:15:0","nodeType":"FunctionDefinition","parameters":{"id":80,"nodeType":"ParameterList","parameters":[],"src":"2055:2:0"},"returnParameters":{"id":81,"nodeType":"ParameterList","parameters":[],"src":"2073:0:0"},"scope":106,"src":"2031:212:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"constant":false,"documentation":{"id":101,"nodeType":"StructuredDocumentation","src":"2249:254:0","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":105,"mutability":"mutable","name":"__gap","nameLocation":"2528:5:0","nodeType":"VariableDeclaration","scope":106,"src":"2508:25:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"2508:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":104,"length":{"hexValue":"3439","id":103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2516:2:0","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"2508:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":107,"src":"674:1862:0","usedErrors":[]}],"src":"107:2430:0"},"id":0},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"OwnableUpgradeable":[239]},"id":240,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":108,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"102:23:1"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":109,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":918,"src":"127:41:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":111,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":240,"sourceUnit":409,"src":"169:63:1","symbolAliases":[{"foreign":{"id":110,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"177:13:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":113,"name":"Initializable","nameLocations":["769:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"769:13:1"},"id":114,"nodeType":"InheritanceSpecifier","src":"769:13:1"},{"baseName":{"id":115,"name":"ContextUpgradeable","nameLocations":["784:18:1"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"784:18:1"},"id":116,"nodeType":"InheritanceSpecifier","src":"784:18:1"}],"canonicalName":"OwnableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"234:494:1","text":" @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."},"fullyImplemented":true,"id":239,"linearizedBaseContracts":[239,917,408],"name":"OwnableUpgradeable","nameLocation":"747:18:1","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":118,"mutability":"mutable","name":"_owner","nameLocation":"825:6:1","nodeType":"VariableDeclaration","scope":239,"src":"809:22:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"809:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":124,"name":"OwnershipTransferred","nameLocation":"844:20:1","nodeType":"EventDefinition","parameters":{"id":123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"881:13:1","nodeType":"VariableDeclaration","scope":124,"src":"865:29:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":119,"name":"address","nodeType":"ElementaryTypeName","src":"865:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":122,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"912:8:1","nodeType":"VariableDeclaration","scope":124,"src":"896:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":121,"name":"address","nodeType":"ElementaryTypeName","src":"896:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"864:57:1"},"src":"838:84:1"},{"body":{"id":133,"nodeType":"Block","src":"1076:43:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":130,"name":"__Ownable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"1086:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1086:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":132,"nodeType":"ExpressionStatement","src":"1086:26:1"}]},"documentation":{"id":125,"nodeType":"StructuredDocumentation","src":"928:91:1","text":" @dev Initializes the contract setting the deployer as the initial owner."},"id":134,"implemented":true,"kind":"function","modifiers":[{"id":128,"kind":"modifierInvocation","modifierName":{"id":127,"name":"onlyInitializing","nameLocations":["1059:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1059:16:1"},"nodeType":"ModifierInvocation","src":"1059:16:1"}],"name":"__Ownable_init","nameLocation":"1033:14:1","nodeType":"FunctionDefinition","parameters":{"id":126,"nodeType":"ParameterList","parameters":[],"src":"1047:2:1"},"returnParameters":{"id":129,"nodeType":"ParameterList","parameters":[],"src":"1076:0:1"},"scope":239,"src":"1024:95:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":144,"nodeType":"Block","src":"1187:49:1","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":140,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1216:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1216:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":139,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"1197:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1197:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":143,"nodeType":"ExpressionStatement","src":"1197:32:1"}]},"id":145,"implemented":true,"kind":"function","modifiers":[{"id":137,"kind":"modifierInvocation","modifierName":{"id":136,"name":"onlyInitializing","nameLocations":["1170:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1170:16:1"},"nodeType":"ModifierInvocation","src":"1170:16:1"}],"name":"__Ownable_init_unchained","nameLocation":"1134:24:1","nodeType":"FunctionDefinition","parameters":{"id":135,"nodeType":"ParameterList","parameters":[],"src":"1158:2:1"},"returnParameters":{"id":138,"nodeType":"ParameterList","parameters":[],"src":"1187:0:1"},"scope":239,"src":"1125:111:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":152,"nodeType":"Block","src":"1345:41:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":148,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"1355:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1355:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":150,"nodeType":"ExpressionStatement","src":"1355:13:1"},{"id":151,"nodeType":"PlaceholderStatement","src":"1378:1:1"}]},"documentation":{"id":146,"nodeType":"StructuredDocumentation","src":"1242:77:1","text":" @dev Throws if called by any account other than the owner."},"id":153,"name":"onlyOwner","nameLocation":"1333:9:1","nodeType":"ModifierDefinition","parameters":{"id":147,"nodeType":"ParameterList","parameters":[],"src":"1342:2:1"},"src":"1324:62:1","virtual":false,"visibility":"internal"},{"body":{"id":161,"nodeType":"Block","src":"1517:30:1","statements":[{"expression":{"id":159,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1534:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":158,"id":160,"nodeType":"Return","src":"1527:13:1"}]},"documentation":{"id":154,"nodeType":"StructuredDocumentation","src":"1392:65:1","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":162,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1471:5:1","nodeType":"FunctionDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[],"src":"1476:2:1"},"returnParameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":162,"src":"1508:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":156,"name":"address","nodeType":"ElementaryTypeName","src":"1508:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1507:9:1"},"scope":239,"src":"1462:85:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":175,"nodeType":"Block","src":"1665:85:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":167,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":162,"src":"1683:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1683:7:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":169,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"1694:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1694:12:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1683:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","id":172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1708:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""},"value":"Ownable: caller is not the owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","typeString":"literal_string \"Ownable: caller is not the owner\""}],"id":166,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1675:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":174,"nodeType":"ExpressionStatement","src":"1675:68:1"}]},"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"1553:62:1","text":" @dev Throws if the sender is not the owner."},"id":176,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1629:11:1","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"1640:2:1"},"returnParameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"1665:0:1"},"scope":239,"src":"1620:130:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":189,"nodeType":"Block","src":"2139:47:1","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2176:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2168:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":183,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:1","typeDescriptions":{}}},"id":186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":182,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2149:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2149:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":188,"nodeType":"ExpressionStatement","src":"2149:30:1"}]},"documentation":{"id":177,"nodeType":"StructuredDocumentation","src":"1756:324:1","text":" @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby disabling any functionality that is only available to the owner."},"functionSelector":"715018a6","id":190,"implemented":true,"kind":"function","modifiers":[{"id":180,"kind":"modifierInvocation","modifierName":{"id":179,"name":"onlyOwner","nameLocations":["2129:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2129:9:1"},"nodeType":"ModifierInvocation","src":"2129:9:1"}],"name":"renounceOwnership","nameLocation":"2094:17:1","nodeType":"FunctionDefinition","parameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"2111:2:1"},"returnParameters":{"id":181,"nodeType":"ParameterList","parameters":[],"src":"2139:0:1"},"scope":239,"src":"2085:101:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":212,"nodeType":"Block","src":"2405:128:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":199,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2423:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2443:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2435:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":200,"name":"address","nodeType":"ElementaryTypeName","src":"2435:7:1","typeDescriptions":{}}},"id":203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2423:22:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373","id":205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2447:40:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""},"value":"Ownable: new owner is the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe","typeString":"literal_string \"Ownable: new owner is the zero address\""}],"id":198,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2415:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2415:73:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":207,"nodeType":"ExpressionStatement","src":"2415:73:1"},{"expression":{"arguments":[{"id":209,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":193,"src":"2517:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":208,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":233,"src":"2498:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2498:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":211,"nodeType":"ExpressionStatement","src":"2498:28:1"}]},"documentation":{"id":191,"nodeType":"StructuredDocumentation","src":"2192:138:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":213,"implemented":true,"kind":"function","modifiers":[{"id":196,"kind":"modifierInvocation","modifierName":{"id":195,"name":"onlyOwner","nameLocations":["2395:9:1"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2395:9:1"},"nodeType":"ModifierInvocation","src":"2395:9:1"}],"name":"transferOwnership","nameLocation":"2344:17:1","nodeType":"FunctionDefinition","parameters":{"id":194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":193,"mutability":"mutable","name":"newOwner","nameLocation":"2370:8:1","nodeType":"VariableDeclaration","scope":213,"src":"2362:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":192,"name":"address","nodeType":"ElementaryTypeName","src":"2362:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2361:18:1"},"returnParameters":{"id":197,"nodeType":"ParameterList","parameters":[],"src":"2405:0:1"},"scope":239,"src":"2335:198:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":232,"nodeType":"Block","src":"2750:124:1","statements":[{"assignments":[220],"declarations":[{"constant":false,"id":220,"mutability":"mutable","name":"oldOwner","nameLocation":"2768:8:1","nodeType":"VariableDeclaration","scope":232,"src":"2760:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":219,"name":"address","nodeType":"ElementaryTypeName","src":"2760:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":222,"initialValue":{"id":221,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2779:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2760:25:1"},{"expression":{"id":225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":223,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"2795:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":224,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2804:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2795:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":226,"nodeType":"ExpressionStatement","src":"2795:17:1"},{"eventCall":{"arguments":[{"id":228,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"2848:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":229,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":216,"src":"2858:8:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":124,"src":"2827:20:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2827:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":231,"nodeType":"EmitStatement","src":"2822:45:1"}]},"documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"2539:143:1","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":233,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2696:18:1","nodeType":"FunctionDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":216,"mutability":"mutable","name":"newOwner","nameLocation":"2723:8:1","nodeType":"VariableDeclaration","scope":233,"src":"2715:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":215,"name":"address","nodeType":"ElementaryTypeName","src":"2715:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2714:18:1"},"returnParameters":{"id":218,"nodeType":"ParameterList","parameters":[],"src":"2750:0:1"},"scope":239,"src":"2687:187:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":234,"nodeType":"StructuredDocumentation","src":"2880:254:1","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":238,"mutability":"mutable","name":"__gap","nameLocation":"3159:5:1","nodeType":"VariableDeclaration","scope":239,"src":"3139:25:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":235,"name":"uint256","nodeType":"ElementaryTypeName","src":"3139:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":237,"length":{"hexValue":"3439","id":236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:2:1","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3139:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":240,"src":"729:2438:1","usedErrors":[]}],"src":"102:3066:1"},"id":1},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","exportedSymbols":{"AddressUpgradeable":[866],"Initializable":[408]},"id":409,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":241,"literals":["solidity","^","0.8",".2"],"nodeType":"PragmaDirective","src":"113:23:2"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","file":"../../utils/AddressUpgradeable.sol","id":242,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":409,"sourceUnit":867,"src":"138:44:2","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":243,"nodeType":"StructuredDocumentation","src":"184:2209:2","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```solidity\n contract MyToken is ERC20Upgradeable {\n function initialize() initializer public {\n __ERC20_init(\"MyToken\", \"MTK\");\n }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n function initializeV2() reinitializer(2) public {\n __ERC20Permit_init(\"MyToken\");\n }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":408,"linearizedBaseContracts":[408],"name":"Initializable","nameLocation":"2412:13:2","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"2432:109:2","text":" @dev Indicates that the contract has been initialized.\n @custom:oz-retyped-from bool"},"id":246,"mutability":"mutable","name":"_initialized","nameLocation":"2560:12:2","nodeType":"VariableDeclaration","scope":408,"src":"2546:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":245,"name":"uint8","nodeType":"ElementaryTypeName","src":"2546:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"constant":false,"documentation":{"id":247,"nodeType":"StructuredDocumentation","src":"2579:91:2","text":" @dev Indicates that the contract is in the process of being initialized."},"id":249,"mutability":"mutable","name":"_initializing","nameLocation":"2688:13:2","nodeType":"VariableDeclaration","scope":408,"src":"2675:26:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":248,"name":"bool","nodeType":"ElementaryTypeName","src":"2675:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"anonymous":false,"documentation":{"id":250,"nodeType":"StructuredDocumentation","src":"2708:90:2","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498","id":254,"name":"Initialized","nameLocation":"2809:11:2","nodeType":"EventDefinition","parameters":{"id":253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"2827:7:2","nodeType":"VariableDeclaration","scope":254,"src":"2821:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":251,"name":"uint8","nodeType":"ElementaryTypeName","src":"2821:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2820:15:2"},"src":"2803:33:2"},{"body":{"id":309,"nodeType":"Block","src":"3269:483:2","statements":[{"assignments":[258],"declarations":[{"constant":false,"id":258,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"3284:14:2","nodeType":"VariableDeclaration","scope":309,"src":"3279:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":257,"name":"bool","nodeType":"ElementaryTypeName","src":"3279:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":261,"initialValue":{"id":260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3301:14:2","subExpression":{"id":259,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3302:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3279:36:2"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":263,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3347:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":264,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3365:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3380:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3365:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3347:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3346:36:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3387:45:2","subExpression":{"arguments":[{"arguments":[{"id":273,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3426:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$408","typeString":"contract Initializable"}],"id":272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3418:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"3418:7:2","typeDescriptions":{}}},"id":274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":269,"name":"AddressUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":866,"src":"3388:18:2","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AddressUpgradeable_$866_$","typeString":"type(library AddressUpgradeable)"}},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3407:10:2","memberName":"isContract","nodeType":"MemberAccess","referencedDeclaration":554,"src":"3388:29:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3388:44:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":277,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3436:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3452:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3436:17:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3387:66:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3386:68:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3346:108:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3468:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":262,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3325:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3325:201:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"ExpressionStatement","src":"3325:201:2"},{"expression":{"id":288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":286,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"3536:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3551:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3536:16:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":289,"nodeType":"ExpressionStatement","src":"3536:16:2"},{"condition":{"id":290,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3566:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":296,"nodeType":"IfStatement","src":"3562:65:2","trueBody":{"id":295,"nodeType":"Block","src":"3582:45:2","statements":[{"expression":{"id":293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":291,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3596:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3612:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3596:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":294,"nodeType":"ExpressionStatement","src":"3596:20:2"}]}},{"id":297,"nodeType":"PlaceholderStatement","src":"3636:1:2"},{"condition":{"id":298,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":258,"src":"3651:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":308,"nodeType":"IfStatement","src":"3647:99:2","trueBody":{"id":307,"nodeType":"Block","src":"3667:79:2","statements":[{"expression":{"id":301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":299,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3681:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3697:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3681:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":302,"nodeType":"ExpressionStatement","src":"3681:21:2"},{"eventCall":{"arguments":[{"hexValue":"31","id":304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3733:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":303,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"3721:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3721:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":306,"nodeType":"EmitStatement","src":"3716:19:2"}]}}]},"documentation":{"id":255,"nodeType":"StructuredDocumentation","src":"2842:399:2","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts.\n Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\n constructor.\n Emits an {Initialized} event."},"id":310,"name":"initializer","nameLocation":"3255:11:2","nodeType":"ModifierDefinition","parameters":{"id":256,"nodeType":"ParameterList","parameters":[],"src":"3266:2:2"},"src":"3246:506:2","virtual":false,"visibility":"internal"},{"body":{"id":342,"nodeType":"Block","src":"4863:255:2","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4881:14:2","subExpression":{"id":316,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"4882:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":318,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4899:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":319,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4914:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4899:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4881:40:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564","id":322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4923:48:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""},"value":"Initializable: contract is already initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","typeString":"literal_string \"Initializable: contract is already initialized\""}],"id":315,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4873:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4873:99:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":324,"nodeType":"ExpressionStatement","src":"4873:99:2"},{"expression":{"id":327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":325,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"4982:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":326,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"4997:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4982:22:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":328,"nodeType":"ExpressionStatement","src":"4982:22:2"},{"expression":{"id":331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":329,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5014:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5030:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5014:20:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":332,"nodeType":"ExpressionStatement","src":"5014:20:2"},{"id":333,"nodeType":"PlaceholderStatement","src":"5044:1:2"},{"expression":{"id":336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":334,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5055:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5071:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5055:21:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":337,"nodeType":"ExpressionStatement","src":"5055:21:2"},{"eventCall":{"arguments":[{"id":339,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":313,"src":"5103:7:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":338,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"5091:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5091:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":341,"nodeType":"EmitStatement","src":"5086:25:2"}]},"documentation":{"id":311,"nodeType":"StructuredDocumentation","src":"3758:1062:2","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n A reinitializer may be used after the original initialization step. This is essential to configure modules that\n are added through upgrades and that require initialization.\n When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n cannot be nested. If one is invoked in the context of another, execution will revert.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator.\n WARNING: setting the version to 255 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":343,"name":"reinitializer","nameLocation":"4834:13:2","nodeType":"ModifierDefinition","parameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":313,"mutability":"mutable","name":"version","nameLocation":"4854:7:2","nodeType":"VariableDeclaration","scope":343,"src":"4848:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":312,"name":"uint8","nodeType":"ElementaryTypeName","src":"4848:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4847:15:2"},"src":"4825:293:2","virtual":false,"visibility":"internal"},{"body":{"id":352,"nodeType":"Block","src":"5356:97:2","statements":[{"expression":{"arguments":[{"id":347,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"5374:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420696e697469616c697a696e67","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5389:45:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""},"value":"Initializable: contract is not initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","typeString":"literal_string \"Initializable: contract is not initializing\""}],"id":346,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5366:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5366:69:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":350,"nodeType":"ExpressionStatement","src":"5366:69:2"},{"id":351,"nodeType":"PlaceholderStatement","src":"5445:1:2"}]},"documentation":{"id":344,"nodeType":"StructuredDocumentation","src":"5124:199:2","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":353,"name":"onlyInitializing","nameLocation":"5337:16:2","nodeType":"ModifierDefinition","parameters":{"id":345,"nodeType":"ParameterList","parameters":[],"src":"5353:2:2"},"src":"5328:125:2","virtual":false,"visibility":"internal"},{"body":{"id":388,"nodeType":"Block","src":"5988:231:2","statements":[{"expression":{"arguments":[{"id":359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6006:14:2","subExpression":{"id":358,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6007:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e67","id":360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6022:41:2","typeDescriptions":{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""},"value":"Initializable: contract is initializing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","typeString":"literal_string \"Initializable: contract is initializing\""}],"id":357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5998:7:2","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5998:66:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":362,"nodeType":"ExpressionStatement","src":"5998:66:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":363,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6078:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6099:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":365,"name":"uint8","nodeType":"ElementaryTypeName","src":"6099:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":364,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6094:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6094:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6106:3:2","memberName":"max","nodeType":"MemberAccess","src":"6094:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6078:31:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":387,"nodeType":"IfStatement","src":"6074:139:2","trueBody":{"id":386,"nodeType":"Block","src":"6111:102:2","statements":[{"expression":{"id":376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":370,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6125:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6145:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":372,"name":"uint8","nodeType":"ElementaryTypeName","src":"6145:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":371,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6140:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6140:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6152:3:2","memberName":"max","nodeType":"MemberAccess","src":"6140:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6125:30:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":377,"nodeType":"ExpressionStatement","src":"6125:30:2"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6191:5:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":380,"name":"uint8","nodeType":"ElementaryTypeName","src":"6191:5:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":379,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6186:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6186:11:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6198:3:2","memberName":"max","nodeType":"MemberAccess","src":"6186:15:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":378,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":254,"src":"6174:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint8_$returns$__$","typeString":"function (uint8)"}},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6174:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":385,"nodeType":"EmitStatement","src":"6169:33:2"}]}}]},"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"5459:475:2","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies.\n Emits an {Initialized} event the first time it is successfully executed."},"id":389,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"5948:20:2","nodeType":"FunctionDefinition","parameters":{"id":355,"nodeType":"ParameterList","parameters":[],"src":"5968:2:2"},"returnParameters":{"id":356,"nodeType":"ParameterList","parameters":[],"src":"5988:0:2"},"scope":408,"src":"5939:280:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":397,"nodeType":"Block","src":"6393:36:2","statements":[{"expression":{"id":395,"name":"_initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":246,"src":"6410:12:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":394,"id":396,"nodeType":"Return","src":"6403:19:2"}]},"documentation":{"id":390,"nodeType":"StructuredDocumentation","src":"6225:99:2","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":398,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"6338:22:2","nodeType":"FunctionDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[],"src":"6360:2:2"},"returnParameters":{"id":394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":398,"src":"6386:5:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":392,"name":"uint8","nodeType":"ElementaryTypeName","src":"6386:5:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6385:7:2"},"scope":408,"src":"6329:100:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":406,"nodeType":"Block","src":"6601:37:2","statements":[{"expression":{"id":404,"name":"_initializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6618:13:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":403,"id":405,"nodeType":"Return","src":"6611:20:2"}]},"documentation":{"id":399,"nodeType":"StructuredDocumentation","src":"6435:105:2","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":407,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"6554:15:2","nodeType":"FunctionDefinition","parameters":{"id":400,"nodeType":"ParameterList","parameters":[],"src":"6569:2:2"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":407,"src":"6595:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":401,"name":"bool","nodeType":"ElementaryTypeName","src":"6595:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6594:6:2"},"scope":408,"src":"6545:93:2","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":409,"src":"2394:4246:2","usedErrors":[]}],"src":"113:6528:2"},"id":2},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408],"PausableUpgradeable":[536]},"id":537,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":410,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:3"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":411,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":918,"src":"130:41:3","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":413,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":537,"sourceUnit":409,"src":"172:63:3","symbolAliases":[{"foreign":{"id":412,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"180:13:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":415,"name":"Initializable","nameLocations":["718:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"718:13:3"},"id":416,"nodeType":"InheritanceSpecifier","src":"718:13:3"},{"baseName":{"id":417,"name":"ContextUpgradeable","nameLocations":["733:18:3"],"nodeType":"IdentifierPath","referencedDeclaration":917,"src":"733:18:3"},"id":418,"nodeType":"InheritanceSpecifier","src":"733:18:3"}],"canonicalName":"PausableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":414,"nodeType":"StructuredDocumentation","src":"237:439:3","text":" @dev Contract module which allows children to implement an emergency stop\n mechanism that can be triggered by an authorized account.\n This module is used through inheritance. It will make available the\n modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n the functions of your contract. Note that they will not be pausable by\n simply including this module, only once the modifiers are put in place."},"fullyImplemented":true,"id":536,"linearizedBaseContracts":[536,917,408],"name":"PausableUpgradeable","nameLocation":"695:19:3","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":419,"nodeType":"StructuredDocumentation","src":"758:73:3","text":" @dev Emitted when the pause is triggered by `account`."},"eventSelector":"62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258","id":423,"name":"Paused","nameLocation":"842:6:3","nodeType":"EventDefinition","parameters":{"id":422,"nodeType":"ParameterList","parameters":[{"constant":false,"id":421,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"857:7:3","nodeType":"VariableDeclaration","scope":423,"src":"849:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":420,"name":"address","nodeType":"ElementaryTypeName","src":"849:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"848:17:3"},"src":"836:30:3"},{"anonymous":false,"documentation":{"id":424,"nodeType":"StructuredDocumentation","src":"872:70:3","text":" @dev Emitted when the pause is lifted by `account`."},"eventSelector":"5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa","id":428,"name":"Unpaused","nameLocation":"953:8:3","nodeType":"EventDefinition","parameters":{"id":427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":426,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"970:7:3","nodeType":"VariableDeclaration","scope":428,"src":"962:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":425,"name":"address","nodeType":"ElementaryTypeName","src":"962:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"961:17:3"},"src":"947:32:3"},{"constant":false,"id":430,"mutability":"mutable","name":"_paused","nameLocation":"998:7:3","nodeType":"VariableDeclaration","scope":536,"src":"985:20:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":429,"name":"bool","nodeType":"ElementaryTypeName","src":"985:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"private"},{"body":{"id":439,"nodeType":"Block","src":"1137:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":436,"name":"__Pausable_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":450,"src":"1147:25:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1147:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":438,"nodeType":"ExpressionStatement","src":"1147:27:3"}]},"documentation":{"id":431,"nodeType":"StructuredDocumentation","src":"1012:67:3","text":" @dev Initializes the contract in unpaused state."},"id":440,"implemented":true,"kind":"function","modifiers":[{"id":434,"kind":"modifierInvocation","modifierName":{"id":433,"name":"onlyInitializing","nameLocations":["1120:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1120:16:3"},"nodeType":"ModifierInvocation","src":"1120:16:3"}],"name":"__Pausable_init","nameLocation":"1093:15:3","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[],"src":"1108:2:3"},"returnParameters":{"id":435,"nodeType":"ParameterList","parameters":[],"src":"1137:0:3"},"scope":536,"src":"1084:97:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":449,"nodeType":"Block","src":"1250:32:3","statements":[{"expression":{"id":447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":445,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1260:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1270:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"1260:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":448,"nodeType":"ExpressionStatement","src":"1260:15:3"}]},"id":450,"implemented":true,"kind":"function","modifiers":[{"id":443,"kind":"modifierInvocation","modifierName":{"id":442,"name":"onlyInitializing","nameLocations":["1233:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"1233:16:3"},"nodeType":"ModifierInvocation","src":"1233:16:3"}],"name":"__Pausable_init_unchained","nameLocation":"1196:25:3","nodeType":"FunctionDefinition","parameters":{"id":441,"nodeType":"ParameterList","parameters":[],"src":"1221:2:3"},"returnParameters":{"id":444,"nodeType":"ParameterList","parameters":[],"src":"1250:0:3"},"scope":536,"src":"1187:95:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":457,"nodeType":"Block","src":"1493:47:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":453,"name":"_requireNotPaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":487,"src":"1503:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1503:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":455,"nodeType":"ExpressionStatement","src":"1503:19:3"},{"id":456,"nodeType":"PlaceholderStatement","src":"1532:1:3"}]},"documentation":{"id":451,"nodeType":"StructuredDocumentation","src":"1288:175:3","text":" @dev Modifier to make a function callable only when the contract is not paused.\n Requirements:\n - The contract must not be paused."},"id":458,"name":"whenNotPaused","nameLocation":"1477:13:3","nodeType":"ModifierDefinition","parameters":{"id":452,"nodeType":"ParameterList","parameters":[],"src":"1490:2:3"},"src":"1468:72:3","virtual":false,"visibility":"internal"},{"body":{"id":465,"nodeType":"Block","src":"1740:44:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":461,"name":"_requirePaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"1750:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1750:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":463,"nodeType":"ExpressionStatement","src":"1750:16:3"},{"id":464,"nodeType":"PlaceholderStatement","src":"1776:1:3"}]},"documentation":{"id":459,"nodeType":"StructuredDocumentation","src":"1546:167:3","text":" @dev Modifier to make a function callable only when the contract is paused.\n Requirements:\n - The contract must be paused."},"id":466,"name":"whenPaused","nameLocation":"1727:10:3","nodeType":"ModifierDefinition","parameters":{"id":460,"nodeType":"ParameterList","parameters":[],"src":"1737:2:3"},"src":"1718:66:3","virtual":false,"visibility":"internal"},{"body":{"id":474,"nodeType":"Block","src":"1932:31:3","statements":[{"expression":{"id":472,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"1949:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":471,"id":473,"nodeType":"Return","src":"1942:14:3"}]},"documentation":{"id":467,"nodeType":"StructuredDocumentation","src":"1790:84:3","text":" @dev Returns true if the contract is paused, and false otherwise."},"functionSelector":"5c975abb","id":475,"implemented":true,"kind":"function","modifiers":[],"name":"paused","nameLocation":"1888:6:3","nodeType":"FunctionDefinition","parameters":{"id":468,"nodeType":"ParameterList","parameters":[],"src":"1894:2:3"},"returnParameters":{"id":471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":475,"src":"1926:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":469,"name":"bool","nodeType":"ElementaryTypeName","src":"1926:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1925:6:3"},"scope":536,"src":"1879:84:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":486,"nodeType":"Block","src":"2082:55:3","statements":[{"expression":{"arguments":[{"id":482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2100:9:3","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":480,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2101:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2101:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a20706175736564","id":483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2111:18:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""},"value":"Pausable: paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","typeString":"literal_string \"Pausable: paused\""}],"id":479,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2092:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2092:38:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":485,"nodeType":"ExpressionStatement","src":"2092:38:3"}]},"documentation":{"id":476,"nodeType":"StructuredDocumentation","src":"1969:57:3","text":" @dev Throws if the contract is paused."},"id":487,"implemented":true,"kind":"function","modifiers":[],"name":"_requireNotPaused","nameLocation":"2040:17:3","nodeType":"FunctionDefinition","parameters":{"id":477,"nodeType":"ParameterList","parameters":[],"src":"2057:2:3"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[],"src":"2082:0:3"},"scope":536,"src":"2031:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":497,"nodeType":"Block","src":"2257:58:3","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":492,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":475,"src":"2275:6:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2275:8:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5061757361626c653a206e6f7420706175736564","id":494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2285:22:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""},"value":"Pausable: not paused"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","typeString":"literal_string \"Pausable: not paused\""}],"id":491,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2267:7:3","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2267:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":496,"nodeType":"ExpressionStatement","src":"2267:41:3"}]},"documentation":{"id":488,"nodeType":"StructuredDocumentation","src":"2143:61:3","text":" @dev Throws if the contract is not paused."},"id":498,"implemented":true,"kind":"function","modifiers":[],"name":"_requirePaused","nameLocation":"2218:14:3","nodeType":"FunctionDefinition","parameters":{"id":489,"nodeType":"ParameterList","parameters":[],"src":"2232:2:3"},"returnParameters":{"id":490,"nodeType":"ParameterList","parameters":[],"src":"2257:0:3"},"scope":536,"src":"2209:106:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":513,"nodeType":"Block","src":"2499:66:3","statements":[{"expression":{"id":506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":504,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2509:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2519:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2509:14:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":507,"nodeType":"ExpressionStatement","src":"2509:14:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":509,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2545:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":508,"name":"Paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"2538:6:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2538:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":512,"nodeType":"EmitStatement","src":"2533:25:3"}]},"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"2321:124:3","text":" @dev Triggers stopped state.\n Requirements:\n - The contract must not be paused."},"id":514,"implemented":true,"kind":"function","modifiers":[{"id":502,"kind":"modifierInvocation","modifierName":{"id":501,"name":"whenNotPaused","nameLocations":["2485:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"2485:13:3"},"nodeType":"ModifierInvocation","src":"2485:13:3"}],"name":"_pause","nameLocation":"2459:6:3","nodeType":"FunctionDefinition","parameters":{"id":500,"nodeType":"ParameterList","parameters":[],"src":"2465:2:3"},"returnParameters":{"id":503,"nodeType":"ParameterList","parameters":[],"src":"2499:0:3"},"scope":536,"src":"2450:115:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":529,"nodeType":"Block","src":"2745:69:3","statements":[{"expression":{"id":522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":520,"name":"_paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":430,"src":"2755:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2765:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2755:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":523,"nodeType":"ExpressionStatement","src":"2755:15:3"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":525,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":894,"src":"2794:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2794:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":524,"name":"Unpaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":428,"src":"2785:8:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2785:22:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":528,"nodeType":"EmitStatement","src":"2780:27:3"}]},"documentation":{"id":515,"nodeType":"StructuredDocumentation","src":"2571:121:3","text":" @dev Returns to normal state.\n Requirements:\n - The contract must be paused."},"id":530,"implemented":true,"kind":"function","modifiers":[{"id":518,"kind":"modifierInvocation","modifierName":{"id":517,"name":"whenPaused","nameLocations":["2734:10:3"],"nodeType":"IdentifierPath","referencedDeclaration":466,"src":"2734:10:3"},"nodeType":"ModifierInvocation","src":"2734:10:3"}],"name":"_unpause","nameLocation":"2706:8:3","nodeType":"FunctionDefinition","parameters":{"id":516,"nodeType":"ParameterList","parameters":[],"src":"2714:2:3"},"returnParameters":{"id":519,"nodeType":"ParameterList","parameters":[],"src":"2745:0:3"},"scope":536,"src":"2697:117:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":531,"nodeType":"StructuredDocumentation","src":"2820:254:3","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":535,"mutability":"mutable","name":"__gap","nameLocation":"3099:5:3","nodeType":"VariableDeclaration","scope":536,"src":"3079:25:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":532,"name":"uint256","nodeType":"ElementaryTypeName","src":"3079:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":534,"length":{"hexValue":"3439","id":533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3087:2:3","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"3079:11:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":537,"src":"677:2430:3","usedErrors":[]}],"src":"105:3003:3"},"id":3},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","exportedSymbols":{"AddressUpgradeable":[866]},"id":867,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":538,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"101:23:4"},{"abstract":false,"baseContracts":[],"canonicalName":"AddressUpgradeable","contractDependencies":[],"contractKind":"library","documentation":{"id":539,"nodeType":"StructuredDocumentation","src":"126:67:4","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":866,"linearizedBaseContracts":[866],"name":"AddressUpgradeable","nameLocation":"202:18:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":553,"nodeType":"Block","src":"1489:254:4","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":547,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":542,"src":"1713:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1721:4:4","memberName":"code","nodeType":"MemberAccess","src":"1713:12:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1726:6:4","memberName":"length","nodeType":"MemberAccess","src":"1713:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1735:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1713:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":546,"id":552,"nodeType":"Return","src":"1706:30:4"}]},"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"227:1191:4","text":" @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n - an externally-owned account\n - a contract in construction\n - an address where a contract will be created\n - an address where a contract lived, but was destroyed\n Furthermore, `isContract` will also return true if the target contract within\n the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n which only has an effect at the end of a transaction.\n ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":554,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"1432:10:4","nodeType":"FunctionDefinition","parameters":{"id":543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":542,"mutability":"mutable","name":"account","nameLocation":"1451:7:4","nodeType":"VariableDeclaration","scope":554,"src":"1443:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":541,"name":"address","nodeType":"ElementaryTypeName","src":"1443:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1442:17:4"},"returnParameters":{"id":546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":554,"src":"1483:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":544,"name":"bool","nodeType":"ElementaryTypeName","src":"1483:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1482:6:4"},"scope":866,"src":"1423:320:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":587,"nodeType":"Block","src":"2729:241:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":565,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2755:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2747:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":563,"name":"address","nodeType":"ElementaryTypeName","src":"2747:7:4","typeDescriptions":{}}},"id":566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2747:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2761:7:4","memberName":"balance","nodeType":"MemberAccess","src":"2747:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":568,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2772:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2747:31:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2780:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""},"value":"Address: insufficient balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9","typeString":"literal_string \"Address: insufficient balance\""}],"id":562,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2739:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":572,"nodeType":"ExpressionStatement","src":"2739:73:4"},{"assignments":[574,null],"declarations":[{"constant":false,"id":574,"mutability":"mutable","name":"success","nameLocation":"2829:7:4","nodeType":"VariableDeclaration","scope":587,"src":"2824:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":573,"name":"bool","nodeType":"ElementaryTypeName","src":"2824:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":581,"initialValue":{"arguments":[{"hexValue":"","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2872:2:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":575,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":557,"src":"2842:9:4","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:4:4","memberName":"call","nodeType":"MemberAccess","src":"2842:14:4","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":577,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":559,"src":"2864:6:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2842:29:4","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2842:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2823:52:4"},{"expression":{"arguments":[{"id":583,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":574,"src":"2893:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2902:60:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""},"value":"Address: unable to send value, recipient may have reverted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae","typeString":"literal_string \"Address: unable to send value, recipient may have reverted\""}],"id":582,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2885:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2885:78:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":586,"nodeType":"ExpressionStatement","src":"2885:78:4"}]},"documentation":{"id":555,"nodeType":"StructuredDocumentation","src":"1749:904:4","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":588,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"2667:9:4","nodeType":"FunctionDefinition","parameters":{"id":560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"recipient","nameLocation":"2693:9:4","nodeType":"VariableDeclaration","scope":588,"src":"2677:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":556,"name":"address","nodeType":"ElementaryTypeName","src":"2677:15:4","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":559,"mutability":"mutable","name":"amount","nameLocation":"2712:6:4","nodeType":"VariableDeclaration","scope":588,"src":"2704:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":558,"name":"uint256","nodeType":"ElementaryTypeName","src":"2704:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:4"},"returnParameters":{"id":561,"nodeType":"ParameterList","parameters":[],"src":"2729:0:4"},"scope":866,"src":"2658:312:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":605,"nodeType":"Block","src":"3801:96:4","statements":[{"expression":{"arguments":[{"id":599,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":591,"src":"3840:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":600,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"3848:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3854:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3857:32:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""},"value":"Address: low-level call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":598,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"3818:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3818:72:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":597,"id":604,"nodeType":"Return","src":"3811:79:4"}]},"documentation":{"id":589,"nodeType":"StructuredDocumentation","src":"2976:731:4","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"},"id":606,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"3721:12:4","nodeType":"FunctionDefinition","parameters":{"id":594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":591,"mutability":"mutable","name":"target","nameLocation":"3742:6:4","nodeType":"VariableDeclaration","scope":606,"src":"3734:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":590,"name":"address","nodeType":"ElementaryTypeName","src":"3734:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":593,"mutability":"mutable","name":"data","nameLocation":"3763:4:4","nodeType":"VariableDeclaration","scope":606,"src":"3750:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":592,"name":"bytes","nodeType":"ElementaryTypeName","src":"3750:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3733:35:4"},"returnParameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":606,"src":"3787:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":595,"name":"bytes","nodeType":"ElementaryTypeName","src":"3787:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3786:14:4"},"scope":866,"src":"3712:185:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":625,"nodeType":"Block","src":"4266:76:4","statements":[{"expression":{"arguments":[{"id":619,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"4305:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":620,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":611,"src":"4313:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4319:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":622,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":613,"src":"4322:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":618,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4283:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4283:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":617,"id":624,"nodeType":"Return","src":"4276:59:4"}]},"documentation":{"id":607,"nodeType":"StructuredDocumentation","src":"3903:211:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":626,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"4128:12:4","nodeType":"FunctionDefinition","parameters":{"id":614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":609,"mutability":"mutable","name":"target","nameLocation":"4158:6:4","nodeType":"VariableDeclaration","scope":626,"src":"4150:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":608,"name":"address","nodeType":"ElementaryTypeName","src":"4150:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":611,"mutability":"mutable","name":"data","nameLocation":"4187:4:4","nodeType":"VariableDeclaration","scope":626,"src":"4174:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":610,"name":"bytes","nodeType":"ElementaryTypeName","src":"4174:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":613,"mutability":"mutable","name":"errorMessage","nameLocation":"4215:12:4","nodeType":"VariableDeclaration","scope":626,"src":"4201:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":612,"name":"string","nodeType":"ElementaryTypeName","src":"4201:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4140:93:4"},"returnParameters":{"id":617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":626,"src":"4252:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":615,"name":"bytes","nodeType":"ElementaryTypeName","src":"4252:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4251:14:4"},"scope":866,"src":"4119:223:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":645,"nodeType":"Block","src":"4817:111:4","statements":[{"expression":{"arguments":[{"id":639,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":629,"src":"4856:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":640,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":631,"src":"4864:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":633,"src":"4870:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4877:43:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""},"value":"Address: low-level call with value failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc","typeString":"literal_string \"Address: low-level call with value failed\""}],"id":638,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[646,690],"referencedDeclaration":690,"src":"4834:21:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256,string memory) returns (bytes memory)"}},"id":643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4834:87:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":637,"id":644,"nodeType":"Return","src":"4827:94:4"}]},"documentation":{"id":627,"nodeType":"StructuredDocumentation","src":"4348:351:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"},"id":646,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"4713:21:4","nodeType":"FunctionDefinition","parameters":{"id":634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":629,"mutability":"mutable","name":"target","nameLocation":"4743:6:4","nodeType":"VariableDeclaration","scope":646,"src":"4735:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":628,"name":"address","nodeType":"ElementaryTypeName","src":"4735:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":631,"mutability":"mutable","name":"data","nameLocation":"4764:4:4","nodeType":"VariableDeclaration","scope":646,"src":"4751:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":630,"name":"bytes","nodeType":"ElementaryTypeName","src":"4751:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":633,"mutability":"mutable","name":"value","nameLocation":"4778:5:4","nodeType":"VariableDeclaration","scope":646,"src":"4770:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":632,"name":"uint256","nodeType":"ElementaryTypeName","src":"4770:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4734:50:4"},"returnParameters":{"id":637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":636,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":646,"src":"4803:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":635,"name":"bytes","nodeType":"ElementaryTypeName","src":"4803:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4802:14:4"},"scope":866,"src":"4704:224:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":689,"nodeType":"Block","src":"5355:267:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":663,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5381:4:4","typeDescriptions":{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AddressUpgradeable_$866","typeString":"library AddressUpgradeable"}],"id":662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5373:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":661,"name":"address","nodeType":"ElementaryTypeName","src":"5373:7:4","typeDescriptions":{}}},"id":664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5373:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5387:7:4","memberName":"balance","nodeType":"MemberAccess","src":"5373:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":666,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5398:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5373:30:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5405:40:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""},"value":"Address: insufficient balance for call"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c","typeString":"literal_string \"Address: insufficient balance for call\""}],"id":660,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5365:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5365:81:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":670,"nodeType":"ExpressionStatement","src":"5365:81:4"},{"assignments":[672,674],"declarations":[{"constant":false,"id":672,"mutability":"mutable","name":"success","nameLocation":"5462:7:4","nodeType":"VariableDeclaration","scope":689,"src":"5457:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":671,"name":"bool","nodeType":"ElementaryTypeName","src":"5457:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":674,"mutability":"mutable","name":"returndata","nameLocation":"5484:10:4","nodeType":"VariableDeclaration","scope":689,"src":"5471:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":673,"name":"bytes","nodeType":"ElementaryTypeName","src":"5471:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":681,"initialValue":{"arguments":[{"id":679,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"5524:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":675,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5498:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5505:4:4","memberName":"call","nodeType":"MemberAccess","src":"5498:11:4","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":653,"src":"5517:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5498:25:4","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5456:73:4"},{"expression":{"arguments":[{"id":683,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":649,"src":"5573:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":684,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":672,"src":"5581:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":685,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":674,"src":"5590:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":686,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":655,"src":"5602:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":682,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"5546:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5546:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":659,"id":688,"nodeType":"Return","src":"5539:76:4"}]},"documentation":{"id":647,"nodeType":"StructuredDocumentation","src":"4934:237:4","text":" @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"},"id":690,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"5185:21:4","nodeType":"FunctionDefinition","parameters":{"id":656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":649,"mutability":"mutable","name":"target","nameLocation":"5224:6:4","nodeType":"VariableDeclaration","scope":690,"src":"5216:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":648,"name":"address","nodeType":"ElementaryTypeName","src":"5216:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":651,"mutability":"mutable","name":"data","nameLocation":"5253:4:4","nodeType":"VariableDeclaration","scope":690,"src":"5240:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":650,"name":"bytes","nodeType":"ElementaryTypeName","src":"5240:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":653,"mutability":"mutable","name":"value","nameLocation":"5275:5:4","nodeType":"VariableDeclaration","scope":690,"src":"5267:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":652,"name":"uint256","nodeType":"ElementaryTypeName","src":"5267:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":655,"mutability":"mutable","name":"errorMessage","nameLocation":"5304:12:4","nodeType":"VariableDeclaration","scope":690,"src":"5290:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":654,"name":"string","nodeType":"ElementaryTypeName","src":"5290:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5206:116:4"},"returnParameters":{"id":659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":658,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":690,"src":"5341:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":657,"name":"bytes","nodeType":"ElementaryTypeName","src":"5341:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5340:14:4"},"scope":866,"src":"5176:446:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":706,"nodeType":"Block","src":"5899:97:4","statements":[{"expression":{"arguments":[{"id":701,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":693,"src":"5935:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":702,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5943:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5949:39:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""},"value":"Address: low-level static call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0","typeString":"literal_string \"Address: low-level static call failed\""}],"id":700,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[707,736],"referencedDeclaration":736,"src":"5916:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) view returns (bytes memory)"}},"id":704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5916:73:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":699,"id":705,"nodeType":"Return","src":"5909:80:4"}]},"documentation":{"id":691,"nodeType":"StructuredDocumentation","src":"5628:166:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":707,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"5808:18:4","nodeType":"FunctionDefinition","parameters":{"id":696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":693,"mutability":"mutable","name":"target","nameLocation":"5835:6:4","nodeType":"VariableDeclaration","scope":707,"src":"5827:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"5827:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":695,"mutability":"mutable","name":"data","nameLocation":"5856:4:4","nodeType":"VariableDeclaration","scope":707,"src":"5843:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":694,"name":"bytes","nodeType":"ElementaryTypeName","src":"5843:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5826:35:4"},"returnParameters":{"id":699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":698,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":707,"src":"5885:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":697,"name":"bytes","nodeType":"ElementaryTypeName","src":"5885:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5884:14:4"},"scope":866,"src":"5799:197:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":735,"nodeType":"Block","src":"6338:168:4","statements":[{"assignments":[720,722],"declarations":[{"constant":false,"id":720,"mutability":"mutable","name":"success","nameLocation":"6354:7:4","nodeType":"VariableDeclaration","scope":735,"src":"6349:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":719,"name":"bool","nodeType":"ElementaryTypeName","src":"6349:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":722,"mutability":"mutable","name":"returndata","nameLocation":"6376:10:4","nodeType":"VariableDeclaration","scope":735,"src":"6363:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":721,"name":"bytes","nodeType":"ElementaryTypeName","src":"6363:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":727,"initialValue":{"arguments":[{"id":725,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":712,"src":"6408:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":723,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6390:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6397:10:4","memberName":"staticcall","nodeType":"MemberAccess","src":"6390:17:4","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6390:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"6348:65:4"},{"expression":{"arguments":[{"id":729,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":710,"src":"6457:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":730,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":720,"src":"6465:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":731,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":722,"src":"6474:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":732,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":714,"src":"6486:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":728,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"6430:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6430:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":718,"id":734,"nodeType":"Return","src":"6423:76:4"}]},"documentation":{"id":708,"nodeType":"StructuredDocumentation","src":"6002:173:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":736,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"6189:18:4","nodeType":"FunctionDefinition","parameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":710,"mutability":"mutable","name":"target","nameLocation":"6225:6:4","nodeType":"VariableDeclaration","scope":736,"src":"6217:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":709,"name":"address","nodeType":"ElementaryTypeName","src":"6217:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":712,"mutability":"mutable","name":"data","nameLocation":"6254:4:4","nodeType":"VariableDeclaration","scope":736,"src":"6241:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":711,"name":"bytes","nodeType":"ElementaryTypeName","src":"6241:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":714,"mutability":"mutable","name":"errorMessage","nameLocation":"6282:12:4","nodeType":"VariableDeclaration","scope":736,"src":"6268:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":713,"name":"string","nodeType":"ElementaryTypeName","src":"6268:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6207:93:4"},"returnParameters":{"id":718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":717,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":736,"src":"6324:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":716,"name":"bytes","nodeType":"ElementaryTypeName","src":"6324:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6323:14:4"},"scope":866,"src":"6180:326:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":752,"nodeType":"Block","src":"6782:101:4","statements":[{"expression":{"arguments":[{"id":747,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":739,"src":"6820:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":748,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"6828:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6834:41:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""},"value":"Address: low-level delegate call failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398","typeString":"literal_string \"Address: low-level delegate call failed\""}],"id":746,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[753,782],"referencedDeclaration":782,"src":"6799:20:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6799:77:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":745,"id":751,"nodeType":"Return","src":"6792:84:4"}]},"documentation":{"id":737,"nodeType":"StructuredDocumentation","src":"6512:168:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":753,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"6694:20:4","nodeType":"FunctionDefinition","parameters":{"id":742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":739,"mutability":"mutable","name":"target","nameLocation":"6723:6:4","nodeType":"VariableDeclaration","scope":753,"src":"6715:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":738,"name":"address","nodeType":"ElementaryTypeName","src":"6715:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":741,"mutability":"mutable","name":"data","nameLocation":"6744:4:4","nodeType":"VariableDeclaration","scope":753,"src":"6731:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":740,"name":"bytes","nodeType":"ElementaryTypeName","src":"6731:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6714:35:4"},"returnParameters":{"id":745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":753,"src":"6768:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":743,"name":"bytes","nodeType":"ElementaryTypeName","src":"6768:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6767:14:4"},"scope":866,"src":"6685:198:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":781,"nodeType":"Block","src":"7224:170:4","statements":[{"assignments":[766,768],"declarations":[{"constant":false,"id":766,"mutability":"mutable","name":"success","nameLocation":"7240:7:4","nodeType":"VariableDeclaration","scope":781,"src":"7235:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":765,"name":"bool","nodeType":"ElementaryTypeName","src":"7235:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"returndata","nameLocation":"7262:10:4","nodeType":"VariableDeclaration","scope":781,"src":"7249:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":767,"name":"bytes","nodeType":"ElementaryTypeName","src":"7249:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":773,"initialValue":{"arguments":[{"id":771,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":758,"src":"7296:4:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":769,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7276:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7283:12:4","memberName":"delegatecall","nodeType":"MemberAccess","src":"7276:19:4","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7276:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"7234:67:4"},{"expression":{"arguments":[{"id":775,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":756,"src":"7345:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":776,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":766,"src":"7353:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":777,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"7362:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":778,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":760,"src":"7374:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":774,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":821,"src":"7318:26:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7318:69:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":764,"id":780,"nodeType":"Return","src":"7311:76:4"}]},"documentation":{"id":754,"nodeType":"StructuredDocumentation","src":"6889:175:4","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":782,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"7078:20:4","nodeType":"FunctionDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"target","nameLocation":"7116:6:4","nodeType":"VariableDeclaration","scope":782,"src":"7108:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"7108:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":758,"mutability":"mutable","name":"data","nameLocation":"7145:4:4","nodeType":"VariableDeclaration","scope":782,"src":"7132:17:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":757,"name":"bytes","nodeType":"ElementaryTypeName","src":"7132:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":760,"mutability":"mutable","name":"errorMessage","nameLocation":"7173:12:4","nodeType":"VariableDeclaration","scope":782,"src":"7159:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":759,"name":"string","nodeType":"ElementaryTypeName","src":"7159:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7098:93:4"},"returnParameters":{"id":764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":782,"src":"7210:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":762,"name":"bytes","nodeType":"ElementaryTypeName","src":"7210:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7209:14:4"},"scope":866,"src":"7069:325:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":820,"nodeType":"Block","src":"7876:434:4","statements":[{"condition":{"id":796,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":787,"src":"7890:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":818,"nodeType":"Block","src":"8246:58:4","statements":[{"expression":{"arguments":[{"id":814,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8268:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":815,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":791,"src":"8280:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":813,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8260:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8260:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":817,"nodeType":"ExpressionStatement","src":"8260:33:4"}]},"id":819,"nodeType":"IfStatement","src":"7886:418:4","trueBody":{"id":812,"nodeType":"Block","src":"7899:341:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":797,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"7917:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7928:6:4","memberName":"length","nodeType":"MemberAccess","src":"7917:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7938:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7917:22:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":809,"nodeType":"IfStatement","src":"7913:286:4","trueBody":{"id":808,"nodeType":"Block","src":"7941:258:4","statements":[{"expression":{"arguments":[{"arguments":[{"id":803,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"8143:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":802,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":554,"src":"8132:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8132:18:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8152:31:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""},"value":"Address: call to non-contract"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad","typeString":"literal_string \"Address: call to non-contract\""}],"id":801,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8124:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8124:60:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":807,"nodeType":"ExpressionStatement","src":"8124:60:4"}]}},{"expression":{"id":810,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":789,"src":"8219:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":795,"id":811,"nodeType":"Return","src":"8212:17:4"}]}}]},"documentation":{"id":783,"nodeType":"StructuredDocumentation","src":"7400:277:4","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":821,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"7691:26:4","nodeType":"FunctionDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":785,"mutability":"mutable","name":"target","nameLocation":"7735:6:4","nodeType":"VariableDeclaration","scope":821,"src":"7727:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":784,"name":"address","nodeType":"ElementaryTypeName","src":"7727:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":787,"mutability":"mutable","name":"success","nameLocation":"7756:7:4","nodeType":"VariableDeclaration","scope":821,"src":"7751:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":786,"name":"bool","nodeType":"ElementaryTypeName","src":"7751:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":789,"mutability":"mutable","name":"returndata","nameLocation":"7786:10:4","nodeType":"VariableDeclaration","scope":821,"src":"7773:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":788,"name":"bytes","nodeType":"ElementaryTypeName","src":"7773:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":791,"mutability":"mutable","name":"errorMessage","nameLocation":"7820:12:4","nodeType":"VariableDeclaration","scope":821,"src":"7806:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":790,"name":"string","nodeType":"ElementaryTypeName","src":"7806:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7717:121:4"},"returnParameters":{"id":795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":794,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":821,"src":"7862:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":793,"name":"bytes","nodeType":"ElementaryTypeName","src":"7862:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7861:14:4"},"scope":866,"src":"7682:628:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":844,"nodeType":"Block","src":"8691:135:4","statements":[{"condition":{"id":833,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"8705:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":842,"nodeType":"Block","src":"8762:58:4","statements":[{"expression":{"arguments":[{"id":838,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8784:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":839,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":828,"src":"8796:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":837,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":865,"src":"8776:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8776:33:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":841,"nodeType":"ExpressionStatement","src":"8776:33:4"}]},"id":843,"nodeType":"IfStatement","src":"8701:119:4","trueBody":{"id":836,"nodeType":"Block","src":"8714:42:4","statements":[{"expression":{"id":834,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"8735:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":832,"id":835,"nodeType":"Return","src":"8728:17:4"}]}}]},"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"8316:210:4","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":845,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"8540:16:4","nodeType":"FunctionDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"success","nameLocation":"8571:7:4","nodeType":"VariableDeclaration","scope":845,"src":"8566:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":823,"name":"bool","nodeType":"ElementaryTypeName","src":"8566:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":826,"mutability":"mutable","name":"returndata","nameLocation":"8601:10:4","nodeType":"VariableDeclaration","scope":845,"src":"8588:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":825,"name":"bytes","nodeType":"ElementaryTypeName","src":"8588:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":828,"mutability":"mutable","name":"errorMessage","nameLocation":"8635:12:4","nodeType":"VariableDeclaration","scope":845,"src":"8621:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":827,"name":"string","nodeType":"ElementaryTypeName","src":"8621:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8556:97:4"},"returnParameters":{"id":832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":831,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":845,"src":"8677:12:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":830,"name":"bytes","nodeType":"ElementaryTypeName","src":"8677:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8676:14:4"},"scope":866,"src":"8531:295:4","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":864,"nodeType":"Block","src":"8915:457:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":852,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"8991:10:4","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9002:6:4","memberName":"length","nodeType":"MemberAccess","src":"8991:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9011:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8991:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":862,"nodeType":"Block","src":"9321:45:4","statements":[{"expression":{"arguments":[{"id":859,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"9342:12:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":858,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9335:6:4","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9335:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":861,"nodeType":"ExpressionStatement","src":"9335:20:4"}]},"id":863,"nodeType":"IfStatement","src":"8987:379:4","trueBody":{"id":857,"nodeType":"Block","src":"9014:301:4","statements":[{"AST":{"nodeType":"YulBlock","src":"9172:133:4","statements":[{"nodeType":"YulVariableDeclaration","src":"9190:40:4","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"9219:10:4"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9213:5:4"},"nodeType":"YulFunctionCall","src":"9213:17:4"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"9194:15:4","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9258:2:4","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"9262:10:4"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9254:3:4"},"nodeType":"YulFunctionCall","src":"9254:19:4"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"9275:15:4"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9247:6:4"},"nodeType":"YulFunctionCall","src":"9247:44:4"},"nodeType":"YulExpressionStatement","src":"9247:44:4"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":847,"isOffset":false,"isSlot":false,"src":"9219:10:4","valueSize":1},{"declaration":847,"isOffset":false,"isSlot":false,"src":"9262:10:4","valueSize":1}],"id":856,"nodeType":"InlineAssembly","src":"9163:142:4"}]}}]},"id":865,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"8841:7:4","nodeType":"FunctionDefinition","parameters":{"id":850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":847,"mutability":"mutable","name":"returndata","nameLocation":"8862:10:4","nodeType":"VariableDeclaration","scope":865,"src":"8849:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":846,"name":"bytes","nodeType":"ElementaryTypeName","src":"8849:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":849,"mutability":"mutable","name":"errorMessage","nameLocation":"8888:12:4","nodeType":"VariableDeclaration","scope":865,"src":"8874:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":848,"name":"string","nodeType":"ElementaryTypeName","src":"8874:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8848:53:4"},"returnParameters":{"id":851,"nodeType":"ParameterList","parameters":[],"src":"8915:0:4"},"scope":866,"src":"8832:540:4","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":867,"src":"194:9180:4","usedErrors":[]}],"src":"101:9274:4"},"id":4},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[917],"Initializable":[408]},"id":918,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":868,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:5"},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":870,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":918,"sourceUnit":409,"src":"125:63:5","symbolAliases":[{"foreign":{"id":869,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":408,"src":"133:13:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":872,"name":"Initializable","nameLocations":["727:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":408,"src":"727:13:5"},"id":873,"nodeType":"InheritanceSpecifier","src":"727:13:5"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":871,"nodeType":"StructuredDocumentation","src":"190:496:5","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":917,"linearizedBaseContracts":[917,408],"name":"ContextUpgradeable","nameLocation":"705:18:5","nodeType":"ContractDefinition","nodes":[{"body":{"id":878,"nodeType":"Block","src":"799:7:5","statements":[]},"id":879,"implemented":true,"kind":"function","modifiers":[{"id":876,"kind":"modifierInvocation","modifierName":{"id":875,"name":"onlyInitializing","nameLocations":["782:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"782:16:5"},"nodeType":"ModifierInvocation","src":"782:16:5"}],"name":"__Context_init","nameLocation":"756:14:5","nodeType":"FunctionDefinition","parameters":{"id":874,"nodeType":"ParameterList","parameters":[],"src":"770:2:5"},"returnParameters":{"id":877,"nodeType":"ParameterList","parameters":[],"src":"799:0:5"},"scope":917,"src":"747:59:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":884,"nodeType":"Block","src":"874:7:5","statements":[]},"id":885,"implemented":true,"kind":"function","modifiers":[{"id":882,"kind":"modifierInvocation","modifierName":{"id":881,"name":"onlyInitializing","nameLocations":["857:16:5"],"nodeType":"IdentifierPath","referencedDeclaration":353,"src":"857:16:5"},"nodeType":"ModifierInvocation","src":"857:16:5"}],"name":"__Context_init_unchained","nameLocation":"821:24:5","nodeType":"FunctionDefinition","parameters":{"id":880,"nodeType":"ParameterList","parameters":[],"src":"845:2:5"},"returnParameters":{"id":883,"nodeType":"ParameterList","parameters":[],"src":"874:0:5"},"scope":917,"src":"812:69:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":893,"nodeType":"Block","src":"948:34:5","statements":[{"expression":{"expression":{"id":890,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"965:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"969:6:5","memberName":"sender","nodeType":"MemberAccess","src":"965:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":889,"id":892,"nodeType":"Return","src":"958:17:5"}]},"id":894,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"895:10:5","nodeType":"FunctionDefinition","parameters":{"id":886,"nodeType":"ParameterList","parameters":[],"src":"905:2:5"},"returnParameters":{"id":889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":888,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":894,"src":"939:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":887,"name":"address","nodeType":"ElementaryTypeName","src":"939:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"938:9:5"},"scope":917,"src":"886:96:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":902,"nodeType":"Block","src":"1055:32:5","statements":[{"expression":{"expression":{"id":899,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1072:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1076:4:5","memberName":"data","nodeType":"MemberAccess","src":"1072:8:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":898,"id":901,"nodeType":"Return","src":"1065:15:5"}]},"id":903,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"997:8:5","nodeType":"FunctionDefinition","parameters":{"id":895,"nodeType":"ParameterList","parameters":[],"src":"1005:2:5"},"returnParameters":{"id":898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":897,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":903,"src":"1039:14:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":896,"name":"bytes","nodeType":"ElementaryTypeName","src":"1039:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1038:16:5"},"scope":917,"src":"988:99:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":910,"nodeType":"Block","src":"1165:25:5","statements":[{"expression":{"hexValue":"30","id":908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1182:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":907,"id":909,"nodeType":"Return","src":"1175:8:5"}]},"id":911,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1102:20:5","nodeType":"FunctionDefinition","parameters":{"id":904,"nodeType":"ParameterList","parameters":[],"src":"1122:2:5"},"returnParameters":{"id":907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":906,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"1156:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":905,"name":"uint256","nodeType":"ElementaryTypeName","src":"1156:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1155:9:5"},"scope":917,"src":"1093:97:5","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":false,"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"1196:254:5","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":916,"mutability":"mutable","name":"__gap","nameLocation":"1475:5:5","nodeType":"VariableDeclaration","scope":917,"src":"1455:25:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":913,"name":"uint256","nodeType":"ElementaryTypeName","src":"1455:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":915,"length":{"hexValue":"3530","id":914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1463:2:5","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"1455:11:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":918,"src":"687:796:5","usedErrors":[]}],"src":"101:1383:5"},"id":5},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[1637],"ERC20":[1504],"IERC20":[1582],"IERC20Metadata":[1607]},"id":1505,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":919,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"105:23:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":920,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1505,"sourceUnit":1583,"src":"130:22:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":921,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1505,"sourceUnit":1608,"src":"153:41:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":922,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1505,"sourceUnit":1638,"src":"195:33:6","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":924,"name":"Context","nameLocations":["1550:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":1637,"src":"1550:7:6"},"id":925,"nodeType":"InheritanceSpecifier","src":"1550:7:6"},{"baseName":{"id":926,"name":"IERC20","nameLocations":["1559:6:6"],"nodeType":"IdentifierPath","referencedDeclaration":1582,"src":"1559:6:6"},"id":927,"nodeType":"InheritanceSpecifier","src":"1559:6:6"},{"baseName":{"id":928,"name":"IERC20Metadata","nameLocations":["1567:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":1607,"src":"1567:14:6"},"id":929,"nodeType":"InheritanceSpecifier","src":"1567:14:6"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":923,"nodeType":"StructuredDocumentation","src":"230:1301:6","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC20\n applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."},"fullyImplemented":true,"id":1504,"linearizedBaseContracts":[1504,1607,1582,1637],"name":"ERC20","nameLocation":"1541:5:6","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":933,"mutability":"mutable","name":"_balances","nameLocation":"1624:9:6","nodeType":"VariableDeclaration","scope":1504,"src":"1588:45:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":932,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":930,"name":"address","nodeType":"ElementaryTypeName","src":"1596:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1588:27:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":931,"name":"uint256","nodeType":"ElementaryTypeName","src":"1607:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":939,"mutability":"mutable","name":"_allowances","nameLocation":"1696:11:6","nodeType":"VariableDeclaration","scope":1504,"src":"1640:67:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":938,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":934,"name":"address","nodeType":"ElementaryTypeName","src":"1648:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1640:47:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":937,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":935,"name":"address","nodeType":"ElementaryTypeName","src":"1667:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1659:27:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":936,"name":"uint256","nodeType":"ElementaryTypeName","src":"1678:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":941,"mutability":"mutable","name":"_totalSupply","nameLocation":"1730:12:6","nodeType":"VariableDeclaration","scope":1504,"src":"1714:28:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":940,"name":"uint256","nodeType":"ElementaryTypeName","src":"1714:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":943,"mutability":"mutable","name":"_name","nameLocation":"1764:5:6","nodeType":"VariableDeclaration","scope":1504,"src":"1749:20:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":942,"name":"string","nodeType":"ElementaryTypeName","src":"1749:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":945,"mutability":"mutable","name":"_symbol","nameLocation":"1790:7:6","nodeType":"VariableDeclaration","scope":1504,"src":"1775:22:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":944,"name":"string","nodeType":"ElementaryTypeName","src":"1775:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":961,"nodeType":"Block","src":"2036:57:6","statements":[{"expression":{"id":955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":953,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":943,"src":"2046:5:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":954,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":948,"src":"2054:5:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2046:13:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":956,"nodeType":"ExpressionStatement","src":"2046:13:6"},{"expression":{"id":959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":957,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"2069:7:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":958,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"2079:7:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2069:17:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":960,"nodeType":"ExpressionStatement","src":"2069:17:6"}]},"documentation":{"id":946,"nodeType":"StructuredDocumentation","src":"1804:171:6","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":962,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":948,"mutability":"mutable","name":"name_","nameLocation":"2006:5:6","nodeType":"VariableDeclaration","scope":962,"src":"1992:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":947,"name":"string","nodeType":"ElementaryTypeName","src":"1992:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":950,"mutability":"mutable","name":"symbol_","nameLocation":"2027:7:6","nodeType":"VariableDeclaration","scope":962,"src":"2013:21:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":949,"name":"string","nodeType":"ElementaryTypeName","src":"2013:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1991:44:6"},"returnParameters":{"id":952,"nodeType":"ParameterList","parameters":[],"src":"2036:0:6"},"scope":1504,"src":"1980:113:6","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[1594],"body":{"id":971,"nodeType":"Block","src":"2227:29:6","statements":[{"expression":{"id":969,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":943,"src":"2244:5:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":968,"id":970,"nodeType":"Return","src":"2237:12:6"}]},"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"2099:54:6","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":972,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2167:4:6","nodeType":"FunctionDefinition","overrides":{"id":965,"nodeType":"OverrideSpecifier","overrides":[],"src":"2194:8:6"},"parameters":{"id":964,"nodeType":"ParameterList","parameters":[],"src":"2171:2:6"},"returnParameters":{"id":968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":972,"src":"2212:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":966,"name":"string","nodeType":"ElementaryTypeName","src":"2212:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2211:15:6"},"scope":1504,"src":"2158:98:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1600],"body":{"id":981,"nodeType":"Block","src":"2440:31:6","statements":[{"expression":{"id":979,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"2457:7:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":978,"id":980,"nodeType":"Return","src":"2450:14:6"}]},"documentation":{"id":973,"nodeType":"StructuredDocumentation","src":"2262:102:6","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":982,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2378:6:6","nodeType":"FunctionDefinition","overrides":{"id":975,"nodeType":"OverrideSpecifier","overrides":[],"src":"2407:8:6"},"parameters":{"id":974,"nodeType":"ParameterList","parameters":[],"src":"2384:2:6"},"returnParameters":{"id":978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":977,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":982,"src":"2425:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":976,"name":"string","nodeType":"ElementaryTypeName","src":"2425:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2424:15:6"},"scope":1504,"src":"2369:102:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1606],"body":{"id":991,"nodeType":"Block","src":"3169:26:6","statements":[{"expression":{"hexValue":"3138","id":989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3186:2:6","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":988,"id":990,"nodeType":"Return","src":"3179:9:6"}]},"documentation":{"id":983,"nodeType":"StructuredDocumentation","src":"2477:622:6","text":" @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."},"functionSelector":"313ce567","id":992,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3113:8:6","nodeType":"FunctionDefinition","overrides":{"id":985,"nodeType":"OverrideSpecifier","overrides":[],"src":"3144:8:6"},"parameters":{"id":984,"nodeType":"ParameterList","parameters":[],"src":"3121:2:6"},"returnParameters":{"id":988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":992,"src":"3162:5:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":986,"name":"uint8","nodeType":"ElementaryTypeName","src":"3162:5:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3161:7:6"},"scope":1504,"src":"3104:91:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1531],"body":{"id":1001,"nodeType":"Block","src":"3325:36:6","statements":[{"expression":{"id":999,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":941,"src":"3342:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":998,"id":1000,"nodeType":"Return","src":"3335:19:6"}]},"documentation":{"id":993,"nodeType":"StructuredDocumentation","src":"3201:49:6","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":1002,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"3264:11:6","nodeType":"FunctionDefinition","overrides":{"id":995,"nodeType":"OverrideSpecifier","overrides":[],"src":"3298:8:6"},"parameters":{"id":994,"nodeType":"ParameterList","parameters":[],"src":"3275:2:6"},"returnParameters":{"id":998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1002,"src":"3316:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":996,"name":"uint256","nodeType":"ElementaryTypeName","src":"3316:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3315:9:6"},"scope":1504,"src":"3255:106:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1539],"body":{"id":1015,"nodeType":"Block","src":"3502:42:6","statements":[{"expression":{"baseExpression":{"id":1011,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"3519:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1013,"indexExpression":{"id":1012,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1005,"src":"3529:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3519:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1010,"id":1014,"nodeType":"Return","src":"3512:25:6"}]},"documentation":{"id":1003,"nodeType":"StructuredDocumentation","src":"3367:47:6","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":1016,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3428:9:6","nodeType":"FunctionDefinition","overrides":{"id":1007,"nodeType":"OverrideSpecifier","overrides":[],"src":"3475:8:6"},"parameters":{"id":1006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1005,"mutability":"mutable","name":"account","nameLocation":"3446:7:6","nodeType":"VariableDeclaration","scope":1016,"src":"3438:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1004,"name":"address","nodeType":"ElementaryTypeName","src":"3438:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3437:17:6"},"returnParameters":{"id":1010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1009,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1016,"src":"3493:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1008,"name":"uint256","nodeType":"ElementaryTypeName","src":"3493:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3492:9:6"},"scope":1504,"src":"3419:125:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1549],"body":{"id":1040,"nodeType":"Block","src":"3825:104:6","statements":[{"assignments":[1028],"declarations":[{"constant":false,"id":1028,"mutability":"mutable","name":"owner","nameLocation":"3843:5:6","nodeType":"VariableDeclaration","scope":1040,"src":"3835:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1027,"name":"address","nodeType":"ElementaryTypeName","src":"3835:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1031,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1029,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"3851:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3851:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3835:28:6"},{"expression":{"arguments":[{"id":1033,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1028,"src":"3883:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1034,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1019,"src":"3890:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1035,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1021,"src":"3894:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1032,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"3873:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3873:28:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1037,"nodeType":"ExpressionStatement","src":"3873:28:6"},{"expression":{"hexValue":"74727565","id":1038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3918:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1026,"id":1039,"nodeType":"Return","src":"3911:11:6"}]},"documentation":{"id":1017,"nodeType":"StructuredDocumentation","src":"3550:185:6","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `amount`."},"functionSelector":"a9059cbb","id":1041,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3749:8:6","nodeType":"FunctionDefinition","overrides":{"id":1023,"nodeType":"OverrideSpecifier","overrides":[],"src":"3801:8:6"},"parameters":{"id":1022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1019,"mutability":"mutable","name":"to","nameLocation":"3766:2:6","nodeType":"VariableDeclaration","scope":1041,"src":"3758:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1018,"name":"address","nodeType":"ElementaryTypeName","src":"3758:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1021,"mutability":"mutable","name":"amount","nameLocation":"3778:6:6","nodeType":"VariableDeclaration","scope":1041,"src":"3770:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1020,"name":"uint256","nodeType":"ElementaryTypeName","src":"3770:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3757:28:6"},"returnParameters":{"id":1026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1041,"src":"3819:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1024,"name":"bool","nodeType":"ElementaryTypeName","src":"3819:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3818:6:6"},"scope":1504,"src":"3740:189:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1559],"body":{"id":1058,"nodeType":"Block","src":"4085:51:6","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":1052,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":939,"src":"4102:11:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1054,"indexExpression":{"id":1053,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1044,"src":"4114:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4102:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1056,"indexExpression":{"id":1055,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1046,"src":"4121:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4102:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1051,"id":1057,"nodeType":"Return","src":"4095:34:6"}]},"documentation":{"id":1042,"nodeType":"StructuredDocumentation","src":"3935:47:6","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":1059,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3996:9:6","nodeType":"FunctionDefinition","overrides":{"id":1048,"nodeType":"OverrideSpecifier","overrides":[],"src":"4058:8:6"},"parameters":{"id":1047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1044,"mutability":"mutable","name":"owner","nameLocation":"4014:5:6","nodeType":"VariableDeclaration","scope":1059,"src":"4006:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1043,"name":"address","nodeType":"ElementaryTypeName","src":"4006:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1046,"mutability":"mutable","name":"spender","nameLocation":"4029:7:6","nodeType":"VariableDeclaration","scope":1059,"src":"4021:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1045,"name":"address","nodeType":"ElementaryTypeName","src":"4021:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4005:32:6"},"returnParameters":{"id":1051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1059,"src":"4076:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1049,"name":"uint256","nodeType":"ElementaryTypeName","src":"4076:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4075:9:6"},"scope":1504,"src":"3987:149:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1569],"body":{"id":1083,"nodeType":"Block","src":"4533:108:6","statements":[{"assignments":[1071],"declarations":[{"constant":false,"id":1071,"mutability":"mutable","name":"owner","nameLocation":"4551:5:6","nodeType":"VariableDeclaration","scope":1083,"src":"4543:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1070,"name":"address","nodeType":"ElementaryTypeName","src":"4543:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1074,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1072,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"4559:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4559:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4543:28:6"},{"expression":{"arguments":[{"id":1076,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1071,"src":"4590:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1077,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"4597:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1078,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1064,"src":"4606:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1075,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"4581:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4581:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1080,"nodeType":"ExpressionStatement","src":"4581:32:6"},{"expression":{"hexValue":"74727565","id":1081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4630:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1069,"id":1082,"nodeType":"Return","src":"4623:11:6"}]},"documentation":{"id":1060,"nodeType":"StructuredDocumentation","src":"4142:297:6","text":" @dev See {IERC20-approve}.\n NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":1084,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4453:7:6","nodeType":"FunctionDefinition","overrides":{"id":1066,"nodeType":"OverrideSpecifier","overrides":[],"src":"4509:8:6"},"parameters":{"id":1065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1062,"mutability":"mutable","name":"spender","nameLocation":"4469:7:6","nodeType":"VariableDeclaration","scope":1084,"src":"4461:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1061,"name":"address","nodeType":"ElementaryTypeName","src":"4461:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1064,"mutability":"mutable","name":"amount","nameLocation":"4486:6:6","nodeType":"VariableDeclaration","scope":1084,"src":"4478:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1063,"name":"uint256","nodeType":"ElementaryTypeName","src":"4478:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4460:33:6"},"returnParameters":{"id":1069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1084,"src":"4527:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1067,"name":"bool","nodeType":"ElementaryTypeName","src":"4527:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4526:6:6"},"scope":1504,"src":"4444:197:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1581],"body":{"id":1116,"nodeType":"Block","src":"5306:153:6","statements":[{"assignments":[1098],"declarations":[{"constant":false,"id":1098,"mutability":"mutable","name":"spender","nameLocation":"5324:7:6","nodeType":"VariableDeclaration","scope":1116,"src":"5316:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1097,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1101,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1099,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"5334:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5334:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5316:30:6"},{"expression":{"arguments":[{"id":1103,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"5372:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1104,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"5378:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1105,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"5387:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1102,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1481,"src":"5356:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5356:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1107,"nodeType":"ExpressionStatement","src":"5356:38:6"},{"expression":{"arguments":[{"id":1109,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1087,"src":"5414:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1110,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"5420:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1111,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"5424:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1108,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"5404:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5404:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1113,"nodeType":"ExpressionStatement","src":"5404:27:6"},{"expression":{"hexValue":"74727565","id":1114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5448:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1096,"id":1115,"nodeType":"Return","src":"5441:11:6"}]},"documentation":{"id":1085,"nodeType":"StructuredDocumentation","src":"4647:551:6","text":" @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`.\n - the caller must have allowance for ``from``'s tokens of at least\n `amount`."},"functionSelector":"23b872dd","id":1117,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5212:12:6","nodeType":"FunctionDefinition","overrides":{"id":1093,"nodeType":"OverrideSpecifier","overrides":[],"src":"5282:8:6"},"parameters":{"id":1092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1087,"mutability":"mutable","name":"from","nameLocation":"5233:4:6","nodeType":"VariableDeclaration","scope":1117,"src":"5225:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1086,"name":"address","nodeType":"ElementaryTypeName","src":"5225:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1089,"mutability":"mutable","name":"to","nameLocation":"5247:2:6","nodeType":"VariableDeclaration","scope":1117,"src":"5239:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1088,"name":"address","nodeType":"ElementaryTypeName","src":"5239:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1091,"mutability":"mutable","name":"amount","nameLocation":"5259:6:6","nodeType":"VariableDeclaration","scope":1117,"src":"5251:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1090,"name":"uint256","nodeType":"ElementaryTypeName","src":"5251:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5224:42:6"},"returnParameters":{"id":1096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1095,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1117,"src":"5300:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1094,"name":"bool","nodeType":"ElementaryTypeName","src":"5300:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5299:6:6"},"scope":1504,"src":"5203:256:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1145,"nodeType":"Block","src":"5948:140:6","statements":[{"assignments":[1128],"declarations":[{"constant":false,"id":1128,"mutability":"mutable","name":"owner","nameLocation":"5966:5:6","nodeType":"VariableDeclaration","scope":1145,"src":"5958:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1127,"name":"address","nodeType":"ElementaryTypeName","src":"5958:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1131,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1129,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"5974:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5974:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5958:28:6"},{"expression":{"arguments":[{"id":1133,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1128,"src":"6005:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1134,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"6012:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1136,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1128,"src":"6031:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1137,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1120,"src":"6038:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1135,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"6021:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6021:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1139,"name":"addedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1122,"src":"6049:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6021:38:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1132,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"5996:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5996:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1142,"nodeType":"ExpressionStatement","src":"5996:64:6"},{"expression":{"hexValue":"74727565","id":1143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6077:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1126,"id":1144,"nodeType":"Return","src":"6070:11:6"}]},"documentation":{"id":1118,"nodeType":"StructuredDocumentation","src":"5465:384:6","text":" @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"39509351","id":1146,"implemented":true,"kind":"function","modifiers":[],"name":"increaseAllowance","nameLocation":"5863:17:6","nodeType":"FunctionDefinition","parameters":{"id":1123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"spender","nameLocation":"5889:7:6","nodeType":"VariableDeclaration","scope":1146,"src":"5881:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1119,"name":"address","nodeType":"ElementaryTypeName","src":"5881:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1122,"mutability":"mutable","name":"addedValue","nameLocation":"5906:10:6","nodeType":"VariableDeclaration","scope":1146,"src":"5898:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1121,"name":"uint256","nodeType":"ElementaryTypeName","src":"5898:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5880:37:6"},"returnParameters":{"id":1126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1125,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1146,"src":"5942:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1124,"name":"bool","nodeType":"ElementaryTypeName","src":"5942:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5941:6:6"},"scope":1504,"src":"5854:234:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1186,"nodeType":"Block","src":"6674:328:6","statements":[{"assignments":[1157],"declarations":[{"constant":false,"id":1157,"mutability":"mutable","name":"owner","nameLocation":"6692:5:6","nodeType":"VariableDeclaration","scope":1186,"src":"6684:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1156,"name":"address","nodeType":"ElementaryTypeName","src":"6684:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1160,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1158,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"6700:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6700:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6684:28:6"},{"assignments":[1162],"declarations":[{"constant":false,"id":1162,"mutability":"mutable","name":"currentAllowance","nameLocation":"6730:16:6","nodeType":"VariableDeclaration","scope":1186,"src":"6722:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1161,"name":"uint256","nodeType":"ElementaryTypeName","src":"6722:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1167,"initialValue":{"arguments":[{"id":1164,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1157,"src":"6759:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1165,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1149,"src":"6766:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1163,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"6749:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6749:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6722:52:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1169,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1162,"src":"6792:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1170,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1151,"src":"6812:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6792:35:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f","id":1172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6829:39:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","typeString":"literal_string \"ERC20: decreased allowance below zero\""},"value":"ERC20: decreased allowance below zero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","typeString":"literal_string \"ERC20: decreased allowance below zero\""}],"id":1168,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6784:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6784:85:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1174,"nodeType":"ExpressionStatement","src":"6784:85:6"},{"id":1183,"nodeType":"UncheckedBlock","src":"6879:95:6","statements":[{"expression":{"arguments":[{"id":1176,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1157,"src":"6912:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1177,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1149,"src":"6919:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1178,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1162,"src":"6928:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1179,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1151,"src":"6947:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6928:34:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1175,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"6903:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6903:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1182,"nodeType":"ExpressionStatement","src":"6903:60:6"}]},{"expression":{"hexValue":"74727565","id":1184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6991:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1155,"id":1185,"nodeType":"Return","src":"6984:11:6"}]},"documentation":{"id":1147,"nodeType":"StructuredDocumentation","src":"6094:476:6","text":" @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."},"functionSelector":"a457c2d7","id":1187,"implemented":true,"kind":"function","modifiers":[],"name":"decreaseAllowance","nameLocation":"6584:17:6","nodeType":"FunctionDefinition","parameters":{"id":1152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1149,"mutability":"mutable","name":"spender","nameLocation":"6610:7:6","nodeType":"VariableDeclaration","scope":1187,"src":"6602:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1148,"name":"address","nodeType":"ElementaryTypeName","src":"6602:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1151,"mutability":"mutable","name":"subtractedValue","nameLocation":"6627:15:6","nodeType":"VariableDeclaration","scope":1187,"src":"6619:23:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1150,"name":"uint256","nodeType":"ElementaryTypeName","src":"6619:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6601:42:6"},"returnParameters":{"id":1155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1154,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1187,"src":"6668:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1153,"name":"bool","nodeType":"ElementaryTypeName","src":"6668:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6667:6:6"},"scope":1504,"src":"6575:427:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1263,"nodeType":"Block","src":"7534:710:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1198,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7552:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7568:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7560:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1199,"name":"address","nodeType":"ElementaryTypeName","src":"7560:7:6","typeDescriptions":{}}},"id":1202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7560:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7552:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373","id":1204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7572:39:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","typeString":"literal_string \"ERC20: transfer from the zero address\""},"value":"ERC20: transfer from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","typeString":"literal_string \"ERC20: transfer from the zero address\""}],"id":1197,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7544:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7544:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1206,"nodeType":"ExpressionStatement","src":"7544:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1208,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"7630:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7644:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7636:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1209,"name":"address","nodeType":"ElementaryTypeName","src":"7636:7:6","typeDescriptions":{}}},"id":1212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7636:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7630:16:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472657373","id":1214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7648:37:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","typeString":"literal_string \"ERC20: transfer to the zero address\""},"value":"ERC20: transfer to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","typeString":"literal_string \"ERC20: transfer to the zero address\""}],"id":1207,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7622:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7622:64:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1216,"nodeType":"ExpressionStatement","src":"7622:64:6"},{"expression":{"arguments":[{"id":1218,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7718:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1219,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"7724:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1220,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"7728:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1217,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"7697:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7697:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1222,"nodeType":"ExpressionStatement","src":"7697:38:6"},{"assignments":[1224],"declarations":[{"constant":false,"id":1224,"mutability":"mutable","name":"fromBalance","nameLocation":"7754:11:6","nodeType":"VariableDeclaration","scope":1263,"src":"7746:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1223,"name":"uint256","nodeType":"ElementaryTypeName","src":"7746:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1228,"initialValue":{"baseExpression":{"id":1225,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"7768:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1227,"indexExpression":{"id":1226,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7778:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7768:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7746:37:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1230,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1224,"src":"7801:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1231,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"7816:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7801:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365","id":1233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7824:40:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","typeString":"literal_string \"ERC20: transfer amount exceeds balance\""},"value":"ERC20: transfer amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","typeString":"literal_string \"ERC20: transfer amount exceeds balance\""}],"id":1229,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7793:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7793:72:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1235,"nodeType":"ExpressionStatement","src":"7793:72:6"},{"id":1250,"nodeType":"UncheckedBlock","src":"7875:273:6","statements":[{"expression":{"id":1242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1236,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"7899:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1238,"indexExpression":{"id":1237,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"7909:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7899:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1239,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1224,"src":"7917:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1240,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"7931:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7917:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7899:38:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1243,"nodeType":"ExpressionStatement","src":"7899:38:6"},{"expression":{"id":1248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1244,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"8114:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1246,"indexExpression":{"id":1245,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"8124:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8114:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1247,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"8131:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8114:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1249,"nodeType":"ExpressionStatement","src":"8114:23:6"}]},{"eventCall":{"arguments":[{"id":1252,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"8172:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1253,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"8178:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1254,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"8182:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1251,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"8163:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8163:26:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1256,"nodeType":"EmitStatement","src":"8158:31:6"},{"expression":{"arguments":[{"id":1258,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"8220:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1259,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1192,"src":"8226:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1260,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1194,"src":"8230:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1257,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"8200:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8200:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1262,"nodeType":"ExpressionStatement","src":"8200:37:6"}]},"documentation":{"id":1188,"nodeType":"StructuredDocumentation","src":"7008:443:6","text":" @dev Moves `amount` of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`."},"id":1264,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"7465:9:6","nodeType":"FunctionDefinition","parameters":{"id":1195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1190,"mutability":"mutable","name":"from","nameLocation":"7483:4:6","nodeType":"VariableDeclaration","scope":1264,"src":"7475:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1189,"name":"address","nodeType":"ElementaryTypeName","src":"7475:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1192,"mutability":"mutable","name":"to","nameLocation":"7497:2:6","nodeType":"VariableDeclaration","scope":1264,"src":"7489:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1191,"name":"address","nodeType":"ElementaryTypeName","src":"7489:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1194,"mutability":"mutable","name":"amount","nameLocation":"7509:6:6","nodeType":"VariableDeclaration","scope":1264,"src":"7501:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1193,"name":"uint256","nodeType":"ElementaryTypeName","src":"7501:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7474:42:6"},"returnParameters":{"id":1196,"nodeType":"ParameterList","parameters":[],"src":"7534:0:6"},"scope":1504,"src":"7456:788:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1320,"nodeType":"Block","src":"8585:470:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1273,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8603:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8622:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8614:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1274,"name":"address","nodeType":"ElementaryTypeName","src":"8614:7:6","typeDescriptions":{}}},"id":1277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8614:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8603:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","id":1279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8626:33:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","typeString":"literal_string \"ERC20: mint to the zero address\""},"value":"ERC20: mint to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","typeString":"literal_string \"ERC20: mint to the zero address\""}],"id":1272,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8595:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8595:65:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1281,"nodeType":"ExpressionStatement","src":"8595:65:6"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8700:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1284,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8692:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1283,"name":"address","nodeType":"ElementaryTypeName","src":"8692:7:6","typeDescriptions":{}}},"id":1286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8692:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1287,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8704:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1288,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8713:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1282,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"8671:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8671:49:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1290,"nodeType":"ExpressionStatement","src":"8671:49:6"},{"expression":{"id":1293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1291,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":941,"src":"8731:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1292,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8747:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8731:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1294,"nodeType":"ExpressionStatement","src":"8731:22:6"},{"id":1301,"nodeType":"UncheckedBlock","src":"8763:175:6","statements":[{"expression":{"id":1299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1295,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"8899:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1297,"indexExpression":{"id":1296,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8909:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8899:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1298,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8921:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8899:28:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1300,"nodeType":"ExpressionStatement","src":"8899:28:6"}]},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8969:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8961:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1303,"name":"address","nodeType":"ElementaryTypeName","src":"8961:7:6","typeDescriptions":{}}},"id":1306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8961:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1307,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"8973:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1308,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"8982:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1302,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"8952:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1310,"nodeType":"EmitStatement","src":"8947:42:6"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9028:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1313,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9020:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1312,"name":"address","nodeType":"ElementaryTypeName","src":"9020:7:6","typeDescriptions":{}}},"id":1315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9020:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1316,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1267,"src":"9032:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1317,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1269,"src":"9041:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1311,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"9000:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9000:48:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1319,"nodeType":"ExpressionStatement","src":"9000:48:6"}]},"documentation":{"id":1265,"nodeType":"StructuredDocumentation","src":"8250:265:6","text":"@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."},"id":1321,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8529:5:6","nodeType":"FunctionDefinition","parameters":{"id":1270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1267,"mutability":"mutable","name":"account","nameLocation":"8543:7:6","nodeType":"VariableDeclaration","scope":1321,"src":"8535:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1266,"name":"address","nodeType":"ElementaryTypeName","src":"8535:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1269,"mutability":"mutable","name":"amount","nameLocation":"8560:6:6","nodeType":"VariableDeclaration","scope":1321,"src":"8552:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1268,"name":"uint256","nodeType":"ElementaryTypeName","src":"8552:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8534:33:6"},"returnParameters":{"id":1271,"nodeType":"ParameterList","parameters":[],"src":"8585:0:6"},"scope":1504,"src":"8520:535:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1392,"nodeType":"Block","src":"9440:594:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1330,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9458:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9477:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9469:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1331,"name":"address","nodeType":"ElementaryTypeName","src":"9469:7:6","typeDescriptions":{}}},"id":1334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9469:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9458:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f2061646472657373","id":1336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9481:35:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","typeString":"literal_string \"ERC20: burn from the zero address\""},"value":"ERC20: burn from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","typeString":"literal_string \"ERC20: burn from the zero address\""}],"id":1329,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9450:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9450:67:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1338,"nodeType":"ExpressionStatement","src":"9450:67:6"},{"expression":{"arguments":[{"id":1340,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9549:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9566:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9558:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1341,"name":"address","nodeType":"ElementaryTypeName","src":"9558:7:6","typeDescriptions":{}}},"id":1344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9558:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1345,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9570:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1339,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1492,"src":"9528:20:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9528:49:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1347,"nodeType":"ExpressionStatement","src":"9528:49:6"},{"assignments":[1349],"declarations":[{"constant":false,"id":1349,"mutability":"mutable","name":"accountBalance","nameLocation":"9596:14:6","nodeType":"VariableDeclaration","scope":1392,"src":"9588:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1348,"name":"uint256","nodeType":"ElementaryTypeName","src":"9588:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1353,"initialValue":{"baseExpression":{"id":1350,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"9613:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1352,"indexExpression":{"id":1351,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9623:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9613:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9588:43:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1355,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"9649:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1356,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9667:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9649:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365","id":1358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9675:36:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","typeString":"literal_string \"ERC20: burn amount exceeds balance\""},"value":"ERC20: burn amount exceeds balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","typeString":"literal_string \"ERC20: burn amount exceeds balance\""}],"id":1354,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9641:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9641:71:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1360,"nodeType":"ExpressionStatement","src":"9641:71:6"},{"id":1373,"nodeType":"UncheckedBlock","src":"9722:194:6","statements":[{"expression":{"id":1367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1361,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":933,"src":"9746:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1363,"indexExpression":{"id":1362,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9756:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9746:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1364,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1349,"src":"9767:14:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1365,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9784:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9767:23:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9746:44:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1368,"nodeType":"ExpressionStatement","src":"9746:44:6"},{"expression":{"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1369,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":941,"src":"9883:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1370,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9899:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9883:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1372,"nodeType":"ExpressionStatement","src":"9883:22:6"}]},{"eventCall":{"arguments":[{"id":1375,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9940:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9957:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9949:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1376,"name":"address","nodeType":"ElementaryTypeName","src":"9949:7:6","typeDescriptions":{}}},"id":1379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9949:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1380,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"9961:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1374,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1516,"src":"9931:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9931:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1382,"nodeType":"EmitStatement","src":"9926:42:6"},{"expression":{"arguments":[{"id":1384,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"9999:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10016:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10008:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1385,"name":"address","nodeType":"ElementaryTypeName","src":"10008:7:6","typeDescriptions":{}}},"id":1388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10008:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1389,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1326,"src":"10020:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1383,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"9979:19:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9979:48:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1391,"nodeType":"ExpressionStatement","src":"9979:48:6"}]},"documentation":{"id":1322,"nodeType":"StructuredDocumentation","src":"9061:309:6","text":" @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."},"id":1393,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"9384:5:6","nodeType":"FunctionDefinition","parameters":{"id":1327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1324,"mutability":"mutable","name":"account","nameLocation":"9398:7:6","nodeType":"VariableDeclaration","scope":1393,"src":"9390:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1323,"name":"address","nodeType":"ElementaryTypeName","src":"9390:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1326,"mutability":"mutable","name":"amount","nameLocation":"9415:6:6","nodeType":"VariableDeclaration","scope":1393,"src":"9407:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1325,"name":"uint256","nodeType":"ElementaryTypeName","src":"9407:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9389:33:6"},"returnParameters":{"id":1328,"nodeType":"ParameterList","parameters":[],"src":"9440:0:6"},"scope":1504,"src":"9375:659:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1437,"nodeType":"Block","src":"10540:257:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1404,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1396,"src":"10558:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10575:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1406,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10567:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1405,"name":"address","nodeType":"ElementaryTypeName","src":"10567:7:6","typeDescriptions":{}}},"id":1408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10567:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10558:19:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373","id":1410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10579:38:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","typeString":"literal_string \"ERC20: approve from the zero address\""},"value":"ERC20: approve from the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","typeString":"literal_string \"ERC20: approve from the zero address\""}],"id":1403,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10550:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10550:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1412,"nodeType":"ExpressionStatement","src":"10550:68:6"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1414,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1398,"src":"10636:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10655:1:6","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1416,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10647:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1415,"name":"address","nodeType":"ElementaryTypeName","src":"10647:7:6","typeDescriptions":{}}},"id":1418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10647:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10636:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f2061646472657373","id":1420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10659:36:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","typeString":"literal_string \"ERC20: approve to the zero address\""},"value":"ERC20: approve to the zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","typeString":"literal_string \"ERC20: approve to the zero address\""}],"id":1413,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"10628:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10628:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1422,"nodeType":"ExpressionStatement","src":"10628:68:6"},{"expression":{"id":1429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1423,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":939,"src":"10707:11:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1426,"indexExpression":{"id":1424,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1396,"src":"10719:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10707:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1427,"indexExpression":{"id":1425,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1398,"src":"10726:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10707:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1428,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1400,"src":"10737:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10707:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1430,"nodeType":"ExpressionStatement","src":"10707:36:6"},{"eventCall":{"arguments":[{"id":1432,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1396,"src":"10767:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1433,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1398,"src":"10774:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1434,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1400,"src":"10783:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1431,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1525,"src":"10758:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10758:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1436,"nodeType":"EmitStatement","src":"10753:37:6"}]},"documentation":{"id":1394,"nodeType":"StructuredDocumentation","src":"10040:412:6","text":" @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."},"id":1438,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10466:8:6","nodeType":"FunctionDefinition","parameters":{"id":1401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1396,"mutability":"mutable","name":"owner","nameLocation":"10483:5:6","nodeType":"VariableDeclaration","scope":1438,"src":"10475:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1395,"name":"address","nodeType":"ElementaryTypeName","src":"10475:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1398,"mutability":"mutable","name":"spender","nameLocation":"10498:7:6","nodeType":"VariableDeclaration","scope":1438,"src":"10490:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1397,"name":"address","nodeType":"ElementaryTypeName","src":"10490:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1400,"mutability":"mutable","name":"amount","nameLocation":"10515:6:6","nodeType":"VariableDeclaration","scope":1438,"src":"10507:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1399,"name":"uint256","nodeType":"ElementaryTypeName","src":"10507:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10474:48:6"},"returnParameters":{"id":1402,"nodeType":"ParameterList","parameters":[],"src":"10540:0:6"},"scope":1504,"src":"10457:340:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1480,"nodeType":"Block","src":"11168:321:6","statements":[{"assignments":[1449],"declarations":[{"constant":false,"id":1449,"mutability":"mutable","name":"currentAllowance","nameLocation":"11186:16:6","nodeType":"VariableDeclaration","scope":1480,"src":"11178:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1448,"name":"uint256","nodeType":"ElementaryTypeName","src":"11178:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1454,"initialValue":{"arguments":[{"id":1451,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1441,"src":"11215:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1452,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1443,"src":"11222:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1450,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"11205:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11205:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11178:52:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1455,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1449,"src":"11244:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":1458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11269:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1457,"name":"uint256","nodeType":"ElementaryTypeName","src":"11269:7:6","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1456,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11264:4:6","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11264:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":1460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11278:3:6","memberName":"max","nodeType":"MemberAccess","src":"11264:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11244:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1479,"nodeType":"IfStatement","src":"11240:243:6","trueBody":{"id":1478,"nodeType":"Block","src":"11283:200:6","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1463,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1449,"src":"11305:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1464,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"11325:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11305:26:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","id":1466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11333:31:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""},"value":"ERC20: insufficient allowance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""}],"id":1462,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"11297:7:6","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11297:68:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1468,"nodeType":"ExpressionStatement","src":"11297:68:6"},{"id":1477,"nodeType":"UncheckedBlock","src":"11379:94:6","statements":[{"expression":{"arguments":[{"id":1470,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1441,"src":"11416:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1471,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1443,"src":"11423:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1472,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1449,"src":"11432:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1473,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1445,"src":"11451:6:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11432:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1469,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1438,"src":"11407:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11407:51:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1476,"nodeType":"ExpressionStatement","src":"11407:51:6"}]}]}}]},"documentation":{"id":1439,"nodeType":"StructuredDocumentation","src":"10803:270:6","text":" @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n Does not update the allowance amount in case of infinite allowance.\n Revert if not enough allowance is available.\n Might emit an {Approval} event."},"id":1481,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"11087:15:6","nodeType":"FunctionDefinition","parameters":{"id":1446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1441,"mutability":"mutable","name":"owner","nameLocation":"11111:5:6","nodeType":"VariableDeclaration","scope":1481,"src":"11103:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1440,"name":"address","nodeType":"ElementaryTypeName","src":"11103:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1443,"mutability":"mutable","name":"spender","nameLocation":"11126:7:6","nodeType":"VariableDeclaration","scope":1481,"src":"11118:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1442,"name":"address","nodeType":"ElementaryTypeName","src":"11118:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1445,"mutability":"mutable","name":"amount","nameLocation":"11143:6:6","nodeType":"VariableDeclaration","scope":1481,"src":"11135:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1444,"name":"uint256","nodeType":"ElementaryTypeName","src":"11135:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11102:48:6"},"returnParameters":{"id":1447,"nodeType":"ParameterList","parameters":[],"src":"11168:0:6"},"scope":1504,"src":"11078:411:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1491,"nodeType":"Block","src":"12162:2:6","statements":[]},"documentation":{"id":1482,"nodeType":"StructuredDocumentation","src":"11495:573:6","text":" @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":1492,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"12082:20:6","nodeType":"FunctionDefinition","parameters":{"id":1489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1484,"mutability":"mutable","name":"from","nameLocation":"12111:4:6","nodeType":"VariableDeclaration","scope":1492,"src":"12103:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1483,"name":"address","nodeType":"ElementaryTypeName","src":"12103:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1486,"mutability":"mutable","name":"to","nameLocation":"12125:2:6","nodeType":"VariableDeclaration","scope":1492,"src":"12117:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1485,"name":"address","nodeType":"ElementaryTypeName","src":"12117:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1488,"mutability":"mutable","name":"amount","nameLocation":"12137:6:6","nodeType":"VariableDeclaration","scope":1492,"src":"12129:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1487,"name":"uint256","nodeType":"ElementaryTypeName","src":"12129:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12102:42:6"},"returnParameters":{"id":1490,"nodeType":"ParameterList","parameters":[],"src":"12162:0:6"},"scope":1504,"src":"12073:91:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1502,"nodeType":"Block","src":"12840:2:6","statements":[]},"documentation":{"id":1493,"nodeType":"StructuredDocumentation","src":"12170:577:6","text":" @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."},"id":1503,"implemented":true,"kind":"function","modifiers":[],"name":"_afterTokenTransfer","nameLocation":"12761:19:6","nodeType":"FunctionDefinition","parameters":{"id":1500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1495,"mutability":"mutable","name":"from","nameLocation":"12789:4:6","nodeType":"VariableDeclaration","scope":1503,"src":"12781:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1494,"name":"address","nodeType":"ElementaryTypeName","src":"12781:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1497,"mutability":"mutable","name":"to","nameLocation":"12803:2:6","nodeType":"VariableDeclaration","scope":1503,"src":"12795:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1496,"name":"address","nodeType":"ElementaryTypeName","src":"12795:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1499,"mutability":"mutable","name":"amount","nameLocation":"12815:6:6","nodeType":"VariableDeclaration","scope":1503,"src":"12807:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1498,"name":"uint256","nodeType":"ElementaryTypeName","src":"12807:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12780:42:6"},"returnParameters":{"id":1501,"nodeType":"ParameterList","parameters":[],"src":"12840:0:6"},"scope":1504,"src":"12752:90:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1505,"src":"1532:11312:6","usedErrors":[]}],"src":"105:12740:6"},"id":6},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[1582]},"id":1583,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1506,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:7"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":1507,"nodeType":"StructuredDocumentation","src":"131:70:7","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":1582,"linearizedBaseContracts":[1582],"name":"IERC20","nameLocation":"212:6:7","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1508,"nodeType":"StructuredDocumentation","src":"225:158:7","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":1516,"name":"Transfer","nameLocation":"394:8:7","nodeType":"EventDefinition","parameters":{"id":1515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1510,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"419:4:7","nodeType":"VariableDeclaration","scope":1516,"src":"403:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1509,"name":"address","nodeType":"ElementaryTypeName","src":"403:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1512,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"441:2:7","nodeType":"VariableDeclaration","scope":1516,"src":"425:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1511,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1514,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"453:5:7","nodeType":"VariableDeclaration","scope":1516,"src":"445:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1513,"name":"uint256","nodeType":"ElementaryTypeName","src":"445:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"402:57:7"},"src":"388:72:7"},{"anonymous":false,"documentation":{"id":1517,"nodeType":"StructuredDocumentation","src":"466:148:7","text":" @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":1525,"name":"Approval","nameLocation":"625:8:7","nodeType":"EventDefinition","parameters":{"id":1524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1519,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"650:5:7","nodeType":"VariableDeclaration","scope":1525,"src":"634:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1518,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1521,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"673:7:7","nodeType":"VariableDeclaration","scope":1525,"src":"657:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1520,"name":"address","nodeType":"ElementaryTypeName","src":"657:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1523,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"690:5:7","nodeType":"VariableDeclaration","scope":1525,"src":"682:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1522,"name":"uint256","nodeType":"ElementaryTypeName","src":"682:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"633:63:7"},"src":"619:78:7"},{"documentation":{"id":1526,"nodeType":"StructuredDocumentation","src":"703:66:7","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":1531,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"783:11:7","nodeType":"FunctionDefinition","parameters":{"id":1527,"nodeType":"ParameterList","parameters":[],"src":"794:2:7"},"returnParameters":{"id":1530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1529,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1531,"src":"820:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1528,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:7"},"scope":1582,"src":"774:55:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1532,"nodeType":"StructuredDocumentation","src":"835:72:7","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":1539,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:7","nodeType":"FunctionDefinition","parameters":{"id":1535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1534,"mutability":"mutable","name":"account","nameLocation":"939:7:7","nodeType":"VariableDeclaration","scope":1539,"src":"931:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1533,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:7"},"returnParameters":{"id":1538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1537,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1539,"src":"971:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1536,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:7"},"scope":1582,"src":"912:68:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1540,"nodeType":"StructuredDocumentation","src":"986:202:7","text":" @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":1549,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1202:8:7","nodeType":"FunctionDefinition","parameters":{"id":1545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1542,"mutability":"mutable","name":"to","nameLocation":"1219:2:7","nodeType":"VariableDeclaration","scope":1549,"src":"1211:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1541,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1544,"mutability":"mutable","name":"amount","nameLocation":"1231:6:7","nodeType":"VariableDeclaration","scope":1549,"src":"1223:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1543,"name":"uint256","nodeType":"ElementaryTypeName","src":"1223:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:28:7"},"returnParameters":{"id":1548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1547,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1549,"src":"1257:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1546,"name":"bool","nodeType":"ElementaryTypeName","src":"1257:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1256:6:7"},"scope":1582,"src":"1193:70:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1550,"nodeType":"StructuredDocumentation","src":"1269:264:7","text":" @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."},"functionSelector":"dd62ed3e","id":1559,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1547:9:7","nodeType":"FunctionDefinition","parameters":{"id":1555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1552,"mutability":"mutable","name":"owner","nameLocation":"1565:5:7","nodeType":"VariableDeclaration","scope":1559,"src":"1557:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1551,"name":"address","nodeType":"ElementaryTypeName","src":"1557:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1554,"mutability":"mutable","name":"spender","nameLocation":"1580:7:7","nodeType":"VariableDeclaration","scope":1559,"src":"1572:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1553,"name":"address","nodeType":"ElementaryTypeName","src":"1572:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1556:32:7"},"returnParameters":{"id":1558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1559,"src":"1612:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1556,"name":"uint256","nodeType":"ElementaryTypeName","src":"1612:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1611:9:7"},"scope":1582,"src":"1538:83:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1560,"nodeType":"StructuredDocumentation","src":"1627:642:7","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":1569,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2283:7:7","nodeType":"FunctionDefinition","parameters":{"id":1565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1562,"mutability":"mutable","name":"spender","nameLocation":"2299:7:7","nodeType":"VariableDeclaration","scope":1569,"src":"2291:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1561,"name":"address","nodeType":"ElementaryTypeName","src":"2291:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1564,"mutability":"mutable","name":"amount","nameLocation":"2316:6:7","nodeType":"VariableDeclaration","scope":1569,"src":"2308:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1563,"name":"uint256","nodeType":"ElementaryTypeName","src":"2308:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2290:33:7"},"returnParameters":{"id":1568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1569,"src":"2342:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1566,"name":"bool","nodeType":"ElementaryTypeName","src":"2342:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2341:6:7"},"scope":1582,"src":"2274:74:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1570,"nodeType":"StructuredDocumentation","src":"2354:287:7","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":1581,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2655:12:7","nodeType":"FunctionDefinition","parameters":{"id":1577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1572,"mutability":"mutable","name":"from","nameLocation":"2676:4:7","nodeType":"VariableDeclaration","scope":1581,"src":"2668:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1571,"name":"address","nodeType":"ElementaryTypeName","src":"2668:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1574,"mutability":"mutable","name":"to","nameLocation":"2690:2:7","nodeType":"VariableDeclaration","scope":1581,"src":"2682:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1573,"name":"address","nodeType":"ElementaryTypeName","src":"2682:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1576,"mutability":"mutable","name":"amount","nameLocation":"2702:6:7","nodeType":"VariableDeclaration","scope":1581,"src":"2694:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1575,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:42:7"},"returnParameters":{"id":1580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1579,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1581,"src":"2728:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1578,"name":"bool","nodeType":"ElementaryTypeName","src":"2728:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2727:6:7"},"scope":1582,"src":"2646:88:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1583,"src":"202:2534:7","usedErrors":[]}],"src":"106:2631:7"},"id":7},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[1582],"IERC20Metadata":[1607]},"id":1608,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1584,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"110:23:8"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":1585,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1608,"sourceUnit":1583,"src":"135:23:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1587,"name":"IERC20","nameLocations":["305:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":1582,"src":"305:6:8"},"id":1588,"nodeType":"InheritanceSpecifier","src":"305:6:8"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":1586,"nodeType":"StructuredDocumentation","src":"160:116:8","text":" @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"},"fullyImplemented":false,"id":1607,"linearizedBaseContracts":[1607,1582],"name":"IERC20Metadata","nameLocation":"287:14:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1589,"nodeType":"StructuredDocumentation","src":"318:54:8","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":1594,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"386:4:8","nodeType":"FunctionDefinition","parameters":{"id":1590,"nodeType":"ParameterList","parameters":[],"src":"390:2:8"},"returnParameters":{"id":1593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1592,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1594,"src":"416:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1591,"name":"string","nodeType":"ElementaryTypeName","src":"416:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"415:15:8"},"scope":1607,"src":"377:54:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1595,"nodeType":"StructuredDocumentation","src":"437:56:8","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":1600,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"507:6:8","nodeType":"FunctionDefinition","parameters":{"id":1596,"nodeType":"ParameterList","parameters":[],"src":"513:2:8"},"returnParameters":{"id":1599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1598,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1600,"src":"539:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1597,"name":"string","nodeType":"ElementaryTypeName","src":"539:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"538:15:8"},"scope":1607,"src":"498:56:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1601,"nodeType":"StructuredDocumentation","src":"560:65:8","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":1606,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"639:8:8","nodeType":"FunctionDefinition","parameters":{"id":1602,"nodeType":"ParameterList","parameters":[],"src":"647:2:8"},"returnParameters":{"id":1605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1604,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1606,"src":"673:5:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1603,"name":"uint8","nodeType":"ElementaryTypeName","src":"673:5:8","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"672:7:8"},"scope":1607,"src":"630:50:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1608,"src":"277:405:8","usedErrors":[]}],"src":"110:573:8"},"id":8},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[1637]},"id":1638,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1609,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101:23:9"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":1610,"nodeType":"StructuredDocumentation","src":"126:496:9","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":1637,"linearizedBaseContracts":[1637],"name":"Context","nameLocation":"641:7:9","nodeType":"ContractDefinition","nodes":[{"body":{"id":1618,"nodeType":"Block","src":"717:34:9","statements":[{"expression":{"expression":{"id":1615,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"734:3:9","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"738:6:9","memberName":"sender","nodeType":"MemberAccess","src":"734:10:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1614,"id":1617,"nodeType":"Return","src":"727:17:9"}]},"id":1619,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"664:10:9","nodeType":"FunctionDefinition","parameters":{"id":1611,"nodeType":"ParameterList","parameters":[],"src":"674:2:9"},"returnParameters":{"id":1614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1613,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1619,"src":"708:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1612,"name":"address","nodeType":"ElementaryTypeName","src":"708:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"707:9:9"},"scope":1637,"src":"655:96:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1627,"nodeType":"Block","src":"824:32:9","statements":[{"expression":{"expression":{"id":1624,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"841:3:9","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"845:4:9","memberName":"data","nodeType":"MemberAccess","src":"841:8:9","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":1623,"id":1626,"nodeType":"Return","src":"834:15:9"}]},"id":1628,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"766:8:9","nodeType":"FunctionDefinition","parameters":{"id":1620,"nodeType":"ParameterList","parameters":[],"src":"774:2:9"},"returnParameters":{"id":1623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1628,"src":"808:14:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1621,"name":"bytes","nodeType":"ElementaryTypeName","src":"808:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"807:16:9"},"scope":1637,"src":"757:99:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1635,"nodeType":"Block","src":"934:25:9","statements":[{"expression":{"hexValue":"30","id":1633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"951:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1632,"id":1634,"nodeType":"Return","src":"944:8:9"}]},"id":1636,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"871:20:9","nodeType":"FunctionDefinition","parameters":{"id":1629,"nodeType":"ParameterList","parameters":[],"src":"891:2:9"},"returnParameters":{"id":1632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1631,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1636,"src":"925:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1630,"name":"uint256","nodeType":"ElementaryTypeName","src":"925:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"924:9:9"},"scope":1637,"src":"862:97:9","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":1638,"src":"623:338:9","usedErrors":[]}],"src":"101:861:9"},"id":9},"contracts/Gateway.sol":{"ast":{"absolutePath":"contracts/Gateway.sol","exportedSymbols":{"ContextUpgradeable":[917],"Gateway":[2251],"GatewaySettingManager":[2519],"IERC20":[1582],"IGateway":[3287],"Initializable":[408],"PausableUpgradeable":[536],"SharedStructs":[3455]},"id":2252,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":1639,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:10"},{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","id":1640,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2252,"sourceUnit":537,"src":"65:78:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/GatewaySettingManager.sol","file":"./GatewaySettingManager.sol","id":1642,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2252,"sourceUnit":2520,"src":"145:66:10","symbolAliases":[{"foreign":{"id":1641,"name":"GatewaySettingManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2519,"src":"153:21:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGateway.sol","file":"./interfaces/IGateway.sol","id":1645,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2252,"sourceUnit":3288,"src":"212:59:10","symbolAliases":[{"foreign":{"id":1643,"name":"IGateway","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3287,"src":"220:8:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":1644,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"230:6:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/libraries/SharedStructs.sol","file":"./libraries/SharedStructs.sol","id":1647,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2252,"sourceUnit":3456,"src":"272:60:10","symbolAliases":[{"foreign":{"id":1646,"name":"SharedStructs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3455,"src":"280:13:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1649,"name":"IGateway","nameLocations":["471:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":3287,"src":"471:8:10"},"id":1650,"nodeType":"InheritanceSpecifier","src":"471:8:10"},{"baseName":{"id":1651,"name":"GatewaySettingManager","nameLocations":["481:21:10"],"nodeType":"IdentifierPath","referencedDeclaration":2519,"src":"481:21:10"},"id":1652,"nodeType":"InheritanceSpecifier","src":"481:21:10"},{"baseName":{"id":1653,"name":"PausableUpgradeable","nameLocations":["504:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":536,"src":"504:19:10"},"id":1654,"nodeType":"InheritanceSpecifier","src":"504:19:10"}],"canonicalName":"Gateway","contractDependencies":[],"contractKind":"contract","documentation":{"id":1648,"nodeType":"StructuredDocumentation","src":"334:116:10","text":" @title Gateway\n @notice This contract serves as a gateway for creating orders and managing settlements."},"fullyImplemented":true,"id":2251,"linearizedBaseContracts":[2251,536,2519,106,239,917,408,3287],"name":"Gateway","nameLocation":"460:7:10","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Gateway.fee","id":1659,"members":[{"constant":false,"id":1656,"mutability":"mutable","name":"protocolFee","nameLocation":"550:11:10","nodeType":"VariableDeclaration","scope":1659,"src":"542:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1655,"name":"uint256","nodeType":"ElementaryTypeName","src":"542:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1658,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"573:23:10","nodeType":"VariableDeclaration","scope":1659,"src":"565:31:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1657,"name":"uint256","nodeType":"ElementaryTypeName","src":"565:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"fee","nameLocation":"534:3:10","nodeType":"StructDefinition","scope":2251,"src":"527:73:10","visibility":"public"},{"constant":false,"id":1664,"mutability":"mutable","name":"order","nameLocation":"637:5:10","nodeType":"VariableDeclaration","scope":2251,"src":"603:39:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"typeName":{"id":1663,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1660,"name":"bytes32","nodeType":"ElementaryTypeName","src":"611:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"603:25:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1662,"nodeType":"UserDefinedTypeName","pathNode":{"id":1661,"name":"Order","nameLocations":["622:5:10"],"nodeType":"IdentifierPath","referencedDeclaration":3196,"src":"622:5:10"},"referencedDeclaration":3196,"src":"622:5:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage_ptr","typeString":"struct IGateway.Order"}}},"visibility":"private"},{"constant":false,"id":1668,"mutability":"mutable","name":"_nonce","nameLocation":"681:6:10","nodeType":"VariableDeclaration","scope":2251,"src":"645:42:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1667,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1665,"name":"address","nodeType":"ElementaryTypeName","src":"653:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"645:27:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1666,"name":"uint256","nodeType":"ElementaryTypeName","src":"664:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":1672,"mutability":"mutable","name":"__gap","nameLocation":"710:5:10","nodeType":"VariableDeclaration","scope":2251,"src":"690:25:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":1669,"name":"uint256","nodeType":"ElementaryTypeName","src":"690:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1671,"length":{"hexValue":"3530","id":1670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"698:2:10","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"690:11:10","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"},{"body":{"id":1679,"nodeType":"Block","src":"783:30:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1676,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":389,"src":"787:20:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"787:22:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1678,"nodeType":"ExpressionStatement","src":"787:22:10"}]},"documentation":{"id":1673,"nodeType":"StructuredDocumentation","src":"719:48:10","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":1680,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1674,"nodeType":"ParameterList","parameters":[],"src":"780:2:10"},"returnParameters":{"id":1675,"nodeType":"ParameterList","parameters":[],"src":"783:0:10"},"scope":2251,"src":"769:44:10","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1696,"nodeType":"Block","src":"899:71:10","statements":[{"expression":{"id":1688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1686,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"903:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"3130305f303030","id":1687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"913:7:10","typeDescriptions":{"typeIdentifier":"t_rational_100000_by_1","typeString":"int_const 100000"},"value":"100_000"},"src":"903:17:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1689,"nodeType":"ExpressionStatement","src":"903:17:10"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1690,"name":"__Ownable2Step_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"924:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"924:21:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1692,"nodeType":"ExpressionStatement","src":"924:21:10"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1693,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":440,"src":"949:15:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"949:17:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1695,"nodeType":"ExpressionStatement","src":"949:17:10"}]},"documentation":{"id":1681,"nodeType":"StructuredDocumentation","src":"816:38:10","text":" @dev Initialize function."},"functionSelector":"8129fc1c","id":1697,"implemented":true,"kind":"function","modifiers":[{"id":1684,"kind":"modifierInvocation","modifierName":{"id":1683,"name":"initializer","nameLocations":["887:11:10"],"nodeType":"IdentifierPath","referencedDeclaration":310,"src":"887:11:10"},"nodeType":"ModifierInvocation","src":"887:11:10"}],"name":"initialize","nameLocation":"865:10:10","nodeType":"FunctionDefinition","parameters":{"id":1682,"nodeType":"ParameterList","parameters":[],"src":"875:2:10"},"returnParameters":{"id":1685,"nodeType":"ParameterList","parameters":[],"src":"899:0:10"},"scope":2251,"src":"856:114:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1709,"nodeType":"Block","src":"1079:72:10","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1701,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1091:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1095:6:10","memberName":"sender","nodeType":"MemberAccess","src":"1091:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1703,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2266,"src":"1105:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1091:32:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c7941676772656761746f72","id":1705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1125:16:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""},"value":"OnlyAggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""}],"id":1700,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1083:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1083:59:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1707,"nodeType":"ExpressionStatement","src":"1083:59:10"},{"id":1708,"nodeType":"PlaceholderStatement","src":"1146:1:10"}]},"documentation":{"id":1698,"nodeType":"StructuredDocumentation","src":"973:78:10","text":" @dev Modifier that allows only the aggregator to call a function."},"id":1710,"name":"onlyAggregator","nameLocation":"1062:14:10","nodeType":"ModifierDefinition","parameters":{"id":1699,"nodeType":"ParameterList","parameters":[],"src":"1076:2:10"},"src":"1053:98:10","virtual":false,"visibility":"internal"},{"body":{"id":1719,"nodeType":"Block","src":"1422:16:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1716,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"1426:6:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1426:8:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1718,"nodeType":"ExpressionStatement","src":"1426:8:10"}]},"documentation":{"id":1711,"nodeType":"StructuredDocumentation","src":"1347:37:10","text":" @dev Pause the contract."},"functionSelector":"8456cb59","id":1720,"implemented":true,"kind":"function","modifiers":[{"id":1714,"kind":"modifierInvocation","modifierName":{"id":1713,"name":"onlyOwner","nameLocations":["1412:9:10"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1412:9:10"},"nodeType":"ModifierInvocation","src":"1412:9:10"}],"name":"pause","nameLocation":"1395:5:10","nodeType":"FunctionDefinition","parameters":{"id":1712,"nodeType":"ParameterList","parameters":[],"src":"1400:2:10"},"returnParameters":{"id":1715,"nodeType":"ParameterList","parameters":[],"src":"1422:0:10"},"scope":2251,"src":"1386:52:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1729,"nodeType":"Block","src":"1520:18:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1726,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":530,"src":"1524:8:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1524:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1728,"nodeType":"ExpressionStatement","src":"1524:10:10"}]},"documentation":{"id":1721,"nodeType":"StructuredDocumentation","src":"1441:39:10","text":" @dev Unpause the contract."},"functionSelector":"3f4ba83a","id":1730,"implemented":true,"kind":"function","modifiers":[{"id":1724,"kind":"modifierInvocation","modifierName":{"id":1723,"name":"onlyOwner","nameLocations":["1510:9:10"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1510:9:10"},"nodeType":"ModifierInvocation","src":"1510:9:10"}],"name":"unpause","nameLocation":"1491:7:10","nodeType":"FunctionDefinition","parameters":{"id":1722,"nodeType":"ParameterList","parameters":[],"src":"1498:2:10"},"returnParameters":{"id":1725,"nodeType":"ParameterList","parameters":[],"src":"1520:0:10"},"scope":2251,"src":"1482:56:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3218],"body":{"id":1857,"nodeType":"Block","src":"2034:1131:10","statements":[{"expression":{"arguments":[{"id":1755,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"2077:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1756,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1735,"src":"2085:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1757,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"2094:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1758,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"2110:19:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1759,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1743,"src":"2131:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1754,"name":"_handler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1914,"src":"2068:8:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256,address,address,uint256) view"}},"id":1760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2068:74:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1761,"nodeType":"ExpressionStatement","src":"2068:74:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1765,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"2187:11:10","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1764,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2181:5:10","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1763,"name":"bytes","nodeType":"ElementaryTypeName","src":"2181:5:10","typeDescriptions":{}}},"id":1766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2181:18:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2200:6:10","memberName":"length","nodeType":"MemberAccess","src":"2181:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2210:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2181:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69644d65737361676548617368","id":1770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2213:20:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""},"value":"InvalidMessageHash"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""}],"id":1762,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2173:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2173:61:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1772,"nodeType":"ExpressionStatement","src":"2173:61:10"},{"expression":{"arguments":[{"expression":{"id":1777,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2315:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2319:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2315:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1781,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2335:4:10","typeDescriptions":{"typeIdentifier":"t_contract$_Gateway_$2251","typeString":"contract Gateway"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Gateway_$2251","typeString":"contract Gateway"}],"id":1780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2327:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1779,"name":"address","nodeType":"ElementaryTypeName","src":"2327:7:10","typeDescriptions":{}}},"id":1782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2327:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1783,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1735,"src":"2342:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1784,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1743,"src":"2352:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2342:20:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1774,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"2294:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1773,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"2287:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":1775,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2287:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":1776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2302:12:10","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":1581,"src":"2287:27:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":1786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2287:76:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1787,"nodeType":"ExpressionStatement","src":"2287:76:10"},{"expression":{"id":1792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2418:20:10","subExpression":{"baseExpression":{"id":1788,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1668,"src":"2418:6:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1791,"indexExpression":{"expression":{"id":1789,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2425:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2429:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2425:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2418:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1793,"nodeType":"ExpressionStatement","src":"2418:20:10"},{"expression":{"id":1806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1794,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1752,"src":"2492:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":1798,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2523:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2527:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2523:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":1800,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1668,"src":"2535:6:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1803,"indexExpression":{"expression":{"id":1801,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2542:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2546:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2542:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2535:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1796,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2512:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2516:6:10","memberName":"encode","nodeType":"MemberAccess","src":"2512:10:10","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2512:42:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1795,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2502:9:10","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2502:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2492:63:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1807,"nodeType":"ExpressionStatement","src":"2492:63:10"},{"assignments":[1809],"declarations":[{"constant":false,"id":1809,"mutability":"mutable","name":"_protocolFee","nameLocation":"2592:12:10","nodeType":"VariableDeclaration","scope":1857,"src":"2584:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1808,"name":"uint256","nodeType":"ElementaryTypeName","src":"2584:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1816,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1810,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1735,"src":"2608:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1811,"name":"protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"2618:18:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"2608:28:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1813,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2607:30:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1814,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"2640:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2607:40:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2584:63:10"},{"expression":{"id":1838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1817,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"2651:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1819,"indexExpression":{"id":1818,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1752,"src":"2657:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2651:14:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1821,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2687:3:10","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2691:6:10","memberName":"sender","nodeType":"MemberAccess","src":"2687:10:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1823,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"2709:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1824,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"2740:19:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1825,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1743,"src":"2775:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1826,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1809,"src":"2803:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2833:5:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"66616c7365","id":1828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2855:5:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":1829,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1745,"src":"2880:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1832,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"2918:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1831,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2911:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":1830,"name":"uint64","nodeType":"ElementaryTypeName","src":"2911:6:10","typeDescriptions":{}}},"id":1833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2911:15:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1834,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1735,"src":"2939:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1835,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1809,"src":"2949:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2939:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1820,"name":"Order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3196,"src":"2668:5:10","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Order_$3196_storage_ptr_$","typeString":"type(struct IGateway.Order storage pointer)"}},"id":1837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["2679:6:10","2702:5:10","2720:18:10","2764:9:10","2790:11:10","2820:11:10","2843:10:10","2865:13:10","2899:10:10","2931:6:10"],"names":["sender","token","senderFeeRecipient","senderFee","protocolFee","isFulfilled","isRefunded","refundAddress","currentBPS","amount"],"nodeType":"FunctionCall","src":"2668:298:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_memory_ptr","typeString":"struct IGateway.Order memory"}},"src":"2651:315:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1839,"nodeType":"ExpressionStatement","src":"2651:315:10"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":1841,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"3023:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1843,"indexExpression":{"id":1842,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1752,"src":"3029:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3023:14:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1844,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3038:6:10","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":3177,"src":"3023:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1845,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"3049:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1846,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"3060:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1848,"indexExpression":{"id":1847,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1752,"src":"3066:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3060:14:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1849,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3075:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3195,"src":"3060:21:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1850,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1809,"src":"3086:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1851,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1752,"src":"3103:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1852,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1739,"src":"3115:5:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":1853,"name":"_institutionCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1737,"src":"3125:16:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1854,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1747,"src":"3146:11:10","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1840,"name":"OrderCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3139,"src":"3006:12:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes32_$_t_uint256_$_t_bytes32_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,uint256,bytes32,uint256,bytes32,string memory)"}},"id":1855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3006:155:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1856,"nodeType":"EmitStatement","src":"3001:160:10"}]},"documentation":{"id":1731,"nodeType":"StructuredDocumentation","src":"1729:39:10","text":"@dev See {createOrder-IGateway}. "},"functionSelector":"d12ff20a","id":1858,"implemented":true,"kind":"function","modifiers":[{"id":1750,"kind":"modifierInvocation","modifierName":{"id":1749,"name":"whenNotPaused","nameLocations":["1994:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"1994:13:10"},"nodeType":"ModifierInvocation","src":"1994:13:10"}],"name":"createOrder","nameLocation":"1779:11:10","nodeType":"FunctionDefinition","parameters":{"id":1748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1733,"mutability":"mutable","name":"_token","nameLocation":"1802:6:10","nodeType":"VariableDeclaration","scope":1858,"src":"1794:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1732,"name":"address","nodeType":"ElementaryTypeName","src":"1794:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1735,"mutability":"mutable","name":"_amount","nameLocation":"1820:7:10","nodeType":"VariableDeclaration","scope":1858,"src":"1812:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1734,"name":"uint256","nodeType":"ElementaryTypeName","src":"1812:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1737,"mutability":"mutable","name":"_institutionCode","nameLocation":"1839:16:10","nodeType":"VariableDeclaration","scope":1858,"src":"1831:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1736,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1831:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1739,"mutability":"mutable","name":"_rate","nameLocation":"1866:5:10","nodeType":"VariableDeclaration","scope":1858,"src":"1859:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":1738,"name":"uint96","nodeType":"ElementaryTypeName","src":"1859:6:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":1741,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"1883:19:10","nodeType":"VariableDeclaration","scope":1858,"src":"1875:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1740,"name":"address","nodeType":"ElementaryTypeName","src":"1875:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1743,"mutability":"mutable","name":"_senderFee","nameLocation":"1914:10:10","nodeType":"VariableDeclaration","scope":1858,"src":"1906:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1742,"name":"uint256","nodeType":"ElementaryTypeName","src":"1906:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1745,"mutability":"mutable","name":"_refundAddress","nameLocation":"1936:14:10","nodeType":"VariableDeclaration","scope":1858,"src":"1928:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1744,"name":"address","nodeType":"ElementaryTypeName","src":"1928:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1747,"mutability":"mutable","name":"messageHash","nameLocation":"1970:11:10","nodeType":"VariableDeclaration","scope":1858,"src":"1954:27:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1746,"name":"string","nodeType":"ElementaryTypeName","src":"1954:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1790:194:10"},"returnParameters":{"id":1753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1752,"mutability":"mutable","name":"orderId","nameLocation":"2025:7:10","nodeType":"VariableDeclaration","scope":1858,"src":"2017:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1751,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2017:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2016:17:10"},"scope":2251,"src":"1770:1395:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1913,"nodeType":"Block","src":"3709:276:10","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1873,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2274,"src":"3721:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1875,"indexExpression":{"id":1874,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1861,"src":"3739:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3721:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3750:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3721:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e4e6f74537570706f72746564","id":1878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3753:19:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""},"value":"TokenNotSupported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""}],"id":1872,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3713:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:60:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1880,"nodeType":"ExpressionStatement","src":"3713:60:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1882,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1863,"src":"3785:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1883,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3796:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3785:12:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e7449735a65726f","id":1885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3799:14:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""},"value":"AmountIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""}],"id":1881,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3777:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3777:37:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1887,"nodeType":"ExpressionStatement","src":"3777:37:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1889,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1865,"src":"3826:14:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1892,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3852:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1891,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3844:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1890,"name":"address","nodeType":"ElementaryTypeName","src":"3844:7:10","typeDescriptions":{}}},"id":1893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3844:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3826:28:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5468726f775a65726f41646472657373","id":1895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3856:18:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""},"value":"ThrowZeroAddress"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""}],"id":1888,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3818:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3818:57:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1897,"nodeType":"ExpressionStatement","src":"3818:57:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1898,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1869,"src":"3884:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3898:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3884:15:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1912,"nodeType":"IfStatement","src":"3880:102:10","trueBody":{"id":1911,"nodeType":"Block","src":"3901:81:10","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1902,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1867,"src":"3914:19:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3945:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1904,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3937:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1903,"name":"address","nodeType":"ElementaryTypeName","src":"3937:7:10","typeDescriptions":{}}},"id":1906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3937:10:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3914:33:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","id":1908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3949:27:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""},"value":"InvalidSenderFeeRecipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""}],"id":1901,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3906:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3906:71:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1910,"nodeType":"ExpressionStatement","src":"3906:71:10"}]}}]},"documentation":{"id":1859,"nodeType":"StructuredDocumentation","src":"3168:388:10","text":" @dev Internal function to handle order creation.\n @param _token The address of the token being traded.\n @param _amount The amount of tokens being traded.\n @param _refundAddress The address to refund the tokens in case of cancellation.\n @param _senderFeeRecipient The address of the recipient for the sender fee.\n @param _senderFee The amount of the sender fee."},"id":1914,"implemented":true,"kind":"function","modifiers":[],"name":"_handler","nameLocation":"3567:8:10","nodeType":"FunctionDefinition","parameters":{"id":1870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1861,"mutability":"mutable","name":"_token","nameLocation":"3587:6:10","nodeType":"VariableDeclaration","scope":1914,"src":"3579:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1860,"name":"address","nodeType":"ElementaryTypeName","src":"3579:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1863,"mutability":"mutable","name":"_amount","nameLocation":"3605:7:10","nodeType":"VariableDeclaration","scope":1914,"src":"3597:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1862,"name":"uint256","nodeType":"ElementaryTypeName","src":"3597:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1865,"mutability":"mutable","name":"_refundAddress","nameLocation":"3624:14:10","nodeType":"VariableDeclaration","scope":1914,"src":"3616:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1864,"name":"address","nodeType":"ElementaryTypeName","src":"3616:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1867,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"3650:19:10","nodeType":"VariableDeclaration","scope":1914,"src":"3642:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1866,"name":"address","nodeType":"ElementaryTypeName","src":"3642:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1869,"mutability":"mutable","name":"_senderFee","nameLocation":"3681:10:10","nodeType":"VariableDeclaration","scope":1914,"src":"3673:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1868,"name":"uint256","nodeType":"ElementaryTypeName","src":"3673:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3575:119:10"},"returnParameters":{"id":1871,"nodeType":"ParameterList","parameters":[],"src":"3709:0:10"},"scope":2251,"src":"3558:427:10","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[3232],"body":{"id":2068,"nodeType":"Block","src":"4380:1337:10","statements":[{"expression":{"arguments":[{"id":1935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4443:28:10","subExpression":{"expression":{"baseExpression":{"id":1931,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4444:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1933,"indexExpression":{"id":1932,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4450:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4444:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1934,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4460:11:10","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":3187,"src":"4444:27:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":1936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4473:16:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":1930,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4435:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4435:55:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1938,"nodeType":"ExpressionStatement","src":"4435:55:10"},{"expression":{"arguments":[{"id":1944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4502:27:10","subExpression":{"expression":{"baseExpression":{"id":1940,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4503:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1942,"indexExpression":{"id":1941,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4509:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4503:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1943,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4519:10:10","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":3189,"src":"4503:26:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":1945,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4531:15:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":1939,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4494:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4494:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1947,"nodeType":"ExpressionStatement","src":"4494:53:10"},{"assignments":[1949],"declarations":[{"constant":false,"id":1949,"mutability":"mutable","name":"token","nameLocation":"4592:5:10","nodeType":"VariableDeclaration","scope":2068,"src":"4584:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1948,"name":"address","nodeType":"ElementaryTypeName","src":"4584:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1954,"initialValue":{"expression":{"baseExpression":{"id":1950,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4600:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1952,"indexExpression":{"id":1951,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4606:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4600:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1953,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4616:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3179,"src":"4600:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4584:37:10"},{"expression":{"id":1960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1955,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4688:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1957,"indexExpression":{"id":1956,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4694:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4688:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1958,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4704:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":3193,"src":"4688:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1959,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"4718:14:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"4688:44:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":1961,"nodeType":"ExpressionStatement","src":"4688:44:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":1967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1962,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4741:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1964,"indexExpression":{"id":1963,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4747:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4741:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1965,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4757:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":3193,"src":"4741:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4771:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4741:31:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2031,"nodeType":"IfStatement","src":"4737:604:10","trueBody":{"id":2030,"nodeType":"Block","src":"4774:567:10","statements":[{"expression":{"id":1973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1968,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4824:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1970,"indexExpression":{"id":1969,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4830:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4824:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1971,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4840:11:10","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":3187,"src":"4824:27:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4854:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4824:34:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1974,"nodeType":"ExpressionStatement","src":"4824:34:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1975,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4868:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1977,"indexExpression":{"id":1976,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4874:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4868:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1978,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4884:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3183,"src":"4868:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4897:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4868:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2010,"nodeType":"IfStatement","src":"4864:321:10","trueBody":{"id":2009,"nodeType":"Block","src":"4900:285:10","statements":[{"expression":{"arguments":[{"expression":{"baseExpression":{"id":1988,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4978:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1990,"indexExpression":{"id":1989,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4984:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4978:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1991,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4994:18:10","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":3181,"src":"4978:34:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":1992,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5019:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1994,"indexExpression":{"id":1993,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5025:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5019:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1995,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5035:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3183,"src":"5019:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":1982,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"4940:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":1984,"indexExpression":{"id":1983,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"4946:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4940:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":1985,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4956:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3179,"src":"4940:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1981,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"4933:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":1986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":1987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4963:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"4933:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":1996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:117:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1997,"nodeType":"ExpressionStatement","src":"4933:117:10"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":1999,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5107:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2001,"indexExpression":{"id":2000,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5113:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5107:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2002,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5123:18:10","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":3181,"src":"5107:34:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2003,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5148:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2005,"indexExpression":{"id":2004,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5154:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5148:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5164:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3183,"src":"5148:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1998,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3164,"src":"5080:20:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5080:99:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2008,"nodeType":"EmitStatement","src":"5075:104:10"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2011,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5194:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2013,"indexExpression":{"id":2012,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5200:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5194:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2014,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5210:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3185,"src":"5194:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5225:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5194:32:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2029,"nodeType":"IfStatement","src":"5190:147:10","trueBody":{"id":2028,"nodeType":"Block","src":"5228:109:10","statements":[{"expression":{"arguments":[{"id":2021,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"5286:15:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2022,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5303:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2024,"indexExpression":{"id":2023,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5309:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5303:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2025,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5319:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3185,"src":"5303:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2018,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"5270:5:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2017,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"5263:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5263:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5277:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"5263:22:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5263:68:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2027,"nodeType":"ExpressionStatement","src":"5263:68:10"}]}}]}},{"assignments":[2033],"declarations":[{"constant":false,"id":2033,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"5389:23:10","nodeType":"VariableDeclaration","scope":2068,"src":"5381:31:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2032,"name":"uint256","nodeType":"ElementaryTypeName","src":"5381:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2043,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2034,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5416:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2036,"indexExpression":{"id":2035,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5422:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5416:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2037,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5432:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3195,"src":"5416:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2038,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"5441:14:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5416:39:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2040,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5415:41:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2041,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"5459:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5415:51:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5381:85:10"},{"expression":{"id":2049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2044,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5470:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2046,"indexExpression":{"id":2045,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5476:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5470:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5486:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3195,"src":"5470:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2048,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2033,"src":"5496:23:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5470:49:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2050,"nodeType":"ExpressionStatement","src":"5470:49:10"},{"expression":{"arguments":[{"id":2055,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1921,"src":"5546:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2056,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2033,"src":"5566:23:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2052,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"5530:5:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2051,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"5523:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5523:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5537:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"5523:22:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5523:67:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2058,"nodeType":"ExpressionStatement","src":"5523:67:10"},{"eventCall":{"arguments":[{"id":2060,"name":"_splitOrderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1917,"src":"5637:13:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2061,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1919,"src":"5652:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2062,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1921,"src":"5662:18:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2063,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"5682:14:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":2059,"name":"OrderSettled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3150,"src":"5624:12:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_address_$_t_uint96_$returns$__$","typeString":"function (bytes32,bytes32,address,uint96)"}},"id":2064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5624:73:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2065,"nodeType":"EmitStatement","src":"5619:78:10"},{"expression":{"hexValue":"74727565","id":2066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5709:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":1929,"id":2067,"nodeType":"Return","src":"5702:11:10"}]},"documentation":{"id":1915,"nodeType":"StructuredDocumentation","src":"4186:34:10","text":"@dev See {settle-IGateway}. "},"functionSelector":"f22ee704","id":2069,"implemented":true,"kind":"function","modifiers":[{"id":1926,"kind":"modifierInvocation","modifierName":{"id":1925,"name":"onlyAggregator","nameLocations":["4350:14:10"],"nodeType":"IdentifierPath","referencedDeclaration":1710,"src":"4350:14:10"},"nodeType":"ModifierInvocation","src":"4350:14:10"}],"name":"settle","nameLocation":"4231:6:10","nodeType":"FunctionDefinition","parameters":{"id":1924,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1917,"mutability":"mutable","name":"_splitOrderId","nameLocation":"4249:13:10","nodeType":"VariableDeclaration","scope":2069,"src":"4241:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1916,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4241:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1919,"mutability":"mutable","name":"_orderId","nameLocation":"4274:8:10","nodeType":"VariableDeclaration","scope":2069,"src":"4266:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1918,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4266:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1921,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"4294:18:10","nodeType":"VariableDeclaration","scope":2069,"src":"4286:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1920,"name":"address","nodeType":"ElementaryTypeName","src":"4286:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1923,"mutability":"mutable","name":"_settlePercent","nameLocation":"4323:14:10","nodeType":"VariableDeclaration","scope":2069,"src":"4316:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":1922,"name":"uint64","nodeType":"ElementaryTypeName","src":"4316:6:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4237:103:10"},"returnParameters":{"id":1929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1928,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2069,"src":"4374:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1927,"name":"bool","nodeType":"ElementaryTypeName","src":"4374:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4373:6:10"},"scope":2251,"src":"4222:1495:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3242],"body":{"id":2174,"nodeType":"Block","src":"5843:839:10","statements":[{"expression":{"arguments":[{"id":2086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5906:28:10","subExpression":{"expression":{"baseExpression":{"id":2082,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5907:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2084,"indexExpression":{"id":2083,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"5913:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5907:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2085,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5923:11:10","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":3187,"src":"5907:27:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":2087,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5936:16:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":2081,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5898:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:55:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2089,"nodeType":"ExpressionStatement","src":"5898:55:10"},{"expression":{"arguments":[{"id":2095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5965:27:10","subExpression":{"expression":{"baseExpression":{"id":2091,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"5966:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2093,"indexExpression":{"id":2092,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"5972:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5966:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2094,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5982:10:10","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":3189,"src":"5966:26:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":2096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5994:15:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":2090,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5957:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5957:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2098,"nodeType":"ExpressionStatement","src":"5957:53:10"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2100,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6022:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2102,"indexExpression":{"id":2101,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6028:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6022:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2103,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6038:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3185,"src":"6022:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2104,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2072,"src":"6053:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6022:35:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4665654578636565647350726f746f636f6c466565","id":2106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6059:23:10","typeDescriptions":{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""},"value":"FeeExceedsProtocolFee"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""}],"id":2099,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6014:7:10","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6014:69:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2108,"nodeType":"ExpressionStatement","src":"6014:69:10"},{"expression":{"arguments":[{"id":2116,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"6168:15:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2117,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2072,"src":"6185:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2110,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6136:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2112,"indexExpression":{"id":2111,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6142:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6136:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6152:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3179,"src":"6136:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2109,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6129:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6129:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6159:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6129:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6129:61:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2119,"nodeType":"ExpressionStatement","src":"6129:61:10"},{"expression":{"id":2125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2120,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6219:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2122,"indexExpression":{"id":2121,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6225:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6219:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2123,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6235:10:10","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":3189,"src":"6219:26:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6248:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6219:33:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2126,"nodeType":"ExpressionStatement","src":"6219:33:10"},{"expression":{"id":2132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2127,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6256:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2129,"indexExpression":{"id":2128,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6262:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6256:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2130,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6272:10:10","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":3193,"src":"6256:26:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6285:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6256:30:10","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":2133,"nodeType":"ExpressionStatement","src":"6256:30:10"},{"assignments":[2135],"declarations":[{"constant":false,"id":2135,"mutability":"mutable","name":"refundAmount","nameLocation":"6333:12:10","nodeType":"VariableDeclaration","scope":2174,"src":"6325:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2134,"name":"uint256","nodeType":"ElementaryTypeName","src":"6325:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2147,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2136,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6348:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2138,"indexExpression":{"id":2137,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6354:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6348:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2139,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6364:6:10","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3195,"src":"6348:22:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":2140,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6373:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2142,"indexExpression":{"id":2141,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6379:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6373:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2143,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6389:11:10","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3185,"src":"6373:27:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6348:52:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2145,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2072,"src":"6403:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6348:59:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6325:82:10"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2155,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6520:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2157,"indexExpression":{"id":2156,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6526:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6520:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2158,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6536:13:10","memberName":"refundAddress","nodeType":"MemberAccess","referencedDeclaration":3191,"src":"6520:29:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2159,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"6554:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":2160,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6569:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2162,"indexExpression":{"id":2161,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6575:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6569:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2163,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6585:9:10","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3183,"src":"6569:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6554:40:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2149,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"6484:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2151,"indexExpression":{"id":2150,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6490:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6484:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"id":2152,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6500:5:10","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3179,"src":"6484:21:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2148,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6477:6:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6477:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6507:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6477:38:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6477:121:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2166,"nodeType":"ExpressionStatement","src":"6477:121:10"},{"eventCall":{"arguments":[{"id":2168,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2072,"src":"6647:4:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2169,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2074,"src":"6653:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2167,"name":"OrderRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3157,"src":"6633:13:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":2170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6633:29:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2171,"nodeType":"EmitStatement","src":"6628:34:10"},{"expression":{"hexValue":"74727565","id":2172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6674:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2080,"id":2173,"nodeType":"Return","src":"6667:11:10"}]},"documentation":{"id":2070,"nodeType":"StructuredDocumentation","src":"5720:34:10","text":"@dev See {refund-IGateway}. "},"functionSelector":"71eedb88","id":2175,"implemented":true,"kind":"function","modifiers":[{"id":2077,"kind":"modifierInvocation","modifierName":{"id":2076,"name":"onlyAggregator","nameLocations":["5813:14:10"],"nodeType":"IdentifierPath","referencedDeclaration":1710,"src":"5813:14:10"},"nodeType":"ModifierInvocation","src":"5813:14:10"}],"name":"refund","nameLocation":"5765:6:10","nodeType":"FunctionDefinition","parameters":{"id":2075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2072,"mutability":"mutable","name":"_fee","nameLocation":"5780:4:10","nodeType":"VariableDeclaration","scope":2175,"src":"5772:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2071,"name":"uint256","nodeType":"ElementaryTypeName","src":"5772:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2074,"mutability":"mutable","name":"_orderId","nameLocation":"5794:8:10","nodeType":"VariableDeclaration","scope":2175,"src":"5786:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2073,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5786:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5771:32:10"},"returnParameters":{"id":2080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2079,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2175,"src":"5837:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2078,"name":"bool","nodeType":"ElementaryTypeName","src":"5837:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5836:6:10"},"scope":2251,"src":"5756:926:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3259],"body":{"id":2188,"nodeType":"Block","src":"6992:30:10","statements":[{"expression":{"baseExpression":{"id":2184,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1664,"src":"7003:5:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3196_storage_$","typeString":"mapping(bytes32 => struct IGateway.Order storage ref)"}},"id":2186,"indexExpression":{"id":2185,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2178,"src":"7009:8:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7003:15:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage","typeString":"struct IGateway.Order storage ref"}},"functionReturnParameters":2183,"id":2187,"nodeType":"Return","src":"6996:22:10"}]},"documentation":{"id":2176,"nodeType":"StructuredDocumentation","src":"6873:40:10","text":"@dev See {getOrderInfo-IGateway}. "},"functionSelector":"768c6ec0","id":2189,"implemented":true,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"6924:12:10","nodeType":"FunctionDefinition","parameters":{"id":2179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2178,"mutability":"mutable","name":"_orderId","nameLocation":"6945:8:10","nodeType":"VariableDeclaration","scope":2189,"src":"6937:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2177,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6937:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6936:18:10"},"returnParameters":{"id":2183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2189,"src":"6978:12:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":2181,"nodeType":"UserDefinedTypeName","pathNode":{"id":2180,"name":"Order","nameLocations":["6978:5:10"],"nodeType":"IdentifierPath","referencedDeclaration":3196,"src":"6978:5:10"},"referencedDeclaration":3196,"src":"6978:5:10","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"6977:14:10"},"scope":2251,"src":"6915:107:10","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[3250],"body":{"id":2207,"nodeType":"Block","src":"7142:71:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2197,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2274,"src":"7150:17:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2199,"indexExpression":{"id":2198,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2192,"src":"7168:6:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7150:25:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7179:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7150:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2204,"nodeType":"IfStatement","src":"7146:47:10","trueBody":{"expression":{"hexValue":"74727565","id":2202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7189:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2196,"id":2203,"nodeType":"Return","src":"7182:11:10"}},{"expression":{"hexValue":"66616c7365","id":2205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7204:5:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":2196,"id":2206,"nodeType":"Return","src":"7197:12:10"}]},"documentation":{"id":2190,"nodeType":"StructuredDocumentation","src":"7025:44:10","text":"@dev See {isTokenSupported-IGateway}. "},"functionSelector":"75151b63","id":2208,"implemented":true,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"7080:16:10","nodeType":"FunctionDefinition","parameters":{"id":2193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2192,"mutability":"mutable","name":"_token","nameLocation":"7105:6:10","nodeType":"VariableDeclaration","scope":2208,"src":"7097:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2191,"name":"address","nodeType":"ElementaryTypeName","src":"7097:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7096:16:10"},"returnParameters":{"id":2196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2208,"src":"7136:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2194,"name":"bool","nodeType":"ElementaryTypeName","src":"7136:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7135:6:10"},"scope":2251,"src":"7071:142:10","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[3276],"body":{"id":2221,"nodeType":"Block","src":"7397:49:10","statements":[{"expression":{"baseExpression":{"id":2217,"name":"supportedInstitutionsByCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"7408:27:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_InstitutionByCode_$3454_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.InstitutionByCode storage ref)"}},"id":2219,"indexExpression":{"id":2218,"name":"_code","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2211,"src":"7436:5:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7408:34:10","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_storage","typeString":"struct SharedStructs.InstitutionByCode storage ref"}},"functionReturnParameters":2216,"id":2220,"nodeType":"Return","src":"7401:41:10"}]},"documentation":{"id":2209,"nodeType":"StructuredDocumentation","src":"7216:57:10","text":"@dev See {getSupportedInstitutionByCode-IGateway}. "},"functionSelector":"c2280103","id":2222,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedInstitutionByCode","nameLocation":"7284:29:10","nodeType":"FunctionDefinition","parameters":{"id":2212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2211,"mutability":"mutable","name":"_code","nameLocation":"7325:5:10","nodeType":"VariableDeclaration","scope":2222,"src":"7317:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2210,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7317:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7313:20:10"},"returnParameters":{"id":2216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2215,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2222,"src":"7357:38:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_memory_ptr","typeString":"struct SharedStructs.InstitutionByCode"},"typeName":{"id":2214,"nodeType":"UserDefinedTypeName","pathNode":{"id":2213,"name":"SharedStructs.InstitutionByCode","nameLocations":["7357:13:10","7371:17:10"],"nodeType":"IdentifierPath","referencedDeclaration":3454,"src":"7357:31:10"},"referencedDeclaration":3454,"src":"7357:31:10","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_storage_ptr","typeString":"struct SharedStructs.InstitutionByCode"}},"visibility":"internal"}],"src":"7356:40:10"},"scope":2251,"src":"7275:171:10","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[3286],"body":{"id":2236,"nodeType":"Block","src":"7620:47:10","statements":[{"expression":{"baseExpression":{"id":2232,"name":"supportedInstitutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2280,"src":"7631:21:10","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.Institution storage ref[] storage ref)"}},"id":2234,"indexExpression":{"id":2233,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2225,"src":"7653:9:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7631:32:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","typeString":"struct SharedStructs.Institution storage ref[] storage ref"}},"functionReturnParameters":2231,"id":2235,"nodeType":"Return","src":"7624:39:10"}]},"documentation":{"id":2223,"nodeType":"StructuredDocumentation","src":"7449:52:10","text":"@dev See {getSupportedInstitutions-IGateway}. "},"functionSelector":"02621338","id":2237,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedInstitutions","nameLocation":"7512:24:10","nodeType":"FunctionDefinition","parameters":{"id":2226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2225,"mutability":"mutable","name":"_currency","nameLocation":"7548:9:10","nodeType":"VariableDeclaration","scope":2237,"src":"7540:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2224,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7540:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7536:24:10"},"returnParameters":{"id":2231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2237,"src":"7584:34:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution[]"},"typeName":{"baseType":{"id":2228,"nodeType":"UserDefinedTypeName","pathNode":{"id":2227,"name":"SharedStructs.Institution","nameLocations":["7584:13:10","7598:11:10"],"nodeType":"IdentifierPath","referencedDeclaration":3449,"src":"7584:25:10"},"referencedDeclaration":3449,"src":"7584:25:10","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_storage_ptr","typeString":"struct SharedStructs.Institution"}},"id":2229,"nodeType":"ArrayTypeName","src":"7584:27:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr","typeString":"struct SharedStructs.Institution[]"}},"visibility":"internal"}],"src":"7583:36:10"},"scope":2251,"src":"7503:164:10","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[3267],"body":{"id":2249,"nodeType":"Block","src":"7778:44:10","statements":[{"expression":{"components":[{"id":2245,"name":"protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"7790:18:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":2246,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"7810:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2247,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7789:29:10","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint64_$_t_uint256_$","typeString":"tuple(uint64,uint256)"}},"functionReturnParameters":2244,"id":2248,"nodeType":"Return","src":"7782:36:10"}]},"documentation":{"id":2238,"nodeType":"StructuredDocumentation","src":"7670:41:10","text":"@dev See {getFeeDetails-IGateway}. "},"functionSelector":"b810c636","id":2250,"implemented":true,"kind":"function","modifiers":[],"name":"getFeeDetails","nameLocation":"7722:13:10","nodeType":"FunctionDefinition","parameters":{"id":2239,"nodeType":"ParameterList","parameters":[],"src":"7735:2:10"},"returnParameters":{"id":2244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2241,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2250,"src":"7761:6:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2240,"name":"uint64","nodeType":"ElementaryTypeName","src":"7761:6:10","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2243,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2250,"src":"7769:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2242,"name":"uint256","nodeType":"ElementaryTypeName","src":"7769:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7760:17:10"},"scope":2251,"src":"7713:109:10","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":2252,"src":"451:7373:10","usedErrors":[]}],"src":"39:7786:10"},"id":10},"contracts/GatewaySettingManager.sol":{"ast":{"absolutePath":"contracts/GatewaySettingManager.sol","exportedSymbols":{"ContextUpgradeable":[917],"GatewaySettingManager":[2519],"Initializable":[408],"Ownable2StepUpgradeable":[106],"OwnableUpgradeable":[239],"SharedStructs":[3455]},"id":2520,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2253,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"168:24:11"},{"absolutePath":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol","id":2254,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2520,"sourceUnit":107,"src":"194:80:11","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/libraries/SharedStructs.sol","file":"./libraries/SharedStructs.sol","id":2256,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2520,"sourceUnit":3456,"src":"276:60:11","symbolAliases":[{"foreign":{"id":2255,"name":"SharedStructs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3455,"src":"284:13:11","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2257,"name":"Ownable2StepUpgradeable","nameLocations":["372:23:11"],"nodeType":"IdentifierPath","referencedDeclaration":106,"src":"372:23:11"},"id":2258,"nodeType":"InheritanceSpecifier","src":"372:23:11"}],"canonicalName":"GatewaySettingManager","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":2519,"linearizedBaseContracts":[2519,106,239,917,408],"name":"GatewaySettingManager","nameLocation":"347:21:11","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":2260,"mutability":"mutable","name":"MAX_BPS","nameLocation":"416:7:11","nodeType":"VariableDeclaration","scope":2519,"src":"399:24:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2259,"name":"uint256","nodeType":"ElementaryTypeName","src":"399:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2262,"mutability":"mutable","name":"protocolFeePercent","nameLocation":"442:18:11","nodeType":"VariableDeclaration","scope":2519,"src":"426:34:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2261,"name":"uint64","nodeType":"ElementaryTypeName","src":"426:6:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":2264,"mutability":"mutable","name":"treasuryAddress","nameLocation":"480:15:11","nodeType":"VariableDeclaration","scope":2519,"src":"463:32:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2263,"name":"address","nodeType":"ElementaryTypeName","src":"463:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2266,"mutability":"mutable","name":"_aggregatorAddress","nameLocation":"515:18:11","nodeType":"VariableDeclaration","scope":2519,"src":"498:35:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2265,"name":"address","nodeType":"ElementaryTypeName","src":"498:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2270,"mutability":"mutable","name":"__gap","nameLocation":"663:5:11","nodeType":"VariableDeclaration","scope":2519,"src":"643:25:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":2267,"name":"uint256","nodeType":"ElementaryTypeName","src":"643:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2269,"length":{"hexValue":"3530","id":2268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"651:2:11","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"643:11:11","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"},{"constant":false,"id":2274,"mutability":"mutable","name":"_isTokenSupported","nameLocation":"709:17:11","nodeType":"VariableDeclaration","scope":2519,"src":"672:54:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":2273,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2271,"name":"address","nodeType":"ElementaryTypeName","src":"680:7:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"672:27:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2272,"name":"uint256","nodeType":"ElementaryTypeName","src":"691:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":2280,"mutability":"mutable","name":"supportedInstitutions","nameLocation":"787:21:11","nodeType":"VariableDeclaration","scope":2519,"src":"730:78:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.Institution[])"},"typeName":{"id":2279,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2275,"name":"bytes32","nodeType":"ElementaryTypeName","src":"738:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"730:47:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.Institution[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":2277,"nodeType":"UserDefinedTypeName","pathNode":{"id":2276,"name":"SharedStructs.Institution","nameLocations":["749:13:11","763:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":3449,"src":"749:25:11"},"referencedDeclaration":3449,"src":"749:25:11","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_storage_ptr","typeString":"struct SharedStructs.Institution"}},"id":2278,"nodeType":"ArrayTypeName","src":"749:27:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr","typeString":"struct SharedStructs.Institution[]"}}},"visibility":"internal"},{"constant":false,"id":2285,"mutability":"mutable","name":"supportedInstitutionsByCode","nameLocation":"872:27:11","nodeType":"VariableDeclaration","scope":2519,"src":"811:88:11","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_InstitutionByCode_$3454_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.InstitutionByCode)"},"typeName":{"id":2284,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2281,"name":"bytes32","nodeType":"ElementaryTypeName","src":"819:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"811:51:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_InstitutionByCode_$3454_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.InstitutionByCode)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2283,"nodeType":"UserDefinedTypeName","pathNode":{"id":2282,"name":"SharedStructs.InstitutionByCode","nameLocations":["830:13:11","844:17:11"],"nodeType":"IdentifierPath","referencedDeclaration":3454,"src":"830:31:11"},"referencedDeclaration":3454,"src":"830:31:11","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_storage_ptr","typeString":"struct SharedStructs.InstitutionByCode"}}},"visibility":"internal"},{"anonymous":false,"eventSelector":"cfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c","id":2293,"name":"SettingManagerBool","nameLocation":"909:18:11","nodeType":"EventDefinition","parameters":{"id":2292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2287,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"944:4:11","nodeType":"VariableDeclaration","scope":2293,"src":"928:20:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2286,"name":"bytes32","nodeType":"ElementaryTypeName","src":"928:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2289,"indexed":true,"mutability":"mutable","name":"value","nameLocation":"966:5:11","nodeType":"VariableDeclaration","scope":2293,"src":"950:21:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2288,"name":"address","nodeType":"ElementaryTypeName","src":"950:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2291,"indexed":false,"mutability":"mutable","name":"status","nameLocation":"981:6:11","nodeType":"VariableDeclaration","scope":2293,"src":"973:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2290,"name":"uint256","nodeType":"ElementaryTypeName","src":"973:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"927:61:11"},"src":"903:86:11"},{"anonymous":false,"eventSelector":"58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac","id":2301,"name":"SupportedInstitutionsUpdated","nameLocation":"997:28:11","nodeType":"EventDefinition","parameters":{"id":2300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2295,"indexed":true,"mutability":"mutable","name":"currency","nameLocation":"1045:8:11","nodeType":"VariableDeclaration","scope":2301,"src":"1029:24:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2294,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1029:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2299,"indexed":false,"mutability":"mutable","name":"institutions","nameLocation":"1085:12:11","nodeType":"VariableDeclaration","scope":2301,"src":"1057:40:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution[]"},"typeName":{"baseType":{"id":2297,"nodeType":"UserDefinedTypeName","pathNode":{"id":2296,"name":"SharedStructs.Institution","nameLocations":["1057:13:11","1071:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":3449,"src":"1057:25:11"},"referencedDeclaration":3449,"src":"1057:25:11","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_storage_ptr","typeString":"struct SharedStructs.Institution"}},"id":2298,"nodeType":"ArrayTypeName","src":"1057:27:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr","typeString":"struct SharedStructs.Institution[]"}},"visibility":"internal"}],"src":"1025:75:11"},"src":"991:110:11"},{"anonymous":false,"eventSelector":"1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b","id":2305,"name":"ProtocolFeeUpdated","nameLocation":"1109:18:11","nodeType":"EventDefinition","parameters":{"id":2304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2303,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"1135:11:11","nodeType":"VariableDeclaration","scope":2305,"src":"1128:18:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2302,"name":"uint64","nodeType":"ElementaryTypeName","src":"1128:6:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1127:20:11"},"src":"1103:45:11"},{"anonymous":false,"eventSelector":"bbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a4","id":2311,"name":"ProtocolAddressUpdated","nameLocation":"1156:22:11","nodeType":"EventDefinition","parameters":{"id":2310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2307,"indexed":true,"mutability":"mutable","name":"what","nameLocation":"1195:4:11","nodeType":"VariableDeclaration","scope":2311,"src":"1179:20:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2306,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1179:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2309,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1217:15:11","nodeType":"VariableDeclaration","scope":2311,"src":"1201:31:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2308,"name":"address","nodeType":"ElementaryTypeName","src":"1201:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1178:55:11"},"src":"1150:84:11"},{"anonymous":false,"eventSelector":"2e979f80fe4d43055c584cf4a8467c55875ea36728fc37176c05acd784eb7a73","id":2315,"name":"SetFeeRecipient","nameLocation":"1242:15:11","nodeType":"EventDefinition","parameters":{"id":2314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2313,"indexed":true,"mutability":"mutable","name":"treasuryAddress","nameLocation":"1274:15:11","nodeType":"VariableDeclaration","scope":2315,"src":"1258:31:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2312,"name":"address","nodeType":"ElementaryTypeName","src":"1258:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1257:33:11"},"src":"1236:55:11"},{"body":{"id":2365,"nodeType":"Block","src":"1865:243:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2320,"src":"1877:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1894:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2330,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1886:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2329,"name":"address","nodeType":"ElementaryTypeName","src":"1886:7:11","typeDescriptions":{}}},"id":2332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1886:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1877:19:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1898:23:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2327,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1869:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1869:53:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2336,"nodeType":"ExpressionStatement","src":"1869:53:11"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2338,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2322,"src":"1934:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1944:1:11","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1934:11:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2341,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2322,"src":"1949:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"32","id":2342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1959:1:11","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"1949:11:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1934:26:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a20696e76616c696420737461747573","id":2345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1962:25:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""},"value":"Gateway: invalid status"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","typeString":"literal_string \"Gateway: invalid status\""}],"id":2337,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1926:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1926:62:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2347,"nodeType":"ExpressionStatement","src":"1926:62:11"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2348,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2318,"src":"1996:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"746f6b656e","id":2349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2004:7:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_9b9b0454cadcb5884dd3faa6ba975da4d2459aa3f11d31291a25a8358f84946d","typeString":"literal_string \"token\""},"value":"token"},"src":"1996:15:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2364,"nodeType":"IfStatement","src":"1992:113:11","trueBody":{"id":2363,"nodeType":"Block","src":"2013:92:11","statements":[{"expression":{"id":2355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2351,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2274,"src":"2018:17:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2353,"indexExpression":{"id":2352,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2320,"src":"2036:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2018:24:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2354,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2322,"src":"2045:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2018:33:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2356,"nodeType":"ExpressionStatement","src":"2018:33:11"},{"eventCall":{"arguments":[{"id":2358,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2318,"src":"2080:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2359,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2320,"src":"2086:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2360,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2322,"src":"2093:6:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2357,"name":"SettingManagerBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"2061:18:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":2361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2061:39:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2362,"nodeType":"EmitStatement","src":"2056:44:11"}]}}]},"documentation":{"id":2316,"nodeType":"StructuredDocumentation","src":"1488:283:11","text":" @dev Sets the boolean value for a specific setting.\n @param what The setting to be updated.\n @param value The address or value associated with the setting.\n @param status The boolean value to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"cd992400","id":2366,"implemented":true,"kind":"function","modifiers":[{"id":2325,"kind":"modifierInvocation","modifierName":{"id":2324,"name":"onlyOwner","nameLocations":["1855:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1855:9:11"},"nodeType":"ModifierInvocation","src":"1855:9:11"}],"name":"settingManagerBool","nameLocation":"1782:18:11","nodeType":"FunctionDefinition","parameters":{"id":2323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2318,"mutability":"mutable","name":"what","nameLocation":"1809:4:11","nodeType":"VariableDeclaration","scope":2366,"src":"1801:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1801:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2320,"mutability":"mutable","name":"value","nameLocation":"1823:5:11","nodeType":"VariableDeclaration","scope":2366,"src":"1815:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2319,"name":"address","nodeType":"ElementaryTypeName","src":"1815:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2322,"mutability":"mutable","name":"status","nameLocation":"1838:6:11","nodeType":"VariableDeclaration","scope":2366,"src":"1830:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2321,"name":"uint256","nodeType":"ElementaryTypeName","src":"1830:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1800:45:11"},"returnParameters":{"id":2326,"nodeType":"ParameterList","parameters":[],"src":"1865:0:11"},"scope":2519,"src":"1773:335:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2428,"nodeType":"Block","src":"2450:412:11","statements":[{"expression":{"id":2381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2454:38:11","subExpression":{"baseExpression":{"id":2378,"name":"supportedInstitutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2280,"src":"2461:21:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.Institution storage ref[] storage ref)"}},"id":2380,"indexExpression":{"id":2379,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2369,"src":"2483:8:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2461:31:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","typeString":"struct SharedStructs.Institution storage ref[] storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2382,"nodeType":"ExpressionStatement","src":"2454:38:11"},{"body":{"id":2419,"nodeType":"Block","src":"2536:243:11","statements":[{"expression":{"arguments":[{"baseExpression":{"id":2394,"name":"institutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"2578:12:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution memory[] memory"}},"id":2396,"indexExpression":{"id":2395,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2384,"src":"2591:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2578:15:11","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_memory_ptr","typeString":"struct SharedStructs.Institution memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Institution_$3449_memory_ptr","typeString":"struct SharedStructs.Institution memory"}],"expression":{"baseExpression":{"id":2390,"name":"supportedInstitutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2280,"src":"2541:21:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.Institution storage ref[] storage ref)"}},"id":2392,"indexExpression":{"id":2391,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2369,"src":"2563:8:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2541:31:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","typeString":"struct SharedStructs.Institution storage ref[] storage ref"}},"id":2393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2573:4:11","memberName":"push","nodeType":"MemberAccess","src":"2541:36:11","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr_$_t_struct$_Institution_$3449_storage_$returns$__$attached_to$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr_$","typeString":"function (struct SharedStructs.Institution storage ref[] storage pointer,struct SharedStructs.Institution storage ref)"}},"id":2397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2541:53:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2398,"nodeType":"ExpressionStatement","src":"2541:53:11"},{"expression":{"id":2413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2399,"name":"supportedInstitutionsByCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"2599:27:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_InstitutionByCode_$3454_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.InstitutionByCode storage ref)"}},"id":2404,"indexExpression":{"expression":{"baseExpression":{"id":2400,"name":"institutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"2627:12:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution memory[] memory"}},"id":2402,"indexExpression":{"id":2401,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2384,"src":"2640:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2627:15:11","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_memory_ptr","typeString":"struct SharedStructs.Institution memory"}},"id":2403,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2643:4:11","memberName":"code","nodeType":"MemberAccess","referencedDeclaration":3446,"src":"2627:20:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2599:49:11","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_storage","typeString":"struct SharedStructs.InstitutionByCode storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"baseExpression":{"id":2407,"name":"institutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"2695:12:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution memory[] memory"}},"id":2409,"indexExpression":{"id":2408,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2384,"src":"2708:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2695:15:11","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_memory_ptr","typeString":"struct SharedStructs.Institution memory"}},"id":2410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2711:4:11","memberName":"name","nodeType":"MemberAccess","referencedDeclaration":3448,"src":"2695:20:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2411,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2369,"src":"2731:8:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":2405,"name":"SharedStructs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3455,"src":"2651:13:11","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SharedStructs_$3455_$","typeString":"type(library SharedStructs)"}},"id":2406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2665:17:11","memberName":"InstitutionByCode","nodeType":"MemberAccess","referencedDeclaration":3454,"src":"2651:31:11","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_InstitutionByCode_$3454_storage_ptr_$","typeString":"type(struct SharedStructs.InstitutionByCode storage pointer)"}},"id":2412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["2689:4:11","2721:8:11"],"names":["name","currency"],"nodeType":"FunctionCall","src":"2651:94:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_memory_ptr","typeString":"struct SharedStructs.InstitutionByCode memory"}},"src":"2599:146:11","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_storage","typeString":"struct SharedStructs.InstitutionByCode storage ref"}},"id":2414,"nodeType":"ExpressionStatement","src":"2599:146:11"},{"id":2418,"nodeType":"UncheckedBlock","src":"2750:25:11","statements":[{"expression":{"id":2416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"2766:3:11","subExpression":{"id":2415,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2384,"src":"2768:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2417,"nodeType":"ExpressionStatement","src":"2766:3:11"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2386,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2384,"src":"2509:1:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2387,"name":"institutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2373,"src":"2513:12:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution memory[] memory"}},"id":2388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2526:6:11","memberName":"length","nodeType":"MemberAccess","src":"2513:19:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2509:23:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2420,"initializationExpression":{"assignments":[2384],"declarations":[{"constant":false,"id":2384,"mutability":"mutable","name":"i","nameLocation":"2506:1:11","nodeType":"VariableDeclaration","scope":2420,"src":"2501:6:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2383,"name":"uint","nodeType":"ElementaryTypeName","src":"2501:4:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2385,"nodeType":"VariableDeclarationStatement","src":"2501:6:11"},"nodeType":"ForStatement","src":"2496:283:11"},{"eventCall":{"arguments":[{"id":2422,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2369,"src":"2816:8:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2423,"name":"supportedInstitutions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2280,"src":"2826:21:11","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_$","typeString":"mapping(bytes32 => struct SharedStructs.Institution storage ref[] storage ref)"}},"id":2425,"indexExpression":{"id":2424,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2369,"src":"2848:8:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2826:31:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","typeString":"struct SharedStructs.Institution storage ref[] storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","typeString":"struct SharedStructs.Institution storage ref[] storage ref"}],"id":2421,"name":"SupportedInstitutionsUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2301,"src":"2787:28:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes32,struct SharedStructs.Institution memory[] memory)"}},"id":2426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2787:71:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2427,"nodeType":"EmitStatement","src":"2782:76:11"}]},"documentation":{"id":2367,"nodeType":"StructuredDocumentation","src":"2111:210:11","text":" @dev Sets the supported institutions for a specific currency.\n @param currency The currency for which the institutions are being set.\n @param institutions The array of institutions to be set."},"functionSelector":"32200882","id":2429,"implemented":true,"kind":"function","modifiers":[{"id":2376,"kind":"modifierInvocation","modifierName":{"id":2375,"name":"onlyOwner","nameLocations":["2440:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"2440:9:11"},"nodeType":"ModifierInvocation","src":"2440:9:11"}],"name":"setSupportedInstitutions","nameLocation":"2332:24:11","nodeType":"FunctionDefinition","parameters":{"id":2374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2369,"mutability":"mutable","name":"currency","nameLocation":"2368:8:11","nodeType":"VariableDeclaration","scope":2429,"src":"2360:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2368,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2373,"mutability":"mutable","name":"institutions","nameLocation":"2415:12:11","nodeType":"VariableDeclaration","scope":2429,"src":"2380:47:11","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution[]"},"typeName":{"baseType":{"id":2371,"nodeType":"UserDefinedTypeName","pathNode":{"id":2370,"name":"SharedStructs.Institution","nameLocations":["2380:13:11","2394:11:11"],"nodeType":"IdentifierPath","referencedDeclaration":3449,"src":"2380:25:11"},"referencedDeclaration":3449,"src":"2380:25:11","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_storage_ptr","typeString":"struct SharedStructs.Institution"}},"id":2372,"nodeType":"ArrayTypeName","src":"2380:27:11","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr","typeString":"struct SharedStructs.Institution[]"}},"visibility":"internal"}],"src":"2356:74:11"},"returnParameters":{"id":2377,"nodeType":"ParameterList","parameters":[],"src":"2450:0:11"},"scope":2519,"src":"2323:539:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2445,"nodeType":"Block","src":"3069:96:11","statements":[{"expression":{"id":2439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2437,"name":"protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"3073:18:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2438,"name":"_protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2432,"src":"3094:19:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"3073:40:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":2440,"nodeType":"ExpressionStatement","src":"3073:40:11"},{"eventCall":{"arguments":[{"id":2442,"name":"_protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2432,"src":"3141:19:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":2441,"name":"ProtocolFeeUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"3122:18:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":2443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3122:39:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2444,"nodeType":"EmitStatement","src":"3117:44:11"}]},"documentation":{"id":2430,"nodeType":"StructuredDocumentation","src":"2865:128:11","text":" @dev Updates the protocol fee percentage.\n @param _protocolFeePercent The new protocol fee percentage to be set."},"functionSelector":"47094e2e","id":2446,"implemented":true,"kind":"function","modifiers":[{"id":2435,"kind":"modifierInvocation","modifierName":{"id":2434,"name":"onlyOwner","nameLocations":["3059:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"3059:9:11"},"nodeType":"ModifierInvocation","src":"3059:9:11"}],"name":"updateProtocolFee","nameLocation":"3004:17:11","nodeType":"FunctionDefinition","parameters":{"id":2433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2432,"mutability":"mutable","name":"_protocolFeePercent","nameLocation":"3029:19:11","nodeType":"VariableDeclaration","scope":2446,"src":"3022:26:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2431,"name":"uint64","nodeType":"ElementaryTypeName","src":"3022:6:11","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3021:28:11"},"returnParameters":{"id":2436,"nodeType":"ParameterList","parameters":[],"src":"3069:0:11"},"scope":2519,"src":"2995:170:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2517,"nodeType":"Block","src":"3473:472:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2457,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2451,"src":"3485:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3502:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2459,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3494:7:11","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2458,"name":"address","nodeType":"ElementaryTypeName","src":"3494:7:11","typeDescriptions":{}}},"id":2461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3494:10:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3485:19:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207a65726f2061646472657373","id":2463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3506:23:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""},"value":"Gateway: zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","typeString":"literal_string \"Gateway: zero address\""}],"id":2456,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3477:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3477:53:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2465,"nodeType":"ExpressionStatement","src":"3477:53:11"},{"assignments":[2467],"declarations":[{"constant":false,"id":2467,"mutability":"mutable","name":"updated","nameLocation":"3539:7:11","nodeType":"VariableDeclaration","scope":2517,"src":"3534:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2466,"name":"bool","nodeType":"ElementaryTypeName","src":"3534:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2468,"nodeType":"VariableDeclarationStatement","src":"3534:12:11"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2469,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2449,"src":"3554:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"7472656173757279","id":2470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3562:10:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_cbd818ad4dd6f1ff9338c2bb62480241424dd9a65f9f3284101a01cd099ad8ac","typeString":"literal_string \"treasury\""},"value":"treasury"},"src":"3554:18:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2488,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2449,"src":"3715:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"61676772656761746f72","id":2489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3723:12:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_e124d7cc79a19705865fa21b784ba187cd393559e960c0c071132cb60354d1a3","typeString":"literal_string \"aggregator\""},"value":"aggregator"},"src":"3715:20:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2507,"nodeType":"IfStatement","src":"3711:165:11","trueBody":{"id":2506,"nodeType":"Block","src":"3737:139:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2492,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2266,"src":"3750:18:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2493,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2451,"src":"3772:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3750:27:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c726561647920736574","id":2495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3779:41:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""},"value":"Gateway: aggregator address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","typeString":"literal_string \"Gateway: aggregator address already set\""}],"id":2491,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3742:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3742:79:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2497,"nodeType":"ExpressionStatement","src":"3742:79:11"},{"expression":{"id":2500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2498,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2266,"src":"3826:18:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2499,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2451,"src":"3847:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3826:26:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2501,"nodeType":"ExpressionStatement","src":"3826:26:11"},{"expression":{"id":2504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2502,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2467,"src":"3857:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3867:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3857:14:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2505,"nodeType":"ExpressionStatement","src":"3857:14:11"}]}},"id":2508,"nodeType":"IfStatement","src":"3550:326:11","trueBody":{"id":2487,"nodeType":"Block","src":"3574:131:11","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2473,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"3587:15:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2451,"src":"3606:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3587:24:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"476174657761793a207472656173757279206164647265737320616c726561647920736574","id":2476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3613:39:11","typeDescriptions":{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""},"value":"Gateway: treasury address already set"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","typeString":"literal_string \"Gateway: treasury address already set\""}],"id":2472,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3579:7:11","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3579:74:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2478,"nodeType":"ExpressionStatement","src":"3579:74:11"},{"expression":{"id":2481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2479,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"3658:15:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2480,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2451,"src":"3676:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3658:23:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2482,"nodeType":"ExpressionStatement","src":"3658:23:11"},{"expression":{"id":2485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2483,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2467,"src":"3686:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3696:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3686:14:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2486,"nodeType":"ExpressionStatement","src":"3686:14:11"}]}},{"condition":{"id":2509,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2467,"src":"3883:7:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2516,"nodeType":"IfStatement","src":"3879:63:11","trueBody":{"id":2515,"nodeType":"Block","src":"3892:50:11","statements":[{"eventCall":{"arguments":[{"id":2511,"name":"what","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2449,"src":"3925:4:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2512,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2451,"src":"3931:5:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2510,"name":"ProtocolAddressUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2311,"src":"3902:22:11","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address)"}},"id":2513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3902:35:11","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2514,"nodeType":"EmitStatement","src":"3897:40:11"}]}}]},"documentation":{"id":2447,"nodeType":"StructuredDocumentation","src":"3168:224:11","text":" @dev Updates a protocol address.\n @param what The address type to be updated (treasury or aggregator).\n @param value The new address to be set.\n Requirements:\n - The value must not be a zero address."},"functionSelector":"40ebc677","id":2518,"implemented":true,"kind":"function","modifiers":[{"id":2454,"kind":"modifierInvocation","modifierName":{"id":2453,"name":"onlyOwner","nameLocations":["3463:9:11"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"3463:9:11"},"nodeType":"ModifierInvocation","src":"3463:9:11"}],"name":"updateProtocolAddress","nameLocation":"3403:21:11","nodeType":"FunctionDefinition","parameters":{"id":2452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2449,"mutability":"mutable","name":"what","nameLocation":"3433:4:11","nodeType":"VariableDeclaration","scope":2518,"src":"3425:12:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2448,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3425:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2451,"mutability":"mutable","name":"value","nameLocation":"3447:5:11","nodeType":"VariableDeclaration","scope":2518,"src":"3439:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2450,"name":"address","nodeType":"ElementaryTypeName","src":"3439:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3424:29:11"},"returnParameters":{"id":2455,"nodeType":"ParameterList","parameters":[],"src":"3473:0:11"},"scope":2519,"src":"3394:551:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2520,"src":"338:3609:11","usedErrors":[]}],"src":"168:3780:11"},"id":11},"contracts/GatewayV2.sol":{"ast":{"absolutePath":"contracts/GatewayV2.sol","exportedSymbols":{"ContextUpgradeable":[917],"GatewaySettingManager":[2519],"GatewayV2":[3113],"IERC20":[1582],"IGatewayV2":[3442],"Initializable":[408],"PausableUpgradeable":[536]},"id":3114,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":2521,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:12"},{"absolutePath":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","id":2522,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3114,"sourceUnit":537,"src":"65:78:12","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/GatewaySettingManager.sol","file":"./GatewaySettingManager.sol","id":2524,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3114,"sourceUnit":2520,"src":"145:66:12","symbolAliases":[{"foreign":{"id":2523,"name":"GatewaySettingManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2519,"src":"153:21:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IGatewayV2.sol","file":"./interfaces/IGatewayV2.sol","id":2527,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3114,"sourceUnit":3443,"src":"212:63:12","symbolAliases":[{"foreign":{"id":2525,"name":"IGatewayV2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3442,"src":"220:10:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":2526,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"232:6:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2529,"name":"IGatewayV2","nameLocations":["416:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":3442,"src":"416:10:12"},"id":2530,"nodeType":"InheritanceSpecifier","src":"416:10:12"},{"baseName":{"id":2531,"name":"GatewaySettingManager","nameLocations":["428:21:12"],"nodeType":"IdentifierPath","referencedDeclaration":2519,"src":"428:21:12"},"id":2532,"nodeType":"InheritanceSpecifier","src":"428:21:12"},{"baseName":{"id":2533,"name":"PausableUpgradeable","nameLocations":["451:19:12"],"nodeType":"IdentifierPath","referencedDeclaration":536,"src":"451:19:12"},"id":2534,"nodeType":"InheritanceSpecifier","src":"451:19:12"}],"canonicalName":"GatewayV2","contractDependencies":[],"contractKind":"contract","documentation":{"id":2528,"nodeType":"StructuredDocumentation","src":"277:116:12","text":" @title Gateway\n @notice This contract serves as a gateway for creating orders and managing settlements."},"fullyImplemented":true,"id":3113,"linearizedBaseContracts":[3113,536,2519,106,239,917,408,3442],"name":"GatewayV2","nameLocation":"403:9:12","nodeType":"ContractDefinition","nodes":[{"canonicalName":"GatewayV2.fee","id":2539,"members":[{"constant":false,"id":2536,"mutability":"mutable","name":"protocolFee","nameLocation":"497:11:12","nodeType":"VariableDeclaration","scope":2539,"src":"489:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2535,"name":"uint256","nodeType":"ElementaryTypeName","src":"489:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2538,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"520:23:12","nodeType":"VariableDeclaration","scope":2539,"src":"512:31:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2537,"name":"uint256","nodeType":"ElementaryTypeName","src":"512:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"fee","nameLocation":"481:3:12","nodeType":"StructDefinition","scope":3113,"src":"474:73:12","visibility":"public"},{"constant":false,"id":2544,"mutability":"mutable","name":"order","nameLocation":"584:5:12","nodeType":"VariableDeclaration","scope":3113,"src":"550:39:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order)"},"typeName":{"id":2543,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2540,"name":"bytes32","nodeType":"ElementaryTypeName","src":"558:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"550:25:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2542,"nodeType":"UserDefinedTypeName","pathNode":{"id":2541,"name":"Order","nameLocations":["569:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":3370,"src":"569:5:12"},"referencedDeclaration":3370,"src":"569:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage_ptr","typeString":"struct IGatewayV2.Order"}}},"visibility":"private"},{"constant":false,"id":2548,"mutability":"mutable","name":"_nonce","nameLocation":"628:6:12","nodeType":"VariableDeclaration","scope":3113,"src":"592:42:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":2547,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2545,"name":"address","nodeType":"ElementaryTypeName","src":"600:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"592:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2546,"name":"uint256","nodeType":"ElementaryTypeName","src":"611:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":2552,"mutability":"mutable","name":"__gap","nameLocation":"657:5:12","nodeType":"VariableDeclaration","scope":3113,"src":"637:25:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":2549,"name":"uint256","nodeType":"ElementaryTypeName","src":"637:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2551,"length":{"hexValue":"3530","id":2550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"645:2:12","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"637:11:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"},{"body":{"id":2559,"nodeType":"Block","src":"730:30:12","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2556,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":389,"src":"734:20:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"734:22:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2558,"nodeType":"ExpressionStatement","src":"734:22:12"}]},"documentation":{"id":2553,"nodeType":"StructuredDocumentation","src":"666:48:12","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":2560,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2554,"nodeType":"ParameterList","parameters":[],"src":"727:2:12"},"returnParameters":{"id":2555,"nodeType":"ParameterList","parameters":[],"src":"730:0:12"},"scope":3113,"src":"716:44:12","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2576,"nodeType":"Block","src":"846:71:12","statements":[{"expression":{"id":2568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2566,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"850:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"3130305f303030","id":2567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"860:7:12","typeDescriptions":{"typeIdentifier":"t_rational_100000_by_1","typeString":"int_const 100000"},"value":"100_000"},"src":"850:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2569,"nodeType":"ExpressionStatement","src":"850:17:12"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2570,"name":"__Ownable2Step_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"871:19:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"871:21:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2572,"nodeType":"ExpressionStatement","src":"871:21:12"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2573,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":440,"src":"896:15:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"896:17:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2575,"nodeType":"ExpressionStatement","src":"896:17:12"}]},"documentation":{"id":2561,"nodeType":"StructuredDocumentation","src":"763:38:12","text":" @dev Initialize function."},"functionSelector":"8129fc1c","id":2577,"implemented":true,"kind":"function","modifiers":[{"id":2564,"kind":"modifierInvocation","modifierName":{"id":2563,"name":"initializer","nameLocations":["834:11:12"],"nodeType":"IdentifierPath","referencedDeclaration":310,"src":"834:11:12"},"nodeType":"ModifierInvocation","src":"834:11:12"}],"name":"initialize","nameLocation":"812:10:12","nodeType":"FunctionDefinition","parameters":{"id":2562,"nodeType":"ParameterList","parameters":[],"src":"822:2:12"},"returnParameters":{"id":2565,"nodeType":"ParameterList","parameters":[],"src":"846:0:12"},"scope":3113,"src":"803:114:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2589,"nodeType":"Block","src":"1026:72:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2581,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1038:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1042:6:12","memberName":"sender","nodeType":"MemberAccess","src":"1038:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2583,"name":"_aggregatorAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2266,"src":"1052:18:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1038:32:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f6e6c7941676772656761746f72","id":2585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1072:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""},"value":"OnlyAggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","typeString":"literal_string \"OnlyAggregator\""}],"id":2580,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"1030:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1030:59:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2587,"nodeType":"ExpressionStatement","src":"1030:59:12"},{"id":2588,"nodeType":"PlaceholderStatement","src":"1093:1:12"}]},"documentation":{"id":2578,"nodeType":"StructuredDocumentation","src":"920:78:12","text":" @dev Modifier that allows only the aggregator to call a function."},"id":2590,"name":"onlyAggregator","nameLocation":"1009:14:12","nodeType":"ModifierDefinition","parameters":{"id":2579,"nodeType":"ParameterList","parameters":[],"src":"1023:2:12"},"src":"1000:98:12","virtual":false,"visibility":"internal"},{"body":{"id":2599,"nodeType":"Block","src":"1369:16:12","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2596,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":514,"src":"1373:6:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1373:8:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2598,"nodeType":"ExpressionStatement","src":"1373:8:12"}]},"documentation":{"id":2591,"nodeType":"StructuredDocumentation","src":"1294:37:12","text":" @dev Pause the contract."},"functionSelector":"8456cb59","id":2600,"implemented":true,"kind":"function","modifiers":[{"id":2594,"kind":"modifierInvocation","modifierName":{"id":2593,"name":"onlyOwner","nameLocations":["1359:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1359:9:12"},"nodeType":"ModifierInvocation","src":"1359:9:12"}],"name":"pause","nameLocation":"1342:5:12","nodeType":"FunctionDefinition","parameters":{"id":2592,"nodeType":"ParameterList","parameters":[],"src":"1347:2:12"},"returnParameters":{"id":2595,"nodeType":"ParameterList","parameters":[],"src":"1369:0:12"},"scope":3113,"src":"1333:52:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2609,"nodeType":"Block","src":"1467:18:12","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2606,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":530,"src":"1471:8:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1471:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2608,"nodeType":"ExpressionStatement","src":"1471:10:12"}]},"documentation":{"id":2601,"nodeType":"StructuredDocumentation","src":"1388:39:12","text":" @dev Unpause the contract."},"functionSelector":"3f4ba83a","id":2610,"implemented":true,"kind":"function","modifiers":[{"id":2604,"kind":"modifierInvocation","modifierName":{"id":2603,"name":"onlyOwner","nameLocations":["1457:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":153,"src":"1457:9:12"},"nodeType":"ModifierInvocation","src":"1457:9:12"}],"name":"unpause","nameLocation":"1438:7:12","nodeType":"FunctionDefinition","parameters":{"id":2602,"nodeType":"ParameterList","parameters":[],"src":"1445:2:12"},"returnParameters":{"id":2605,"nodeType":"ParameterList","parameters":[],"src":"1467:0:12"},"scope":3113,"src":"1429:56:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3392],"body":{"id":2738,"nodeType":"Block","src":"1981:1171:12","statements":[{"expression":{"arguments":[{"id":2635,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2613,"src":"2028:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2636,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"2039:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2637,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2625,"src":"2051:14:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2638,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2621,"src":"2070:19:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2639,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2623,"src":"2094:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2640,"name":"_institutionCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2617,"src":"2109:16:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2634,"name":"_handler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2805,"src":"2015:8:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_address_$_t_address_$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (address,uint256,address,address,uint256,bytes32) view"}},"id":2641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2015:114:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2642,"nodeType":"ExpressionStatement","src":"2015:114:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2646,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"2174:11:12","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":2645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2168:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2644,"name":"bytes","nodeType":"ElementaryTypeName","src":"2168:5:12","typeDescriptions":{}}},"id":2647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2168:18:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2187:6:12","memberName":"length","nodeType":"MemberAccess","src":"2168:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2197:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2168:30:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69644d65737361676548617368","id":2651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2200:20:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""},"value":"InvalidMessageHash"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","typeString":"literal_string \"InvalidMessageHash\""}],"id":2643,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"2160:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2160:61:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2653,"nodeType":"ExpressionStatement","src":"2160:61:12"},{"expression":{"arguments":[{"expression":{"id":2658,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2302:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2306:6:12","memberName":"sender","nodeType":"MemberAccess","src":"2302:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":2662,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2322:4:12","typeDescriptions":{"typeIdentifier":"t_contract$_GatewayV2_$3113","typeString":"contract GatewayV2"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_GatewayV2_$3113","typeString":"contract GatewayV2"}],"id":2661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2314:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2660,"name":"address","nodeType":"ElementaryTypeName","src":"2314:7:12","typeDescriptions":{}}},"id":2663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2314:13:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2664,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"2329:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2665,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2623,"src":"2339:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2329:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2655,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2613,"src":"2281:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2654,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"2274:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2274:14:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2289:12:12","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":1581,"src":"2274:27:12","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":2667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2274:76:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2668,"nodeType":"ExpressionStatement","src":"2274:76:12"},{"expression":{"id":2673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2405:20:12","subExpression":{"baseExpression":{"id":2669,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2548,"src":"2405:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2672,"indexExpression":{"expression":{"id":2670,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2412:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2416:6:12","memberName":"sender","nodeType":"MemberAccess","src":"2412:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2405:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2674,"nodeType":"ExpressionStatement","src":"2405:20:12"},{"expression":{"id":2687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2675,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"2479:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":2679,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2510:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2514:6:12","memberName":"sender","nodeType":"MemberAccess","src":"2510:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":2681,"name":"_nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2548,"src":"2522:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2684,"indexExpression":{"expression":{"id":2682,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2529:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2533:6:12","memberName":"sender","nodeType":"MemberAccess","src":"2529:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2522:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2677,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2499:3:12","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2503:6:12","memberName":"encode","nodeType":"MemberAccess","src":"2499:10:12","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":2685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2499:42:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2676,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2489:9:12","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2489:53:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2479:63:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":2688,"nodeType":"ExpressionStatement","src":"2479:63:12"},{"assignments":[2690],"declarations":[{"constant":false,"id":2690,"mutability":"mutable","name":"_protocolFee","nameLocation":"2579:12:12","nodeType":"VariableDeclaration","scope":2738,"src":"2571:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2689,"name":"uint256","nodeType":"ElementaryTypeName","src":"2571:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2697,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2691,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"2595:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2692,"name":"protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"2605:18:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"2595:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2694,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2594:30:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2695,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"2627:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2594:40:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2571:63:12"},{"expression":{"id":2719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2698,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"2638:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2700,"indexExpression":{"id":2699,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"2644:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2638:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":2702,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2674:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2678:6:12","memberName":"sender","nodeType":"MemberAccess","src":"2674:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2704,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2613,"src":"2696:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2705,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2621,"src":"2727:19:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2706,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2623,"src":"2762:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2707,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2690,"src":"2790:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":2708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2820:5:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"66616c7365","id":2709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2842:5:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":2710,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2625,"src":"2867:14:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":2713,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"2905:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2898:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":2711,"name":"uint64","nodeType":"ElementaryTypeName","src":"2898:6:12","typeDescriptions":{}}},"id":2714,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2898:15:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2715,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2615,"src":"2926:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2716,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2690,"src":"2936:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2926:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2701,"name":"Order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3370,"src":"2655:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Order_$3370_storage_ptr_$","typeString":"type(struct IGatewayV2.Order storage pointer)"}},"id":2718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["2666:6:12","2689:5:12","2707:18:12","2751:9:12","2777:11:12","2807:11:12","2830:10:12","2852:13:12","2886:10:12","2918:6:12"],"names":["sender","token","senderFeeRecipient","senderFee","protocolFee","isFulfilled","isRefunded","refundAddress","currentBPS","amount"],"nodeType":"FunctionCall","src":"2655:298:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_memory_ptr","typeString":"struct IGatewayV2.Order memory"}},"src":"2638:315:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2720,"nodeType":"ExpressionStatement","src":"2638:315:12"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":2722,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"3010:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2724,"indexExpression":{"id":2723,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"3016:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3010:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2725,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3025:6:12","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":3351,"src":"3010:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2726,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2613,"src":"3036:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2727,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"3047:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2729,"indexExpression":{"id":2728,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"3053:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3047:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2730,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3062:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3369,"src":"3047:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2731,"name":"_protocolFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2690,"src":"3073:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2732,"name":"orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2632,"src":"3090:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2733,"name":"_rate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2619,"src":"3102:5:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":2734,"name":"_institutionCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2617,"src":"3112:16:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2735,"name":"messageHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"3133:11:12","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":2721,"name":"OrderCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3313,"src":"2993:12:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes32_$_t_uint256_$_t_bytes32_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,uint256,bytes32,uint256,bytes32,string memory)"}},"id":2736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2993:155:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2737,"nodeType":"EmitStatement","src":"2988:160:12"}]},"documentation":{"id":2611,"nodeType":"StructuredDocumentation","src":"1676:39:12","text":"@dev See {createOrder-IGateway}. "},"functionSelector":"d12ff20a","id":2739,"implemented":true,"kind":"function","modifiers":[{"id":2630,"kind":"modifierInvocation","modifierName":{"id":2629,"name":"whenNotPaused","nameLocations":["1941:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":458,"src":"1941:13:12"},"nodeType":"ModifierInvocation","src":"1941:13:12"}],"name":"createOrder","nameLocation":"1726:11:12","nodeType":"FunctionDefinition","parameters":{"id":2628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2613,"mutability":"mutable","name":"_token","nameLocation":"1749:6:12","nodeType":"VariableDeclaration","scope":2739,"src":"1741:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2612,"name":"address","nodeType":"ElementaryTypeName","src":"1741:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2615,"mutability":"mutable","name":"_amount","nameLocation":"1767:7:12","nodeType":"VariableDeclaration","scope":2739,"src":"1759:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2614,"name":"uint256","nodeType":"ElementaryTypeName","src":"1759:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2617,"mutability":"mutable","name":"_institutionCode","nameLocation":"1786:16:12","nodeType":"VariableDeclaration","scope":2739,"src":"1778:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2616,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1778:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2619,"mutability":"mutable","name":"_rate","nameLocation":"1813:5:12","nodeType":"VariableDeclaration","scope":2739,"src":"1806:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":2618,"name":"uint96","nodeType":"ElementaryTypeName","src":"1806:6:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":2621,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"1830:19:12","nodeType":"VariableDeclaration","scope":2739,"src":"1822:27:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2620,"name":"address","nodeType":"ElementaryTypeName","src":"1822:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2623,"mutability":"mutable","name":"_senderFee","nameLocation":"1861:10:12","nodeType":"VariableDeclaration","scope":2739,"src":"1853:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2622,"name":"uint256","nodeType":"ElementaryTypeName","src":"1853:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2625,"mutability":"mutable","name":"_refundAddress","nameLocation":"1883:14:12","nodeType":"VariableDeclaration","scope":2739,"src":"1875:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2624,"name":"address","nodeType":"ElementaryTypeName","src":"1875:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2627,"mutability":"mutable","name":"messageHash","nameLocation":"1917:11:12","nodeType":"VariableDeclaration","scope":2739,"src":"1901:27:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2626,"name":"string","nodeType":"ElementaryTypeName","src":"1901:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1737:194:12"},"returnParameters":{"id":2633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2632,"mutability":"mutable","name":"orderId","nameLocation":"1972:7:12","nodeType":"VariableDeclaration","scope":2739,"src":"1964:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2631,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1964:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1963:17:12"},"scope":3113,"src":"1717:1435:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2804,"nodeType":"Block","src":"3807:352:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2756,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2274,"src":"3819:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2758,"indexExpression":{"id":2757,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"3837:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3819:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":2759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3848:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3819:30:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"546f6b656e4e6f74537570706f72746564","id":2761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3851:19:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""},"value":"TokenNotSupported"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","typeString":"literal_string \"TokenNotSupported\""}],"id":2755,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3811:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3811:60:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2763,"nodeType":"ExpressionStatement","src":"3811:60:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2765,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2744,"src":"3883:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3894:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3883:12:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416d6f756e7449735a65726f","id":2768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3897:14:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""},"value":"AmountIsZero"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","typeString":"literal_string \"AmountIsZero\""}],"id":2764,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3875:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3875:37:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2770,"nodeType":"ExpressionStatement","src":"3875:37:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2772,"name":"_refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2746,"src":"3924:14:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3950:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2774,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3942:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2773,"name":"address","nodeType":"ElementaryTypeName","src":"3942:7:12","typeDescriptions":{}}},"id":2776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3942:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3924:28:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5468726f775a65726f41646472657373","id":2778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3954:18:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""},"value":"ThrowZeroAddress"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","typeString":"literal_string \"ThrowZeroAddress\""}],"id":2771,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3916:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3916:57:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2780,"nodeType":"ExpressionStatement","src":"3916:57:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":2785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2782,"name":"_institutionCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2752,"src":"3989:16:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":2783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4006:6:12","memberName":"length","nodeType":"MemberAccess","src":"3989:23:12","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4015:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3989:27:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c6964496e737469747574696f6e436f6465","id":2786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4021:24:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5","typeString":"literal_string \"InvalidInstitutionCode\""},"value":"InvalidInstitutionCode"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5","typeString":"literal_string \"InvalidInstitutionCode\""}],"id":2781,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"3977:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3977:72:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2788,"nodeType":"ExpressionStatement","src":"3977:72:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2789,"name":"_senderFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2750,"src":"4058:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4072:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4058:15:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2803,"nodeType":"IfStatement","src":"4054:102:12","trueBody":{"id":2802,"nodeType":"Block","src":"4075:81:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2793,"name":"_senderFeeRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2748,"src":"4088:19:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2796,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4119:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4111:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2794,"name":"address","nodeType":"ElementaryTypeName","src":"4111:7:12","typeDescriptions":{}}},"id":2797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4111:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4088:33:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","id":2799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4123:27:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""},"value":"InvalidSenderFeeRecipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","typeString":"literal_string \"InvalidSenderFeeRecipient\""}],"id":2792,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4080:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4080:71:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2801,"nodeType":"ExpressionStatement","src":"4080:71:12"}]}}]},"documentation":{"id":2740,"nodeType":"StructuredDocumentation","src":"3155:471:12","text":" @dev Internal function to handle order creation.\n @param _token The address of the token being traded.\n @param _amount The amount of tokens being traded.\n @param _refundAddress The address to refund the tokens in case of cancellation.\n @param _senderFeeRecipient The address of the recipient for the sender fee.\n @param _senderFee The amount of the sender fee.\n @param _institutionCode The code of the institution associated with the order."},"id":2805,"implemented":true,"kind":"function","modifiers":[],"name":"_handler","nameLocation":"3637:8:12","nodeType":"FunctionDefinition","parameters":{"id":2753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2742,"mutability":"mutable","name":"_token","nameLocation":"3657:6:12","nodeType":"VariableDeclaration","scope":2805,"src":"3649:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2741,"name":"address","nodeType":"ElementaryTypeName","src":"3649:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2744,"mutability":"mutable","name":"_amount","nameLocation":"3675:7:12","nodeType":"VariableDeclaration","scope":2805,"src":"3667:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2743,"name":"uint256","nodeType":"ElementaryTypeName","src":"3667:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2746,"mutability":"mutable","name":"_refundAddress","nameLocation":"3694:14:12","nodeType":"VariableDeclaration","scope":2805,"src":"3686:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2745,"name":"address","nodeType":"ElementaryTypeName","src":"3686:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2748,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"3720:19:12","nodeType":"VariableDeclaration","scope":2805,"src":"3712:27:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2747,"name":"address","nodeType":"ElementaryTypeName","src":"3712:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2750,"mutability":"mutable","name":"_senderFee","nameLocation":"3751:10:12","nodeType":"VariableDeclaration","scope":2805,"src":"3743:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2749,"name":"uint256","nodeType":"ElementaryTypeName","src":"3743:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2752,"mutability":"mutable","name":"_institutionCode","nameLocation":"3773:16:12","nodeType":"VariableDeclaration","scope":2805,"src":"3765:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2751,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3765:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3645:147:12"},"returnParameters":{"id":2754,"nodeType":"ParameterList","parameters":[],"src":"3807:0:12"},"scope":3113,"src":"3628:531:12","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[3406],"body":{"id":2959,"nodeType":"Block","src":"4554:1337:12","statements":[{"expression":{"arguments":[{"id":2826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4617:28:12","subExpression":{"expression":{"baseExpression":{"id":2822,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"4618:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2824,"indexExpression":{"id":2823,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"4624:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4618:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2825,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4634:11:12","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":3361,"src":"4618:27:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":2827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4647:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":2821,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4609:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4609:55:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2829,"nodeType":"ExpressionStatement","src":"4609:55:12"},{"expression":{"arguments":[{"id":2835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4676:27:12","subExpression":{"expression":{"baseExpression":{"id":2831,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"4677:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2833,"indexExpression":{"id":2832,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"4683:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4677:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2834,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4693:10:12","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":3363,"src":"4677:26:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":2836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4705:15:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":2830,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"4668:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4668:53:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2838,"nodeType":"ExpressionStatement","src":"4668:53:12"},{"assignments":[2840],"declarations":[{"constant":false,"id":2840,"mutability":"mutable","name":"token","nameLocation":"4766:5:12","nodeType":"VariableDeclaration","scope":2959,"src":"4758:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2839,"name":"address","nodeType":"ElementaryTypeName","src":"4758:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2845,"initialValue":{"expression":{"baseExpression":{"id":2841,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"4774:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2843,"indexExpression":{"id":2842,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"4780:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4774:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2844,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4790:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3353,"src":"4774:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4758:37:12"},{"expression":{"id":2851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2846,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"4862:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2848,"indexExpression":{"id":2847,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"4868:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4862:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2849,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4878:10:12","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":3367,"src":"4862:26:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2850,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"4892:14:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"4862:44:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":2852,"nodeType":"ExpressionStatement","src":"4862:44:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":2858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2853,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"4915:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2855,"indexExpression":{"id":2854,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"4921:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4915:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2856,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4931:10:12","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":3367,"src":"4915:26:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4945:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4915:31:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2922,"nodeType":"IfStatement","src":"4911:604:12","trueBody":{"id":2921,"nodeType":"Block","src":"4948:567:12","statements":[{"expression":{"id":2864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2859,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"4998:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2861,"indexExpression":{"id":2860,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5004:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4998:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2862,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5014:11:12","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":3361,"src":"4998:27:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5028:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"4998:34:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2865,"nodeType":"ExpressionStatement","src":"4998:34:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2866,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5042:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2868,"indexExpression":{"id":2867,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5048:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5042:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2869,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5058:9:12","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3357,"src":"5042:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5071:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5042:30:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2901,"nodeType":"IfStatement","src":"5038:321:12","trueBody":{"id":2900,"nodeType":"Block","src":"5074:285:12","statements":[{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2879,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5152:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2881,"indexExpression":{"id":2880,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5158:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5152:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2882,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5168:18:12","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":3355,"src":"5152:34:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2883,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5193:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2885,"indexExpression":{"id":2884,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5199:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5193:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2886,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5209:9:12","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3357,"src":"5193:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":2873,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5114:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2875,"indexExpression":{"id":2874,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5120:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5114:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2876,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5130:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3353,"src":"5114:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2872,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"5107:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5107:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5137:8:12","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"5107:38:12","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5107:117:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2888,"nodeType":"ExpressionStatement","src":"5107:117:12"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":2890,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5281:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2892,"indexExpression":{"id":2891,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5287:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5281:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2893,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5297:18:12","memberName":"senderFeeRecipient","nodeType":"MemberAccess","referencedDeclaration":3355,"src":"5281:34:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2894,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5322:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2896,"indexExpression":{"id":2895,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5328:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5322:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2897,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5338:9:12","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3357,"src":"5322:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2889,"name":"SenderFeeTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3338,"src":"5254:20:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5254:99:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2899,"nodeType":"EmitStatement","src":"5249:104:12"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2902,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5368:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2904,"indexExpression":{"id":2903,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5374:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5368:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2905,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5384:11:12","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3359,"src":"5368:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5399:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5368:32:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2920,"nodeType":"IfStatement","src":"5364:147:12","trueBody":{"id":2919,"nodeType":"Block","src":"5402:109:12","statements":[{"expression":{"arguments":[{"id":2912,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"5460:15:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2913,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5477:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2915,"indexExpression":{"id":2914,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5483:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5477:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2916,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5493:11:12","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3359,"src":"5477:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2909,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2840,"src":"5444:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2908,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"5437:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5437:13:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5451:8:12","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"5437:22:12","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5437:68:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2918,"nodeType":"ExpressionStatement","src":"5437:68:12"}]}}]}},{"assignments":[2924],"declarations":[{"constant":false,"id":2924,"mutability":"mutable","name":"liquidityProviderAmount","nameLocation":"5563:23:12","nodeType":"VariableDeclaration","scope":2959,"src":"5555:31:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2923,"name":"uint256","nodeType":"ElementaryTypeName","src":"5555:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2934,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2925,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5590:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2927,"indexExpression":{"id":2926,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5596:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5590:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2928,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5606:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3369,"src":"5590:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2929,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"5615:14:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5590:39:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2931,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5589:41:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2932,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"5633:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5589:51:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5555:85:12"},{"expression":{"id":2940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":2935,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"5644:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2937,"indexExpression":{"id":2936,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5650:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5644:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2938,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5660:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3369,"src":"5644:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2939,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2924,"src":"5670:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5644:49:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2941,"nodeType":"ExpressionStatement","src":"5644:49:12"},{"expression":{"arguments":[{"id":2946,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2812,"src":"5720:18:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2947,"name":"liquidityProviderAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2924,"src":"5740:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2943,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2840,"src":"5704:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2942,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"5697:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":2944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5697:13:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":2945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5711:8:12","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"5697:22:12","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5697:67:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2949,"nodeType":"ExpressionStatement","src":"5697:67:12"},{"eventCall":{"arguments":[{"id":2951,"name":"_splitOrderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2808,"src":"5811:13:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2952,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"5826:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2953,"name":"_liquidityProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2812,"src":"5836:18:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2954,"name":"_settlePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2814,"src":"5856:14:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":2950,"name":"OrderSettled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3324,"src":"5798:12:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_address_$_t_uint96_$returns$__$","typeString":"function (bytes32,bytes32,address,uint96)"}},"id":2955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5798:73:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2956,"nodeType":"EmitStatement","src":"5793:78:12"},{"expression":{"hexValue":"74727565","id":2957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5883:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2820,"id":2958,"nodeType":"Return","src":"5876:11:12"}]},"documentation":{"id":2806,"nodeType":"StructuredDocumentation","src":"4360:34:12","text":"@dev See {settle-IGateway}. "},"functionSelector":"f22ee704","id":2960,"implemented":true,"kind":"function","modifiers":[{"id":2817,"kind":"modifierInvocation","modifierName":{"id":2816,"name":"onlyAggregator","nameLocations":["4524:14:12"],"nodeType":"IdentifierPath","referencedDeclaration":2590,"src":"4524:14:12"},"nodeType":"ModifierInvocation","src":"4524:14:12"}],"name":"settle","nameLocation":"4405:6:12","nodeType":"FunctionDefinition","parameters":{"id":2815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2808,"mutability":"mutable","name":"_splitOrderId","nameLocation":"4423:13:12","nodeType":"VariableDeclaration","scope":2960,"src":"4415:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2807,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4415:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2810,"mutability":"mutable","name":"_orderId","nameLocation":"4448:8:12","nodeType":"VariableDeclaration","scope":2960,"src":"4440:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2809,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4440:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2812,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"4468:18:12","nodeType":"VariableDeclaration","scope":2960,"src":"4460:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2811,"name":"address","nodeType":"ElementaryTypeName","src":"4460:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2814,"mutability":"mutable","name":"_settlePercent","nameLocation":"4497:14:12","nodeType":"VariableDeclaration","scope":2960,"src":"4490:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2813,"name":"uint64","nodeType":"ElementaryTypeName","src":"4490:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4411:103:12"},"returnParameters":{"id":2820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2819,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2960,"src":"4548:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2818,"name":"bool","nodeType":"ElementaryTypeName","src":"4548:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4547:6:12"},"scope":3113,"src":"4396:1495:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3416],"body":{"id":3065,"nodeType":"Block","src":"6017:839:12","statements":[{"expression":{"arguments":[{"id":2977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6080:28:12","subExpression":{"expression":{"baseExpression":{"id":2973,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6081:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2975,"indexExpression":{"id":2974,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6087:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6081:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2976,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6097:11:12","memberName":"isFulfilled","nodeType":"MemberAccess","referencedDeclaration":3361,"src":"6081:27:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f7264657246756c66696c6c6564","id":2978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6110:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""},"value":"OrderFulfilled"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","typeString":"literal_string \"OrderFulfilled\""}],"id":2972,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6072:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6072:55:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2980,"nodeType":"ExpressionStatement","src":"6072:55:12"},{"expression":{"arguments":[{"id":2986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6139:27:12","subExpression":{"expression":{"baseExpression":{"id":2982,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6140:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2984,"indexExpression":{"id":2983,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6146:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6140:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2985,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6156:10:12","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":3363,"src":"6140:26:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f72646572526566756e646564","id":2987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6168:15:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""},"value":"OrderRefunded"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","typeString":"literal_string \"OrderRefunded\""}],"id":2981,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6131:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6131:53:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2989,"nodeType":"ExpressionStatement","src":"6131:53:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2991,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6196:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":2993,"indexExpression":{"id":2992,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6202:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6196:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":2994,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6212:11:12","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3359,"src":"6196:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2995,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"6227:4:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6196:35:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4665654578636565647350726f746f636f6c466565","id":2997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6233:23:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""},"value":"FeeExceedsProtocolFee"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","typeString":"literal_string \"FeeExceedsProtocolFee\""}],"id":2990,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6188:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6188:69:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2999,"nodeType":"ExpressionStatement","src":"6188:69:12"},{"expression":{"arguments":[{"id":3007,"name":"treasuryAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2264,"src":"6342:15:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3008,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"6359:4:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":3001,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6310:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3003,"indexExpression":{"id":3002,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6316:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6310:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3004,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6326:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3353,"src":"6310:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3000,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6303:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":3005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6303:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":3006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6333:8:12","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6303:38:12","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":3009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6303:61:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3010,"nodeType":"ExpressionStatement","src":"6303:61:12"},{"expression":{"id":3016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":3011,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6393:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3013,"indexExpression":{"id":3012,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6399:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6393:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3014,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6409:10:12","memberName":"isRefunded","nodeType":"MemberAccess","referencedDeclaration":3363,"src":"6393:26:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6422:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6393:33:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3017,"nodeType":"ExpressionStatement","src":"6393:33:12"},{"expression":{"id":3023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":3018,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6430:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3020,"indexExpression":{"id":3019,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6436:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6430:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3021,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6446:10:12","memberName":"currentBPS","nodeType":"MemberAccess","referencedDeclaration":3367,"src":"6430:26:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6459:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6430:30:12","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":3024,"nodeType":"ExpressionStatement","src":"6430:30:12"},{"assignments":[3026],"declarations":[{"constant":false,"id":3026,"mutability":"mutable","name":"refundAmount","nameLocation":"6507:12:12","nodeType":"VariableDeclaration","scope":3065,"src":"6499:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3025,"name":"uint256","nodeType":"ElementaryTypeName","src":"6499:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3038,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":3027,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6522:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3029,"indexExpression":{"id":3028,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6528:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6522:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3030,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6538:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":3369,"src":"6522:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":3031,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6547:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3033,"indexExpression":{"id":3032,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6553:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6547:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3034,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6563:11:12","memberName":"protocolFee","nodeType":"MemberAccess","referencedDeclaration":3359,"src":"6547:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6522:52:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3036,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"6577:4:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6522:59:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6499:82:12"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":3046,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6694:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3048,"indexExpression":{"id":3047,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6700:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6694:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3049,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6710:13:12","memberName":"refundAddress","nodeType":"MemberAccess","referencedDeclaration":3365,"src":"6694:29:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3050,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3026,"src":"6728:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":3051,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6743:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3053,"indexExpression":{"id":3052,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6749:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6743:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3054,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6759:9:12","memberName":"senderFee","nodeType":"MemberAccess","referencedDeclaration":3357,"src":"6743:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6728:40:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"baseExpression":{"id":3040,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"6658:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3042,"indexExpression":{"id":3041,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6664:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6658:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"id":3043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6674:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":3353,"src":"6658:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3039,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"6651:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1582_$","typeString":"type(contract IERC20)"}},"id":3044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6651:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1582","typeString":"contract IERC20"}},"id":3045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6681:8:12","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1549,"src":"6651:38:12","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":3056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6651:121:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3057,"nodeType":"ExpressionStatement","src":"6651:121:12"},{"eventCall":{"arguments":[{"id":3059,"name":"_fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"6821:4:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3060,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"6827:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3058,"name":"OrderRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3331,"src":"6807:13:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_bytes32_$returns$__$","typeString":"function (uint256,bytes32)"}},"id":3061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3062,"nodeType":"EmitStatement","src":"6802:34:12"},{"expression":{"hexValue":"74727565","id":3063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6848:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2971,"id":3064,"nodeType":"Return","src":"6841:11:12"}]},"documentation":{"id":2961,"nodeType":"StructuredDocumentation","src":"5894:34:12","text":"@dev See {refund-IGateway}. "},"functionSelector":"71eedb88","id":3066,"implemented":true,"kind":"function","modifiers":[{"id":2968,"kind":"modifierInvocation","modifierName":{"id":2967,"name":"onlyAggregator","nameLocations":["5987:14:12"],"nodeType":"IdentifierPath","referencedDeclaration":2590,"src":"5987:14:12"},"nodeType":"ModifierInvocation","src":"5987:14:12"}],"name":"refund","nameLocation":"5939:6:12","nodeType":"FunctionDefinition","parameters":{"id":2966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2963,"mutability":"mutable","name":"_fee","nameLocation":"5954:4:12","nodeType":"VariableDeclaration","scope":3066,"src":"5946:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2962,"name":"uint256","nodeType":"ElementaryTypeName","src":"5946:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2965,"mutability":"mutable","name":"_orderId","nameLocation":"5968:8:12","nodeType":"VariableDeclaration","scope":3066,"src":"5960:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2964,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5960:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5945:32:12"},"returnParameters":{"id":2971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2970,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3066,"src":"6011:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2969,"name":"bool","nodeType":"ElementaryTypeName","src":"6011:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6010:6:12"},"scope":3113,"src":"5930:926:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3433],"body":{"id":3079,"nodeType":"Block","src":"7166:30:12","statements":[{"expression":{"baseExpression":{"id":3075,"name":"order","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2544,"src":"7177:5:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Order_$3370_storage_$","typeString":"mapping(bytes32 => struct IGatewayV2.Order storage ref)"}},"id":3077,"indexExpression":{"id":3076,"name":"_orderId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"7183:8:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7177:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage","typeString":"struct IGatewayV2.Order storage ref"}},"functionReturnParameters":3074,"id":3078,"nodeType":"Return","src":"7170:22:12"}]},"documentation":{"id":3067,"nodeType":"StructuredDocumentation","src":"7047:40:12","text":"@dev See {getOrderInfo-IGateway}. "},"functionSelector":"768c6ec0","id":3080,"implemented":true,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"7098:12:12","nodeType":"FunctionDefinition","parameters":{"id":3070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3069,"mutability":"mutable","name":"_orderId","nameLocation":"7119:8:12","nodeType":"VariableDeclaration","scope":3080,"src":"7111:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3068,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7111:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7110:18:12"},"returnParameters":{"id":3074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3073,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3080,"src":"7152:12:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_memory_ptr","typeString":"struct IGatewayV2.Order"},"typeName":{"id":3072,"nodeType":"UserDefinedTypeName","pathNode":{"id":3071,"name":"Order","nameLocations":["7152:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":3370,"src":"7152:5:12"},"referencedDeclaration":3370,"src":"7152:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage_ptr","typeString":"struct IGatewayV2.Order"}},"visibility":"internal"}],"src":"7151:14:12"},"scope":3113,"src":"7089:107:12","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[3424],"body":{"id":3098,"nodeType":"Block","src":"7316:71:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":3088,"name":"_isTokenSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2274,"src":"7324:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3090,"indexExpression":{"id":3089,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3083,"src":"7342:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7324:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":3091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7353:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7324:30:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3095,"nodeType":"IfStatement","src":"7320:47:12","trueBody":{"expression":{"hexValue":"74727565","id":3093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7363:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":3087,"id":3094,"nodeType":"Return","src":"7356:11:12"}},{"expression":{"hexValue":"66616c7365","id":3096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7378:5:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":3087,"id":3097,"nodeType":"Return","src":"7371:12:12"}]},"documentation":{"id":3081,"nodeType":"StructuredDocumentation","src":"7199:44:12","text":"@dev See {isTokenSupported-IGateway}. "},"functionSelector":"75151b63","id":3099,"implemented":true,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"7254:16:12","nodeType":"FunctionDefinition","parameters":{"id":3084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3083,"mutability":"mutable","name":"_token","nameLocation":"7279:6:12","nodeType":"VariableDeclaration","scope":3099,"src":"7271:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3082,"name":"address","nodeType":"ElementaryTypeName","src":"7271:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7270:16:12"},"returnParameters":{"id":3087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3099,"src":"7310:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3085,"name":"bool","nodeType":"ElementaryTypeName","src":"7310:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7309:6:12"},"scope":3113,"src":"7245:142:12","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[3441],"body":{"id":3111,"nodeType":"Block","src":"7498:44:12","statements":[{"expression":{"components":[{"id":3107,"name":"protocolFeePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"7510:18:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":3108,"name":"MAX_BPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2260,"src":"7530:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3109,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7509:29:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint64_$_t_uint256_$","typeString":"tuple(uint64,uint256)"}},"functionReturnParameters":3106,"id":3110,"nodeType":"Return","src":"7502:36:12"}]},"documentation":{"id":3100,"nodeType":"StructuredDocumentation","src":"7390:41:12","text":"@dev See {getFeeDetails-IGateway}. "},"functionSelector":"b810c636","id":3112,"implemented":true,"kind":"function","modifiers":[],"name":"getFeeDetails","nameLocation":"7442:13:12","nodeType":"FunctionDefinition","parameters":{"id":3101,"nodeType":"ParameterList","parameters":[],"src":"7455:2:12"},"returnParameters":{"id":3106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3103,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3112,"src":"7481:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3102,"name":"uint64","nodeType":"ElementaryTypeName","src":"7481:6:12","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":3105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3112,"src":"7489:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3104,"name":"uint256","nodeType":"ElementaryTypeName","src":"7489:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7480:17:12"},"scope":3113,"src":"7433:109:12","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3114,"src":"394:7150:12","usedErrors":[]}],"src":"39:7506:12"},"id":12},"contracts/interfaces/IGateway.sol":{"ast":{"absolutePath":"contracts/interfaces/IGateway.sol","exportedSymbols":{"IERC20":[1582],"IGateway":[3287],"SharedStructs":[3455]},"id":3288,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":3115,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:13"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":3117,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3288,"sourceUnit":1583,"src":"65:70:13","symbolAliases":[{"foreign":{"id":3116,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"73:6:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/libraries/SharedStructs.sol","file":"../libraries/SharedStructs.sol","id":3119,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3288,"sourceUnit":3456,"src":"137:61:13","symbolAliases":[{"foreign":{"id":3118,"name":"SharedStructs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3455,"src":"145:13:13","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGateway","contractDependencies":[],"contractKind":"interface","documentation":{"id":3120,"nodeType":"StructuredDocumentation","src":"200:73:13","text":" @title IGateway\n @notice Interface for the Gateway contract."},"fullyImplemented":false,"id":3287,"linearizedBaseContracts":[3287],"name":"IGateway","nameLocation":"284:8:13","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3121,"nodeType":"StructuredDocumentation","src":"480:391:13","text":" @dev Emitted when a deposit is made.\n @param sender The address of the sender.\n @param token The address of the deposited token.\n @param amount The amount of the deposit.\n @param orderId The ID of the order.\n @param rate The rate at which the deposit is made.\n @param institutionCode The code of the institution.\n @param messageHash The hash of the message."},"eventSelector":"3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf333","id":3139,"name":"OrderCreated","nameLocation":"879:12:13","nodeType":"EventDefinition","parameters":{"id":3138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3123,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"911:6:13","nodeType":"VariableDeclaration","scope":3139,"src":"895:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3122,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3125,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"937:5:13","nodeType":"VariableDeclaration","scope":3139,"src":"921:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3124,"name":"address","nodeType":"ElementaryTypeName","src":"921:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3127,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"962:6:13","nodeType":"VariableDeclaration","scope":3139,"src":"946:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3126,"name":"uint256","nodeType":"ElementaryTypeName","src":"946:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3129,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"980:11:13","nodeType":"VariableDeclaration","scope":3139,"src":"972:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3128,"name":"uint256","nodeType":"ElementaryTypeName","src":"972:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3131,"indexed":false,"mutability":"mutable","name":"orderId","nameLocation":"1003:7:13","nodeType":"VariableDeclaration","scope":3139,"src":"995:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"995:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3133,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"1022:4:13","nodeType":"VariableDeclaration","scope":3139,"src":"1014:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3132,"name":"uint256","nodeType":"ElementaryTypeName","src":"1014:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3135,"indexed":false,"mutability":"mutable","name":"institutionCode","nameLocation":"1038:15:13","nodeType":"VariableDeclaration","scope":3139,"src":"1030:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3134,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1030:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3137,"indexed":false,"mutability":"mutable","name":"messageHash","nameLocation":"1064:11:13","nodeType":"VariableDeclaration","scope":3139,"src":"1057:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3136,"name":"string","nodeType":"ElementaryTypeName","src":"1057:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"891:187:13"},"src":"873:206:13"},{"anonymous":false,"documentation":{"id":3140,"nodeType":"StructuredDocumentation","src":"1082:303:13","text":" @dev Emitted when an aggregator settles a transaction.\n @param splitOrderId The ID of the split order.\n @param orderId The ID of the order.\n @param liquidityProvider The address of the liquidity provider.\n @param settlePercent The percentage at which the transaction is settled."},"eventSelector":"98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a","id":3150,"name":"OrderSettled","nameLocation":"1393:12:13","nodeType":"EventDefinition","parameters":{"id":3149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3142,"indexed":false,"mutability":"mutable","name":"splitOrderId","nameLocation":"1417:12:13","nodeType":"VariableDeclaration","scope":3150,"src":"1409:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3141,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1409:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3144,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1449:7:13","nodeType":"VariableDeclaration","scope":3150,"src":"1433:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3143,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1433:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3146,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1476:17:13","nodeType":"VariableDeclaration","scope":3150,"src":"1460:33:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3145,"name":"address","nodeType":"ElementaryTypeName","src":"1460:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3148,"indexed":false,"mutability":"mutable","name":"settlePercent","nameLocation":"1504:13:13","nodeType":"VariableDeclaration","scope":3150,"src":"1497:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3147,"name":"uint96","nodeType":"ElementaryTypeName","src":"1497:6:13","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1405:115:13"},"src":"1387:134:13"},{"anonymous":false,"documentation":{"id":3151,"nodeType":"StructuredDocumentation","src":"1524:163:13","text":" @dev Emitted when an aggregator refunds a transaction.\n @param fee The fee deducted from the refund amount.\n @param orderId The ID of the order."},"eventSelector":"0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e","id":3157,"name":"OrderRefunded","nameLocation":"1695:13:13","nodeType":"EventDefinition","parameters":{"id":3156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3153,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"1717:3:13","nodeType":"VariableDeclaration","scope":3157,"src":"1709:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3152,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3155,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1738:7:13","nodeType":"VariableDeclaration","scope":3157,"src":"1722:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3154,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1722:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1708:38:13"},"src":"1689:58:13"},{"anonymous":false,"documentation":{"id":3158,"nodeType":"StructuredDocumentation","src":"1750:161:13","text":" @dev Emitted when the sender's fee is transferred.\n @param sender The address of the sender.\n @param amount The amount of the fee transferred."},"eventSelector":"44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c2501","id":3164,"name":"SenderFeeTransferred","nameLocation":"1919:20:13","nodeType":"EventDefinition","parameters":{"id":3163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3160,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1956:6:13","nodeType":"VariableDeclaration","scope":3164,"src":"1940:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3159,"name":"address","nodeType":"ElementaryTypeName","src":"1940:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3162,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"1980:6:13","nodeType":"VariableDeclaration","scope":3164,"src":"1964:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3161,"name":"uint256","nodeType":"ElementaryTypeName","src":"1964:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1939:48:13"},"src":"1913:75:13"},{"canonicalName":"IGateway.TransactionMetadata","id":3175,"members":[{"constant":false,"id":3166,"mutability":"mutable","name":"identifier","nameLocation":"2554:10:13","nodeType":"VariableDeclaration","scope":3175,"src":"2547:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3165,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2547:6:13","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3168,"mutability":"mutable","name":"institution","nameLocation":"2575:11:13","nodeType":"VariableDeclaration","scope":3175,"src":"2568:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3167,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2568:6:13","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3170,"mutability":"mutable","name":"name","nameLocation":"2597:4:13","nodeType":"VariableDeclaration","scope":3175,"src":"2590:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3169,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2590:6:13","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3172,"mutability":"mutable","name":"currency","nameLocation":"2612:8:13","nodeType":"VariableDeclaration","scope":3175,"src":"2605:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3171,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2605:6:13","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3174,"mutability":"mutable","name":"liquidityProviderID","nameLocation":"2632:19:13","nodeType":"VariableDeclaration","scope":3175,"src":"2624:27:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3173,"name":"uint256","nodeType":"ElementaryTypeName","src":"2624:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"TransactionMetadata","nameLocation":"2523:19:13","nodeType":"StructDefinition","scope":3287,"src":"2516:139:13","visibility":"public"},{"canonicalName":"IGateway.Order","id":3196,"members":[{"constant":false,"id":3177,"mutability":"mutable","name":"sender","nameLocation":"3277:6:13","nodeType":"VariableDeclaration","scope":3196,"src":"3269:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3176,"name":"address","nodeType":"ElementaryTypeName","src":"3269:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3179,"mutability":"mutable","name":"token","nameLocation":"3295:5:13","nodeType":"VariableDeclaration","scope":3196,"src":"3287:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3178,"name":"address","nodeType":"ElementaryTypeName","src":"3287:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3181,"mutability":"mutable","name":"senderFeeRecipient","nameLocation":"3312:18:13","nodeType":"VariableDeclaration","scope":3196,"src":"3304:26:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3180,"name":"address","nodeType":"ElementaryTypeName","src":"3304:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3183,"mutability":"mutable","name":"senderFee","nameLocation":"3342:9:13","nodeType":"VariableDeclaration","scope":3196,"src":"3334:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3182,"name":"uint256","nodeType":"ElementaryTypeName","src":"3334:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3185,"mutability":"mutable","name":"protocolFee","nameLocation":"3363:11:13","nodeType":"VariableDeclaration","scope":3196,"src":"3355:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3184,"name":"uint256","nodeType":"ElementaryTypeName","src":"3355:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3187,"mutability":"mutable","name":"isFulfilled","nameLocation":"3383:11:13","nodeType":"VariableDeclaration","scope":3196,"src":"3378:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3186,"name":"bool","nodeType":"ElementaryTypeName","src":"3378:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3189,"mutability":"mutable","name":"isRefunded","nameLocation":"3403:10:13","nodeType":"VariableDeclaration","scope":3196,"src":"3398:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3188,"name":"bool","nodeType":"ElementaryTypeName","src":"3398:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3191,"mutability":"mutable","name":"refundAddress","nameLocation":"3425:13:13","nodeType":"VariableDeclaration","scope":3196,"src":"3417:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3190,"name":"address","nodeType":"ElementaryTypeName","src":"3417:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3193,"mutability":"mutable","name":"currentBPS","nameLocation":"3449:10:13","nodeType":"VariableDeclaration","scope":3196,"src":"3442:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3192,"name":"uint96","nodeType":"ElementaryTypeName","src":"3442:6:13","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":3195,"mutability":"mutable","name":"amount","nameLocation":"3471:6:13","nodeType":"VariableDeclaration","scope":3196,"src":"3463:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3194,"name":"uint256","nodeType":"ElementaryTypeName","src":"3463:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Order","nameLocation":"3259:5:13","nodeType":"StructDefinition","scope":3287,"src":"3252:229:13","visibility":"public"},{"documentation":{"id":3197,"nodeType":"StructuredDocumentation","src":"3676:1028:13","text":" @notice Locks the sender's amount of token into Gateway.\n @dev Requirements:\n - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n - `_token` must be an acceptable token. See {isTokenSupported}.\n - `amount` must be greater than minimum.\n - `_refundAddress` refund address must not be zero address.\n @param _token The address of the token.\n @param _amount The amount in the decimal of `_token` to be locked.\n @param _institutionCode The institution code of the sender.\n @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n @param messageHash The hash of the message.\n @return _orderId The ID of the order."},"functionSelector":"d12ff20a","id":3218,"implemented":false,"kind":"function","modifiers":[],"name":"createOrder","nameLocation":"4715:11:13","nodeType":"FunctionDefinition","parameters":{"id":3214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3199,"mutability":"mutable","name":"_token","nameLocation":"4738:6:13","nodeType":"VariableDeclaration","scope":3218,"src":"4730:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3198,"name":"address","nodeType":"ElementaryTypeName","src":"4730:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3201,"mutability":"mutable","name":"_amount","nameLocation":"4756:7:13","nodeType":"VariableDeclaration","scope":3218,"src":"4748:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3200,"name":"uint256","nodeType":"ElementaryTypeName","src":"4748:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3203,"mutability":"mutable","name":"_institutionCode","nameLocation":"4775:16:13","nodeType":"VariableDeclaration","scope":3218,"src":"4767:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3202,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4767:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3205,"mutability":"mutable","name":"_rate","nameLocation":"4802:5:13","nodeType":"VariableDeclaration","scope":3218,"src":"4795:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3204,"name":"uint96","nodeType":"ElementaryTypeName","src":"4795:6:13","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":3207,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"4819:19:13","nodeType":"VariableDeclaration","scope":3218,"src":"4811:27:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3206,"name":"address","nodeType":"ElementaryTypeName","src":"4811:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3209,"mutability":"mutable","name":"_senderFee","nameLocation":"4850:10:13","nodeType":"VariableDeclaration","scope":3218,"src":"4842:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3208,"name":"uint256","nodeType":"ElementaryTypeName","src":"4842:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3211,"mutability":"mutable","name":"_refundAddress","nameLocation":"4872:14:13","nodeType":"VariableDeclaration","scope":3218,"src":"4864:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3210,"name":"address","nodeType":"ElementaryTypeName","src":"4864:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3213,"mutability":"mutable","name":"messageHash","nameLocation":"4906:11:13","nodeType":"VariableDeclaration","scope":3218,"src":"4890:27:13","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":3212,"name":"string","nodeType":"ElementaryTypeName","src":"4890:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4726:194:13"},"returnParameters":{"id":3217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3216,"mutability":"mutable","name":"_orderId","nameLocation":"4947:8:13","nodeType":"VariableDeclaration","scope":3218,"src":"4939:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3215,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4939:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4938:18:13"},"scope":3287,"src":"4706:251:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3219,"nodeType":"StructuredDocumentation","src":"4960:366:13","text":" @notice Settles a transaction and distributes rewards accordingly.\n @param _splitOrderId The ID of the split order.\n @param _orderId The ID of the transaction.\n @param _liquidityProvider The address of the liquidity provider.\n @param _settlePercent The rate at which the transaction is settled.\n @return bool the settlement is successful."},"functionSelector":"f22ee704","id":3232,"implemented":false,"kind":"function","modifiers":[],"name":"settle","nameLocation":"5337:6:13","nodeType":"FunctionDefinition","parameters":{"id":3228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3221,"mutability":"mutable","name":"_splitOrderId","nameLocation":"5355:13:13","nodeType":"VariableDeclaration","scope":3232,"src":"5347:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3220,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5347:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3223,"mutability":"mutable","name":"_orderId","nameLocation":"5380:8:13","nodeType":"VariableDeclaration","scope":3232,"src":"5372:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3222,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5372:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3225,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"5400:18:13","nodeType":"VariableDeclaration","scope":3232,"src":"5392:26:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3224,"name":"address","nodeType":"ElementaryTypeName","src":"5392:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3227,"mutability":"mutable","name":"_settlePercent","nameLocation":"5429:14:13","nodeType":"VariableDeclaration","scope":3232,"src":"5422:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3226,"name":"uint64","nodeType":"ElementaryTypeName","src":"5422:6:13","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5343:103:13"},"returnParameters":{"id":3231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3232,"src":"5465:4:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3229,"name":"bool","nodeType":"ElementaryTypeName","src":"5465:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5464:6:13"},"scope":3287,"src":"5328:143:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3233,"nodeType":"StructuredDocumentation","src":"5474:299:13","text":" @notice Refunds to the specified refundable address.\n @dev Requirements:\n - Only aggregators can call this function.\n @param _fee The amount to be deducted from the amount to be refunded.\n @param _orderId The ID of the transaction.\n @return bool the refund is successful."},"functionSelector":"71eedb88","id":3242,"implemented":false,"kind":"function","modifiers":[],"name":"refund","nameLocation":"5784:6:13","nodeType":"FunctionDefinition","parameters":{"id":3238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3235,"mutability":"mutable","name":"_fee","nameLocation":"5799:4:13","nodeType":"VariableDeclaration","scope":3242,"src":"5791:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3234,"name":"uint256","nodeType":"ElementaryTypeName","src":"5791:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3237,"mutability":"mutable","name":"_orderId","nameLocation":"5813:8:13","nodeType":"VariableDeclaration","scope":3242,"src":"5805:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3236,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5805:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5790:32:13"},"returnParameters":{"id":3241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3240,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3242,"src":"5841:4:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3239,"name":"bool","nodeType":"ElementaryTypeName","src":"5841:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5840:6:13"},"scope":3287,"src":"5775:72:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3243,"nodeType":"StructuredDocumentation","src":"5850:157:13","text":" @notice Checks if a token is supported by Gateway.\n @param _token The address of the token to check.\n @return bool the token is supported."},"functionSelector":"75151b63","id":3250,"implemented":false,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"6018:16:13","nodeType":"FunctionDefinition","parameters":{"id":3246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3245,"mutability":"mutable","name":"_token","nameLocation":"6043:6:13","nodeType":"VariableDeclaration","scope":3250,"src":"6035:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3244,"name":"address","nodeType":"ElementaryTypeName","src":"6035:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6034:16:13"},"returnParameters":{"id":3249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3248,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3250,"src":"6074:4:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3247,"name":"bool","nodeType":"ElementaryTypeName","src":"6074:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6073:6:13"},"scope":3287,"src":"6009:71:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3251,"nodeType":"StructuredDocumentation","src":"6083:128:13","text":" @notice Gets the details of an order.\n @param _orderId The ID of the order.\n @return Order The order details."},"functionSelector":"768c6ec0","id":3259,"implemented":false,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"6222:12:13","nodeType":"FunctionDefinition","parameters":{"id":3254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3253,"mutability":"mutable","name":"_orderId","nameLocation":"6243:8:13","nodeType":"VariableDeclaration","scope":3259,"src":"6235:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3252,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6235:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6234:18:13"},"returnParameters":{"id":3258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3257,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3259,"src":"6276:12:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_memory_ptr","typeString":"struct IGateway.Order"},"typeName":{"id":3256,"nodeType":"UserDefinedTypeName","pathNode":{"id":3255,"name":"Order","nameLocations":["6276:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":3196,"src":"6276:5:13"},"referencedDeclaration":3196,"src":"6276:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3196_storage_ptr","typeString":"struct IGateway.Order"}},"visibility":"internal"}],"src":"6275:14:13"},"scope":3287,"src":"6213:77:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3260,"nodeType":"StructuredDocumentation","src":"6293:154:13","text":" @notice Gets the fee details of Gateway.\n @return protocolReward The protocol reward amount.\n @return max_bps The maximum basis points."},"functionSelector":"b810c636","id":3267,"implemented":false,"kind":"function","modifiers":[],"name":"getFeeDetails","nameLocation":"6458:13:13","nodeType":"FunctionDefinition","parameters":{"id":3261,"nodeType":"ParameterList","parameters":[],"src":"6471:2:13"},"returnParameters":{"id":3266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3263,"mutability":"mutable","name":"protocolReward","nameLocation":"6504:14:13","nodeType":"VariableDeclaration","scope":3267,"src":"6497:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3262,"name":"uint64","nodeType":"ElementaryTypeName","src":"6497:6:13","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":3265,"mutability":"mutable","name":"max_bps","nameLocation":"6528:7:13","nodeType":"VariableDeclaration","scope":3267,"src":"6520:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3264,"name":"uint256","nodeType":"ElementaryTypeName","src":"6520:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6496:40:13"},"scope":3287,"src":"6449:88:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3268,"nodeType":"StructuredDocumentation","src":"6540:167:13","text":" @notice Gets the details of a supported institution by code.\n @param _code The institution code.\n @return InstitutionByCode The institution details."},"functionSelector":"c2280103","id":3276,"implemented":false,"kind":"function","modifiers":[],"name":"getSupportedInstitutionByCode","nameLocation":"6718:29:13","nodeType":"FunctionDefinition","parameters":{"id":3271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3270,"mutability":"mutable","name":"_code","nameLocation":"6759:5:13","nodeType":"VariableDeclaration","scope":3276,"src":"6751:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3269,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6751:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6747:20:13"},"returnParameters":{"id":3275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3274,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3276,"src":"6791:38:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_memory_ptr","typeString":"struct SharedStructs.InstitutionByCode"},"typeName":{"id":3273,"nodeType":"UserDefinedTypeName","pathNode":{"id":3272,"name":"SharedStructs.InstitutionByCode","nameLocations":["6791:13:13","6805:17:13"],"nodeType":"IdentifierPath","referencedDeclaration":3454,"src":"6791:31:13"},"referencedDeclaration":3454,"src":"6791:31:13","typeDescriptions":{"typeIdentifier":"t_struct$_InstitutionByCode_$3454_storage_ptr","typeString":"struct SharedStructs.InstitutionByCode"}},"visibility":"internal"}],"src":"6790:40:13"},"scope":3287,"src":"6709:122:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3277,"nodeType":"StructuredDocumentation","src":"6834:167:13","text":" @notice Gets the details of supported institutions by currency.\n @param _currency The currency code.\n @return Institutions An array of institutions."},"functionSelector":"02621338","id":3286,"implemented":false,"kind":"function","modifiers":[],"name":"getSupportedInstitutions","nameLocation":"7012:24:13","nodeType":"FunctionDefinition","parameters":{"id":3280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3279,"mutability":"mutable","name":"_currency","nameLocation":"7048:9:13","nodeType":"VariableDeclaration","scope":3286,"src":"7040:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3278,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7040:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7036:24:13"},"returnParameters":{"id":3285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3284,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3286,"src":"7084:34:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","typeString":"struct SharedStructs.Institution[]"},"typeName":{"baseType":{"id":3282,"nodeType":"UserDefinedTypeName","pathNode":{"id":3281,"name":"SharedStructs.Institution","nameLocations":["7084:13:13","7098:11:13"],"nodeType":"IdentifierPath","referencedDeclaration":3449,"src":"7084:25:13"},"referencedDeclaration":3449,"src":"7084:25:13","typeDescriptions":{"typeIdentifier":"t_struct$_Institution_$3449_storage_ptr","typeString":"struct SharedStructs.Institution"}},"id":3283,"nodeType":"ArrayTypeName","src":"7084:27:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_ptr","typeString":"struct SharedStructs.Institution[]"}},"visibility":"internal"}],"src":"7083:36:13"},"scope":3287,"src":"7003:117:13","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3288,"src":"274:6848:13","usedErrors":[]}],"src":"39:7084:13"},"id":13},"contracts/interfaces/IGatewayV2.sol":{"ast":{"absolutePath":"contracts/interfaces/IGatewayV2.sol","exportedSymbols":{"IERC20":[1582],"IGatewayV2":[3442],"SharedStructs":[3455]},"id":3443,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":3289,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:14"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":3291,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3443,"sourceUnit":1583,"src":"65:70:14","symbolAliases":[{"foreign":{"id":3290,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1582,"src":"73:6:14","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/libraries/SharedStructs.sol","file":"../libraries/SharedStructs.sol","id":3293,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3443,"sourceUnit":3456,"src":"137:61:14","symbolAliases":[{"foreign":{"id":3292,"name":"SharedStructs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3455,"src":"145:13:14","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IGatewayV2","contractDependencies":[],"contractKind":"interface","documentation":{"id":3294,"nodeType":"StructuredDocumentation","src":"200:73:14","text":" @title IGateway\n @notice Interface for the Gateway contract."},"fullyImplemented":false,"id":3442,"linearizedBaseContracts":[3442],"name":"IGatewayV2","nameLocation":"284:10:14","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3295,"nodeType":"StructuredDocumentation","src":"482:391:14","text":" @dev Emitted when a deposit is made.\n @param sender The address of the sender.\n @param token The address of the deposited token.\n @param amount The amount of the deposit.\n @param orderId The ID of the order.\n @param rate The rate at which the deposit is made.\n @param institutionCode The code of the institution.\n @param messageHash The hash of the message."},"eventSelector":"3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf333","id":3313,"name":"OrderCreated","nameLocation":"881:12:14","nodeType":"EventDefinition","parameters":{"id":3312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3297,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"913:6:14","nodeType":"VariableDeclaration","scope":3313,"src":"897:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3296,"name":"address","nodeType":"ElementaryTypeName","src":"897:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3299,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"939:5:14","nodeType":"VariableDeclaration","scope":3313,"src":"923:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3298,"name":"address","nodeType":"ElementaryTypeName","src":"923:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3301,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"964:6:14","nodeType":"VariableDeclaration","scope":3313,"src":"948:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3300,"name":"uint256","nodeType":"ElementaryTypeName","src":"948:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3303,"indexed":false,"mutability":"mutable","name":"protocolFee","nameLocation":"982:11:14","nodeType":"VariableDeclaration","scope":3313,"src":"974:19:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3302,"name":"uint256","nodeType":"ElementaryTypeName","src":"974:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3305,"indexed":false,"mutability":"mutable","name":"orderId","nameLocation":"1005:7:14","nodeType":"VariableDeclaration","scope":3313,"src":"997:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3304,"name":"bytes32","nodeType":"ElementaryTypeName","src":"997:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3307,"indexed":false,"mutability":"mutable","name":"rate","nameLocation":"1024:4:14","nodeType":"VariableDeclaration","scope":3313,"src":"1016:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3306,"name":"uint256","nodeType":"ElementaryTypeName","src":"1016:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3309,"indexed":false,"mutability":"mutable","name":"institutionCode","nameLocation":"1040:15:14","nodeType":"VariableDeclaration","scope":3313,"src":"1032:23:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3308,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1032:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3311,"indexed":false,"mutability":"mutable","name":"messageHash","nameLocation":"1066:11:14","nodeType":"VariableDeclaration","scope":3313,"src":"1059:18:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3310,"name":"string","nodeType":"ElementaryTypeName","src":"1059:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"893:187:14"},"src":"875:206:14"},{"anonymous":false,"documentation":{"id":3314,"nodeType":"StructuredDocumentation","src":"1084:303:14","text":" @dev Emitted when an aggregator settles a transaction.\n @param splitOrderId The ID of the split order.\n @param orderId The ID of the order.\n @param liquidityProvider The address of the liquidity provider.\n @param settlePercent The percentage at which the transaction is settled."},"eventSelector":"98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a","id":3324,"name":"OrderSettled","nameLocation":"1395:12:14","nodeType":"EventDefinition","parameters":{"id":3323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3316,"indexed":false,"mutability":"mutable","name":"splitOrderId","nameLocation":"1419:12:14","nodeType":"VariableDeclaration","scope":3324,"src":"1411:20:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3315,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1411:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3318,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1451:7:14","nodeType":"VariableDeclaration","scope":3324,"src":"1435:23:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1435:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3320,"indexed":true,"mutability":"mutable","name":"liquidityProvider","nameLocation":"1478:17:14","nodeType":"VariableDeclaration","scope":3324,"src":"1462:33:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3319,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3322,"indexed":false,"mutability":"mutable","name":"settlePercent","nameLocation":"1506:13:14","nodeType":"VariableDeclaration","scope":3324,"src":"1499:20:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3321,"name":"uint96","nodeType":"ElementaryTypeName","src":"1499:6:14","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"1407:115:14"},"src":"1389:134:14"},{"anonymous":false,"documentation":{"id":3325,"nodeType":"StructuredDocumentation","src":"1526:163:14","text":" @dev Emitted when an aggregator refunds a transaction.\n @param fee The fee deducted from the refund amount.\n @param orderId The ID of the order."},"eventSelector":"0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e","id":3331,"name":"OrderRefunded","nameLocation":"1697:13:14","nodeType":"EventDefinition","parameters":{"id":3330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3327,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"1719:3:14","nodeType":"VariableDeclaration","scope":3331,"src":"1711:11:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3326,"name":"uint256","nodeType":"ElementaryTypeName","src":"1711:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3329,"indexed":true,"mutability":"mutable","name":"orderId","nameLocation":"1740:7:14","nodeType":"VariableDeclaration","scope":3331,"src":"1724:23:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3328,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1724:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1710:38:14"},"src":"1691:58:14"},{"anonymous":false,"documentation":{"id":3332,"nodeType":"StructuredDocumentation","src":"1752:161:14","text":" @dev Emitted when the sender's fee is transferred.\n @param sender The address of the sender.\n @param amount The amount of the fee transferred."},"eventSelector":"44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c2501","id":3338,"name":"SenderFeeTransferred","nameLocation":"1921:20:14","nodeType":"EventDefinition","parameters":{"id":3337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3334,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1958:6:14","nodeType":"VariableDeclaration","scope":3338,"src":"1942:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3333,"name":"address","nodeType":"ElementaryTypeName","src":"1942:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3336,"indexed":true,"mutability":"mutable","name":"amount","nameLocation":"1982:6:14","nodeType":"VariableDeclaration","scope":3338,"src":"1966:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3335,"name":"uint256","nodeType":"ElementaryTypeName","src":"1966:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1941:48:14"},"src":"1915:75:14"},{"canonicalName":"IGatewayV2.TransactionMetadata","id":3349,"members":[{"constant":false,"id":3340,"mutability":"mutable","name":"identifier","nameLocation":"2556:10:14","nodeType":"VariableDeclaration","scope":3349,"src":"2549:17:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3339,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2549:6:14","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3342,"mutability":"mutable","name":"institution","nameLocation":"2577:11:14","nodeType":"VariableDeclaration","scope":3349,"src":"2570:18:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3341,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2570:6:14","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3344,"mutability":"mutable","name":"name","nameLocation":"2599:4:14","nodeType":"VariableDeclaration","scope":3349,"src":"2592:11:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3343,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2592:6:14","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3346,"mutability":"mutable","name":"currency","nameLocation":"2614:8:14","nodeType":"VariableDeclaration","scope":3349,"src":"2607:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":3345,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2607:6:14","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":3348,"mutability":"mutable","name":"liquidityProviderID","nameLocation":"2634:19:14","nodeType":"VariableDeclaration","scope":3349,"src":"2626:27:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3347,"name":"uint256","nodeType":"ElementaryTypeName","src":"2626:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"TransactionMetadata","nameLocation":"2525:19:14","nodeType":"StructDefinition","scope":3442,"src":"2518:139:14","visibility":"public"},{"canonicalName":"IGatewayV2.Order","id":3370,"members":[{"constant":false,"id":3351,"mutability":"mutable","name":"sender","nameLocation":"3279:6:14","nodeType":"VariableDeclaration","scope":3370,"src":"3271:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3350,"name":"address","nodeType":"ElementaryTypeName","src":"3271:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3353,"mutability":"mutable","name":"token","nameLocation":"3297:5:14","nodeType":"VariableDeclaration","scope":3370,"src":"3289:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3352,"name":"address","nodeType":"ElementaryTypeName","src":"3289:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3355,"mutability":"mutable","name":"senderFeeRecipient","nameLocation":"3314:18:14","nodeType":"VariableDeclaration","scope":3370,"src":"3306:26:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3354,"name":"address","nodeType":"ElementaryTypeName","src":"3306:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3357,"mutability":"mutable","name":"senderFee","nameLocation":"3344:9:14","nodeType":"VariableDeclaration","scope":3370,"src":"3336:17:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3356,"name":"uint256","nodeType":"ElementaryTypeName","src":"3336:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3359,"mutability":"mutable","name":"protocolFee","nameLocation":"3365:11:14","nodeType":"VariableDeclaration","scope":3370,"src":"3357:19:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3358,"name":"uint256","nodeType":"ElementaryTypeName","src":"3357:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3361,"mutability":"mutable","name":"isFulfilled","nameLocation":"3385:11:14","nodeType":"VariableDeclaration","scope":3370,"src":"3380:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3360,"name":"bool","nodeType":"ElementaryTypeName","src":"3380:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3363,"mutability":"mutable","name":"isRefunded","nameLocation":"3405:10:14","nodeType":"VariableDeclaration","scope":3370,"src":"3400:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3362,"name":"bool","nodeType":"ElementaryTypeName","src":"3400:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3365,"mutability":"mutable","name":"refundAddress","nameLocation":"3427:13:14","nodeType":"VariableDeclaration","scope":3370,"src":"3419:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3364,"name":"address","nodeType":"ElementaryTypeName","src":"3419:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3367,"mutability":"mutable","name":"currentBPS","nameLocation":"3451:10:14","nodeType":"VariableDeclaration","scope":3370,"src":"3444:17:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3366,"name":"uint96","nodeType":"ElementaryTypeName","src":"3444:6:14","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":3369,"mutability":"mutable","name":"amount","nameLocation":"3473:6:14","nodeType":"VariableDeclaration","scope":3370,"src":"3465:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3368,"name":"uint256","nodeType":"ElementaryTypeName","src":"3465:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Order","nameLocation":"3261:5:14","nodeType":"StructDefinition","scope":3442,"src":"3254:229:14","visibility":"public"},{"documentation":{"id":3371,"nodeType":"StructuredDocumentation","src":"3678:1028:14","text":" @notice Locks the sender's amount of token into Gateway.\n @dev Requirements:\n - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\n - `_token` must be an acceptable token. See {isTokenSupported}.\n - `amount` must be greater than minimum.\n - `_refundAddress` refund address must not be zero address.\n @param _token The address of the token.\n @param _amount The amount in the decimal of `_token` to be locked.\n @param _institutionCode The institution code of the sender.\n @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\n @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\n @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\n @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\n @param messageHash The hash of the message.\n @return _orderId The ID of the order."},"functionSelector":"d12ff20a","id":3392,"implemented":false,"kind":"function","modifiers":[],"name":"createOrder","nameLocation":"4717:11:14","nodeType":"FunctionDefinition","parameters":{"id":3388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3373,"mutability":"mutable","name":"_token","nameLocation":"4740:6:14","nodeType":"VariableDeclaration","scope":3392,"src":"4732:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3372,"name":"address","nodeType":"ElementaryTypeName","src":"4732:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3375,"mutability":"mutable","name":"_amount","nameLocation":"4758:7:14","nodeType":"VariableDeclaration","scope":3392,"src":"4750:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3374,"name":"uint256","nodeType":"ElementaryTypeName","src":"4750:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3377,"mutability":"mutable","name":"_institutionCode","nameLocation":"4777:16:14","nodeType":"VariableDeclaration","scope":3392,"src":"4769:24:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3376,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4769:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3379,"mutability":"mutable","name":"_rate","nameLocation":"4804:5:14","nodeType":"VariableDeclaration","scope":3392,"src":"4797:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3378,"name":"uint96","nodeType":"ElementaryTypeName","src":"4797:6:14","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":3381,"mutability":"mutable","name":"_senderFeeRecipient","nameLocation":"4821:19:14","nodeType":"VariableDeclaration","scope":3392,"src":"4813:27:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3380,"name":"address","nodeType":"ElementaryTypeName","src":"4813:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3383,"mutability":"mutable","name":"_senderFee","nameLocation":"4852:10:14","nodeType":"VariableDeclaration","scope":3392,"src":"4844:18:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3382,"name":"uint256","nodeType":"ElementaryTypeName","src":"4844:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3385,"mutability":"mutable","name":"_refundAddress","nameLocation":"4874:14:14","nodeType":"VariableDeclaration","scope":3392,"src":"4866:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3384,"name":"address","nodeType":"ElementaryTypeName","src":"4866:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3387,"mutability":"mutable","name":"messageHash","nameLocation":"4908:11:14","nodeType":"VariableDeclaration","scope":3392,"src":"4892:27:14","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":3386,"name":"string","nodeType":"ElementaryTypeName","src":"4892:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4728:194:14"},"returnParameters":{"id":3391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3390,"mutability":"mutable","name":"_orderId","nameLocation":"4949:8:14","nodeType":"VariableDeclaration","scope":3392,"src":"4941:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3389,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4941:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4940:18:14"},"scope":3442,"src":"4708:251:14","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3393,"nodeType":"StructuredDocumentation","src":"4962:366:14","text":" @notice Settles a transaction and distributes rewards accordingly.\n @param _splitOrderId The ID of the split order.\n @param _orderId The ID of the transaction.\n @param _liquidityProvider The address of the liquidity provider.\n @param _settlePercent The rate at which the transaction is settled.\n @return bool the settlement is successful."},"functionSelector":"f22ee704","id":3406,"implemented":false,"kind":"function","modifiers":[],"name":"settle","nameLocation":"5339:6:14","nodeType":"FunctionDefinition","parameters":{"id":3402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3395,"mutability":"mutable","name":"_splitOrderId","nameLocation":"5357:13:14","nodeType":"VariableDeclaration","scope":3406,"src":"5349:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3394,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5349:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3397,"mutability":"mutable","name":"_orderId","nameLocation":"5382:8:14","nodeType":"VariableDeclaration","scope":3406,"src":"5374:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3396,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5374:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3399,"mutability":"mutable","name":"_liquidityProvider","nameLocation":"5402:18:14","nodeType":"VariableDeclaration","scope":3406,"src":"5394:26:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3398,"name":"address","nodeType":"ElementaryTypeName","src":"5394:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3401,"mutability":"mutable","name":"_settlePercent","nameLocation":"5431:14:14","nodeType":"VariableDeclaration","scope":3406,"src":"5424:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3400,"name":"uint64","nodeType":"ElementaryTypeName","src":"5424:6:14","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5345:103:14"},"returnParameters":{"id":3405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3404,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3406,"src":"5467:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3403,"name":"bool","nodeType":"ElementaryTypeName","src":"5467:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5466:6:14"},"scope":3442,"src":"5330:143:14","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3407,"nodeType":"StructuredDocumentation","src":"5476:299:14","text":" @notice Refunds to the specified refundable address.\n @dev Requirements:\n - Only aggregators can call this function.\n @param _fee The amount to be deducted from the amount to be refunded.\n @param _orderId The ID of the transaction.\n @return bool the refund is successful."},"functionSelector":"71eedb88","id":3416,"implemented":false,"kind":"function","modifiers":[],"name":"refund","nameLocation":"5786:6:14","nodeType":"FunctionDefinition","parameters":{"id":3412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3409,"mutability":"mutable","name":"_fee","nameLocation":"5801:4:14","nodeType":"VariableDeclaration","scope":3416,"src":"5793:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3408,"name":"uint256","nodeType":"ElementaryTypeName","src":"5793:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3411,"mutability":"mutable","name":"_orderId","nameLocation":"5815:8:14","nodeType":"VariableDeclaration","scope":3416,"src":"5807:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5807:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5792:32:14"},"returnParameters":{"id":3415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3416,"src":"5843:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3413,"name":"bool","nodeType":"ElementaryTypeName","src":"5843:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5842:6:14"},"scope":3442,"src":"5777:72:14","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3417,"nodeType":"StructuredDocumentation","src":"5852:157:14","text":" @notice Checks if a token is supported by Gateway.\n @param _token The address of the token to check.\n @return bool the token is supported."},"functionSelector":"75151b63","id":3424,"implemented":false,"kind":"function","modifiers":[],"name":"isTokenSupported","nameLocation":"6020:16:14","nodeType":"FunctionDefinition","parameters":{"id":3420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3419,"mutability":"mutable","name":"_token","nameLocation":"6045:6:14","nodeType":"VariableDeclaration","scope":3424,"src":"6037:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3418,"name":"address","nodeType":"ElementaryTypeName","src":"6037:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6036:16:14"},"returnParameters":{"id":3423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3422,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3424,"src":"6076:4:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3421,"name":"bool","nodeType":"ElementaryTypeName","src":"6076:4:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6075:6:14"},"scope":3442,"src":"6011:71:14","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3425,"nodeType":"StructuredDocumentation","src":"6085:128:14","text":" @notice Gets the details of an order.\n @param _orderId The ID of the order.\n @return Order The order details."},"functionSelector":"768c6ec0","id":3433,"implemented":false,"kind":"function","modifiers":[],"name":"getOrderInfo","nameLocation":"6224:12:14","nodeType":"FunctionDefinition","parameters":{"id":3428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3427,"mutability":"mutable","name":"_orderId","nameLocation":"6245:8:14","nodeType":"VariableDeclaration","scope":3433,"src":"6237:16:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3426,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6237:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6236:18:14"},"returnParameters":{"id":3432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3431,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3433,"src":"6278:12:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_memory_ptr","typeString":"struct IGatewayV2.Order"},"typeName":{"id":3430,"nodeType":"UserDefinedTypeName","pathNode":{"id":3429,"name":"Order","nameLocations":["6278:5:14"],"nodeType":"IdentifierPath","referencedDeclaration":3370,"src":"6278:5:14"},"referencedDeclaration":3370,"src":"6278:5:14","typeDescriptions":{"typeIdentifier":"t_struct$_Order_$3370_storage_ptr","typeString":"struct IGatewayV2.Order"}},"visibility":"internal"}],"src":"6277:14:14"},"scope":3442,"src":"6215:77:14","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3434,"nodeType":"StructuredDocumentation","src":"6295:154:14","text":" @notice Gets the fee details of Gateway.\n @return protocolReward The protocol reward amount.\n @return max_bps The maximum basis points."},"functionSelector":"b810c636","id":3441,"implemented":false,"kind":"function","modifiers":[],"name":"getFeeDetails","nameLocation":"6460:13:14","nodeType":"FunctionDefinition","parameters":{"id":3435,"nodeType":"ParameterList","parameters":[],"src":"6473:2:14"},"returnParameters":{"id":3440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3437,"mutability":"mutable","name":"protocolReward","nameLocation":"6506:14:14","nodeType":"VariableDeclaration","scope":3441,"src":"6499:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3436,"name":"uint64","nodeType":"ElementaryTypeName","src":"6499:6:14","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":3439,"mutability":"mutable","name":"max_bps","nameLocation":"6530:7:14","nodeType":"VariableDeclaration","scope":3441,"src":"6522:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3438,"name":"uint256","nodeType":"ElementaryTypeName","src":"6522:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6498:40:14"},"scope":3442,"src":"6451:88:14","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3443,"src":"274:6268:14","usedErrors":[]}],"src":"39:6504:14"},"id":14},"contracts/libraries/SharedStructs.sol":{"ast":{"absolutePath":"contracts/libraries/SharedStructs.sol","exportedSymbols":{"SharedStructs":[3455]},"id":3456,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":3444,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"39:24:15"},{"abstract":false,"baseContracts":[],"canonicalName":"SharedStructs","contractDependencies":[],"contractKind":"library","fullyImplemented":true,"id":3455,"linearizedBaseContracts":[3455],"name":"SharedStructs","nameLocation":"73:13:15","nodeType":"ContractDefinition","nodes":[{"canonicalName":"SharedStructs.Institution","id":3449,"members":[{"constant":false,"id":3446,"mutability":"mutable","name":"code","nameLocation":"290:4:15","nodeType":"VariableDeclaration","scope":3449,"src":"282:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3445,"name":"bytes32","nodeType":"ElementaryTypeName","src":"282:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3448,"mutability":"mutable","name":"name","nameLocation":"312:4:15","nodeType":"VariableDeclaration","scope":3449,"src":"304:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3447,"name":"bytes32","nodeType":"ElementaryTypeName","src":"304:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Institution","nameLocation":"260:11:15","nodeType":"StructDefinition","scope":3455,"src":"253:70:15","visibility":"public"},{"canonicalName":"SharedStructs.InstitutionByCode","id":3454,"members":[{"constant":false,"id":3451,"mutability":"mutable","name":"name","nameLocation":"548:4:15","nodeType":"VariableDeclaration","scope":3454,"src":"540:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3450,"name":"bytes32","nodeType":"ElementaryTypeName","src":"540:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3453,"mutability":"mutable","name":"currency","nameLocation":"570:8:15","nodeType":"VariableDeclaration","scope":3454,"src":"562:16:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3452,"name":"bytes32","nodeType":"ElementaryTypeName","src":"562:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"InstitutionByCode","nameLocation":"512:17:15","nodeType":"StructDefinition","scope":3455,"src":"505:80:15","visibility":"public"}],"scope":3456,"src":"65:522:15","usedErrors":[]}],"src":"39:548:15"},"id":15},"contracts/mocks/MockUSDC.sol":{"ast":{"absolutePath":"contracts/mocks/MockUSDC.sol","exportedSymbols":{"ERC20":[1504],"MockUSDT":[3525]},"id":3526,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":3457,"literals":["solidity","^","0.8",".18"],"nodeType":"PragmaDirective","src":"38:24:16"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":3459,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3526,"sourceUnit":1505,"src":"64:68:16","symbolAliases":[{"foreign":{"id":3458,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1504,"src":"72:5:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3461,"name":"ERC20","nameLocations":["183:5:16"],"nodeType":"IdentifierPath","referencedDeclaration":1504,"src":"183:5:16"},"id":3462,"nodeType":"InheritanceSpecifier","src":"183:5:16"}],"canonicalName":"MockUSDT","contractDependencies":[],"contractKind":"contract","documentation":{"id":3460,"nodeType":"StructuredDocumentation","src":"134:28:16","text":"@dev Mock mintable USDC"},"fullyImplemented":true,"id":3525,"linearizedBaseContracts":[3525,1504,1607,1582,1637],"name":"MockUSDT","nameLocation":"171:8:16","nodeType":"ContractDefinition","nodes":[{"body":{"id":3475,"nodeType":"Block","src":"236:48:16","statements":[{"expression":{"arguments":[{"expression":{"id":3470,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"252:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"256:6:16","memberName":"sender","nodeType":"MemberAccess","src":"252:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"315f3030305f303030453138","id":3472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"264:12:16","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000000000_by_1","typeString":"int_const 1000000000000000000000000"},"value":"1_000_000E18"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_1000000000000000000000000_by_1","typeString":"int_const 1000000000000000000000000"}],"id":3469,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1321,"src":"246:5:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"246:31:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3474,"nodeType":"ExpressionStatement","src":"246:31:16"}]},"id":3476,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"4d6f636b55445343","id":3465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"215:10:16","typeDescriptions":{"typeIdentifier":"t_stringliteral_94e1f9c6f37f68c7fbe9a402bd5dbcd03f36019e7e48bd72249c8c505bfa86d6","typeString":"literal_string \"MockUDSC\""},"value":"MockUDSC"},{"hexValue":"4d55534443","id":3466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"227:7:16","typeDescriptions":{"typeIdentifier":"t_stringliteral_0b881b1a06d818eb813952573bf9829bb21a81b032d939e3244337841a6fff45","typeString":"literal_string \"MUSDC\""},"value":"MUSDC"}],"id":3467,"kind":"baseConstructorSpecifier","modifierName":{"id":3464,"name":"ERC20","nameLocations":["209:5:16"],"nodeType":"IdentifierPath","referencedDeclaration":1504,"src":"209:5:16"},"nodeType":"ModifierInvocation","src":"209:26:16"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3463,"nodeType":"ParameterList","parameters":[],"src":"206:2:16"},"returnParameters":{"id":3468,"nodeType":"ParameterList","parameters":[],"src":"236:0:16"},"scope":3525,"src":"195:89:16","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":3487,"nodeType":"Block","src":"330:43:16","statements":[{"expression":{"arguments":[{"expression":{"id":3482,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"346:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"350:6:16","memberName":"sender","nodeType":"MemberAccess","src":"346:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3484,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3478,"src":"358:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3481,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1321,"src":"340:5:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"340:26:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3486,"nodeType":"ExpressionStatement","src":"340:26:16"}]},"functionSelector":"a0712d68","id":3488,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"299:4:16","nodeType":"FunctionDefinition","parameters":{"id":3479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3478,"mutability":"mutable","name":"_amount","nameLocation":"312:7:16","nodeType":"VariableDeclaration","scope":3488,"src":"304:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3477,"name":"uint256","nodeType":"ElementaryTypeName","src":"304:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"303:17:16"},"returnParameters":{"id":3480,"nodeType":"ParameterList","parameters":[],"src":"330:0:16"},"scope":3525,"src":"290:83:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3499,"nodeType":"Block","src":"419:43:16","statements":[{"expression":{"arguments":[{"expression":{"id":3494,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"435:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"439:6:16","memberName":"sender","nodeType":"MemberAccess","src":"435:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3496,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3490,"src":"447:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3493,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1393,"src":"429:5:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"429:26:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3498,"nodeType":"ExpressionStatement","src":"429:26:16"}]},"functionSelector":"42966c68","id":3500,"implemented":true,"kind":"function","modifiers":[],"name":"burn","nameLocation":"388:4:16","nodeType":"FunctionDefinition","parameters":{"id":3491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3490,"mutability":"mutable","name":"_amount","nameLocation":"401:7:16","nodeType":"VariableDeclaration","scope":3500,"src":"393:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3489,"name":"uint256","nodeType":"ElementaryTypeName","src":"393:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"392:17:16"},"returnParameters":{"id":3492,"nodeType":"ParameterList","parameters":[],"src":"419:0:16"},"scope":3525,"src":"379:83:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3523,"nodeType":"Block","src":"496:160:16","statements":[{"assignments":[3504],"declarations":[{"constant":false,"id":3504,"mutability":"mutable","name":"_balanceOf","nameLocation":"514:10:16","nodeType":"VariableDeclaration","scope":3523,"src":"506:18:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3503,"name":"uint256","nodeType":"ElementaryTypeName","src":"506:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3509,"initialValue":{"arguments":[{"expression":{"id":3506,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"537:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"541:6:16","memberName":"sender","nodeType":"MemberAccess","src":"537:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3505,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1016,"src":"527:9:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":3508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"527:21:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"506:42:16"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3511,"name":"_balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3504,"src":"566:10:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"579:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"566:14:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d6f636b555344543a204e6f7468696e6720746f206275726e","id":3514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"582:27:16","typeDescriptions":{"typeIdentifier":"t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","typeString":"literal_string \"MockUSDT: Nothing to burn\""},"value":"MockUSDT: Nothing to burn"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","typeString":"literal_string \"MockUSDT: Nothing to burn\""}],"id":3510,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"558:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"558:52:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3516,"nodeType":"ExpressionStatement","src":"558:52:16"},{"expression":{"arguments":[{"expression":{"id":3518,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"626:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"630:6:16","memberName":"sender","nodeType":"MemberAccess","src":"626:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3520,"name":"_balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3504,"src":"638:10:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3517,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1393,"src":"620:5:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"620:29:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3522,"nodeType":"ExpressionStatement","src":"620:29:16"}]},"functionSelector":"9975038c","id":3524,"implemented":true,"kind":"function","modifiers":[],"name":"burnAll","nameLocation":"477:7:16","nodeType":"FunctionDefinition","parameters":{"id":3501,"nodeType":"ParameterList","parameters":[],"src":"484:2:16"},"returnParameters":{"id":3502,"nodeType":"ParameterList","parameters":[],"src":"496:0:16"},"scope":3525,"src":"468:188:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3526,"src":"162:496:16","usedErrors":[]}],"src":"38:621:16"},"id":16}},"contracts":{"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol":{"Ownable2StepUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Contract module which provides access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"owner()":{"details":"Returns the address of the current owner."},"pendingOwner()":{"details":"Returns the address of the pending owner."},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."},"transferOwnership(address)":{"details":"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"acceptOwnership()":"79ba5097","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":\"Ownable2StepUpgradeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership} and {acceptOwnership}.\\n *\\n * This module is used through inheritance. It will make available all functions\\n * from parent (Ownable).\\n */\\nabstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol:Ownable2StepUpgradeable","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol":{"OwnableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"owner()":{"details":"Returns the address of the current owner."},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."},"transferOwnership(address)":{"details":"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":\"OwnableUpgradeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol:OwnableUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"}],"devdoc":{"custom:oz-upgrades-unsafe-allow":"constructor constructor() { _disableInitializers(); } ``` ====","details":"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable { function initialize() initializer public { __ERC20_init(\"MyToken\", \"MTK\"); } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { function initializeV2() reinitializer(2) public { __ERC20Permit_init(\"MyToken\"); } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{},"stateVariables":{"_initialized":{"custom:oz-retyped-from":"bool","details":"Indicates that the contract has been initialized."},"_initializing":{"details":"Indicates that the contract is in the process of being initialized."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() { _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable { function initialize() initializer public { __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\"); } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { function initializeV2() reinitializer(2) public { __ERC20Permit_init(\\\"MyToken\\\"); } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"_initialized\":{\"custom:oz-retyped-from\":\"bool\",\"details\":\"Indicates that the contract has been initialized.\"},\"_initializing\":{\"details\":\"Indicates that the contract is in the process of being initialized.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol:Initializable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol:Initializable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"}],"types":{"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol":{"PausableUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"devdoc":{"details":"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"paused()":{"details":"Returns true if the contract is paused, and false otherwise."}},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"paused()":"5c975abb"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":\"PausableUpgradeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":430,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"_paused","offset":0,"slot":"51","type":"t_bool"},{"astId":535,"contract":"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol:PausableUpgradeable","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"}],"types":{"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol":{"AddressUpgradeable":{"abi":[],"devdoc":{"details":"Collection of functions related to the address type","kind":"dev","methods":{},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220df70283ff728a1a88debad8b56cd6b31b858a143aff601e8f42a16699317e70d64736f6c63430008120033","opcodes":"PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF PUSH17 0x283FF728A1A88DEBAD8B56CD6B31B858A1 NUMBER 0xAF 0xF6 ADD 0xE8 DELEGATECALL 0x2A AND PUSH10 0x9317E70D64736F6C6343 STOP ADDMOD SLT STOP CALLER ","sourceMap":"194:9180:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220df70283ff728a1a88debad8b56cd6b31b858a143aff601e8f42a16699317e70d64736f6c63430008120033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF PUSH17 0x283FF728A1A88DEBAD8B56CD6B31B858A1 NUMBER 0xAF 0xF6 ADD 0xE8 DELEGATECALL 0x2A AND PUSH10 0x9317E70D64736F6C6343 STOP ADDMOD SLT STOP CALLER ","sourceMap":"194:9180:4:-:0;;;;;;;;"},"gasEstimates":{"creation":{"codeDepositCost":"17200","executionCost":"97","totalCost":"17297"},"internal":{"_revert(bytes memory,string memory)":"infinite","functionCall(address,bytes memory)":"infinite","functionCall(address,bytes memory,string memory)":"infinite","functionCallWithValue(address,bytes memory,uint256)":"infinite","functionCallWithValue(address,bytes memory,uint256,string memory)":"infinite","functionDelegateCall(address,bytes memory)":"infinite","functionDelegateCall(address,bytes memory,string memory)":"infinite","functionStaticCall(address,bytes memory)":"infinite","functionStaticCall(address,bytes memory,string memory)":"infinite","isContract(address)":"infinite","sendValue(address payable,uint256)":"infinite","verifyCallResult(bool,bytes memory,string memory)":"infinite","verifyCallResultFromTarget(address,bool,bytes memory,string memory)":"infinite"}},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":\"AddressUpgradeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"}],"devdoc":{"details":"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.","events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{},"stateVariables":{"__gap":{"details":"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"}],"types":{"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"See {IERC20-allowance}."},"approve(address,uint256)":{"details":"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."},"balanceOf(address)":{"details":"See {IERC20-balanceOf}."},"constructor":{"details":"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction."},"decimals()":{"details":"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."},"decreaseAllowance(address,uint256)":{"details":"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."},"increaseAllowance(address,uint256)":{"details":"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."},"name()":{"details":"Returns the name of the token."},"symbol()":{"details":"Returns the symbol of the token, usually a shorter version of the name."},"totalSupply()":{"details":"See {IERC20-totalSupply}."},"transfer(address,uint256)":{"details":"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."},"transferFrom(address,address,uint256)":{"details":"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."}},"version":1},"evm":{"bytecode":{"functionDebugData":{"@_962":{"entryPoint":null,"id":962,"parameterSlots":2,"returnSlots":0},"abi_decode_available_length_t_string_memory_ptr_fromMemory":{"entryPoint":376,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_t_string_memory_ptr_fromMemory":{"entryPoint":451,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory":{"entryPoint":502,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":247,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_unbounded":{"entryPoint":99,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_t_string_memory_ptr":{"entryPoint":278,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_t_string_storage":{"entryPoint":746,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":635,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_t_string_storage":{"entryPoint":1067,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_t_uint256":{"entryPoint":882,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_t_bytes1":{"entryPoint":1028,"id":null,"parameterSlots":2,"returnSlots":0},"convert_t_uint256_to_t_uint256":{"entryPoint":902,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":1222,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":332,"id":null,"parameterSlots":3,"returnSlots":0},"divide_by_32_ceil":{"entryPoint":767,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":693,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":1192,"id":null,"parameterSlots":2,"returnSlots":1},"finalize_allocation":{"entryPoint":193,"id":null,"parameterSlots":2,"returnSlots":0},"identity":{"entryPoint":892,"id":null,"parameterSlots":1,"returnSlots":1},"mask_bytes_dynamic":{"entryPoint":1160,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x22":{"entryPoint":646,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":146,"id":null,"parameterSlots":0,"returnSlots":0},"prepare_store_t_uint256":{"entryPoint":942,"id":null,"parameterSlots":1,"returnSlots":1},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":119,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae":{"entryPoint":124,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":114,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":109,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":129,"id":null,"parameterSlots":1,"returnSlots":1},"shift_left_dynamic":{"entryPoint":783,"id":null,"parameterSlots":2,"returnSlots":1},"shift_right_unsigned_dynamic":{"entryPoint":1147,"id":null,"parameterSlots":2,"returnSlots":1},"storage_set_to_zero_t_uint256":{"entryPoint":1000,"id":null,"parameterSlots":2,"returnSlots":0},"update_byte_slice_dynamic32":{"entryPoint":796,"id":null,"parameterSlots":3,"returnSlots":1},"update_storage_value_t_uint256_to_t_uint256":{"entryPoint":952,"id":null,"parameterSlots":3,"returnSlots":0},"zero_value_for_split_t_uint256":{"entryPoint":995,"id":null,"parameterSlots":0,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:8574:17","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:17","statements":[{"nodeType":"YulAssignment","src":"57:19:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:17","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:17"},"nodeType":"YulFunctionCall","src":"67:9:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:17"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:17","type":""}],"src":"7:75:17"},{"body":{"nodeType":"YulBlock","src":"177:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:17"},"nodeType":"YulFunctionCall","src":"187:12:17"},"nodeType":"YulExpressionStatement","src":"187:12:17"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:17"},{"body":{"nodeType":"YulBlock","src":"300:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:17"},"nodeType":"YulFunctionCall","src":"310:12:17"},"nodeType":"YulExpressionStatement","src":"310:12:17"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:17"},{"body":{"nodeType":"YulBlock","src":"423:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"440:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"443:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"433:6:17"},"nodeType":"YulFunctionCall","src":"433:12:17"},"nodeType":"YulExpressionStatement","src":"433:12:17"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"334:117:17"},{"body":{"nodeType":"YulBlock","src":"546:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"563:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"566:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"556:6:17"},"nodeType":"YulFunctionCall","src":"556:12:17"},"nodeType":"YulExpressionStatement","src":"556:12:17"}]},"name":"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae","nodeType":"YulFunctionDefinition","src":"457:117:17"},{"body":{"nodeType":"YulBlock","src":"628:54:17","statements":[{"nodeType":"YulAssignment","src":"638:38:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"656:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"663:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"652:3:17"},"nodeType":"YulFunctionCall","src":"652:14:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"672:2:17","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"668:3:17"},"nodeType":"YulFunctionCall","src":"668:7:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"648:3:17"},"nodeType":"YulFunctionCall","src":"648:28:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"638:6:17"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"611:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"621:6:17","type":""}],"src":"580:102:17"},{"body":{"nodeType":"YulBlock","src":"716:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"733:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"736:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"726:6:17"},"nodeType":"YulFunctionCall","src":"726:88:17"},"nodeType":"YulExpressionStatement","src":"726:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"830:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"833:4:17","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"823:6:17"},"nodeType":"YulFunctionCall","src":"823:15:17"},"nodeType":"YulExpressionStatement","src":"823:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"854:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"857:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"847:6:17"},"nodeType":"YulFunctionCall","src":"847:15:17"},"nodeType":"YulExpressionStatement","src":"847:15:17"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"688:180:17"},{"body":{"nodeType":"YulBlock","src":"917:238:17","statements":[{"nodeType":"YulVariableDeclaration","src":"927:58:17","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"949:6:17"},{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"979:4:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"957:21:17"},"nodeType":"YulFunctionCall","src":"957:27:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"945:3:17"},"nodeType":"YulFunctionCall","src":"945:40:17"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"931:10:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"1096:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1098:16:17"},"nodeType":"YulFunctionCall","src":"1098:18:17"},"nodeType":"YulExpressionStatement","src":"1098:18:17"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1039:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"1051:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1036:2:17"},"nodeType":"YulFunctionCall","src":"1036:34:17"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1075:10:17"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1087:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1072:2:17"},"nodeType":"YulFunctionCall","src":"1072:22:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1033:2:17"},"nodeType":"YulFunctionCall","src":"1033:62:17"},"nodeType":"YulIf","src":"1030:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1134:2:17","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1138:10:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1127:6:17"},"nodeType":"YulFunctionCall","src":"1127:22:17"},"nodeType":"YulExpressionStatement","src":"1127:22:17"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"903:6:17","type":""},{"name":"size","nodeType":"YulTypedName","src":"911:4:17","type":""}],"src":"874:281:17"},{"body":{"nodeType":"YulBlock","src":"1202:88:17","statements":[{"nodeType":"YulAssignment","src":"1212:30:17","value":{"arguments":[],"functionName":{"name":"allocate_unbounded","nodeType":"YulIdentifier","src":"1222:18:17"},"nodeType":"YulFunctionCall","src":"1222:20:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1212:6:17"}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1271:6:17"},{"name":"size","nodeType":"YulIdentifier","src":"1279:4:17"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"1251:19:17"},"nodeType":"YulFunctionCall","src":"1251:33:17"},"nodeType":"YulExpressionStatement","src":"1251:33:17"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"1186:4:17","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1195:6:17","type":""}],"src":"1161:129:17"},{"body":{"nodeType":"YulBlock","src":"1363:241:17","statements":[{"body":{"nodeType":"YulBlock","src":"1468:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1470:16:17"},"nodeType":"YulFunctionCall","src":"1470:18:17"},"nodeType":"YulExpressionStatement","src":"1470:18:17"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1440:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"1448:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1437:2:17"},"nodeType":"YulFunctionCall","src":"1437:30:17"},"nodeType":"YulIf","src":"1434:56:17"},{"nodeType":"YulAssignment","src":"1500:37:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1530:6:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"1508:21:17"},"nodeType":"YulFunctionCall","src":"1508:29:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1500:4:17"}]},{"nodeType":"YulAssignment","src":"1574:23:17","value":{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"1586:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"1592:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1582:3:17"},"nodeType":"YulFunctionCall","src":"1582:15:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1574:4:17"}]}]},"name":"array_allocation_size_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"1347:6:17","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"1358:4:17","type":""}],"src":"1296:308:17"},{"body":{"nodeType":"YulBlock","src":"1672:184:17","statements":[{"nodeType":"YulVariableDeclaration","src":"1682:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"1691:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"1686:1:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"1751:63:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"1776:3:17"},{"name":"i","nodeType":"YulIdentifier","src":"1781:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1772:3:17"},"nodeType":"YulFunctionCall","src":"1772:11:17"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"1795:3:17"},{"name":"i","nodeType":"YulIdentifier","src":"1800:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1791:3:17"},"nodeType":"YulFunctionCall","src":"1791:11:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1785:5:17"},"nodeType":"YulFunctionCall","src":"1785:18:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1765:6:17"},"nodeType":"YulFunctionCall","src":"1765:39:17"},"nodeType":"YulExpressionStatement","src":"1765:39:17"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1712:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"1715:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1709:2:17"},"nodeType":"YulFunctionCall","src":"1709:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"1723:19:17","statements":[{"nodeType":"YulAssignment","src":"1725:15:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"1734:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"1737:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1730:3:17"},"nodeType":"YulFunctionCall","src":"1730:10:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"1725:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"1705:3:17","statements":[]},"src":"1701:113:17"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"1834:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"1839:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1830:3:17"},"nodeType":"YulFunctionCall","src":"1830:16:17"},{"kind":"number","nodeType":"YulLiteral","src":"1848:1:17","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1823:6:17"},"nodeType":"YulFunctionCall","src":"1823:27:17"},"nodeType":"YulExpressionStatement","src":"1823:27:17"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"1654:3:17","type":""},{"name":"dst","nodeType":"YulTypedName","src":"1659:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"1664:6:17","type":""}],"src":"1610:246:17"},{"body":{"nodeType":"YulBlock","src":"1957:339:17","statements":[{"nodeType":"YulAssignment","src":"1967:75:17","value":{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2034:6:17"}],"functionName":{"name":"array_allocation_size_t_string_memory_ptr","nodeType":"YulIdentifier","src":"1992:41:17"},"nodeType":"YulFunctionCall","src":"1992:49:17"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"1976:15:17"},"nodeType":"YulFunctionCall","src":"1976:66:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"1967:5:17"}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"2058:5:17"},{"name":"length","nodeType":"YulIdentifier","src":"2065:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2051:6:17"},"nodeType":"YulFunctionCall","src":"2051:21:17"},"nodeType":"YulExpressionStatement","src":"2051:21:17"},{"nodeType":"YulVariableDeclaration","src":"2081:27:17","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"2096:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2103:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2092:3:17"},"nodeType":"YulFunctionCall","src":"2092:16:17"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"2085:3:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"2146:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae","nodeType":"YulIdentifier","src":"2148:77:17"},"nodeType":"YulFunctionCall","src":"2148:79:17"},"nodeType":"YulExpressionStatement","src":"2148:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2127:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"2132:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2123:3:17"},"nodeType":"YulFunctionCall","src":"2123:16:17"},{"name":"end","nodeType":"YulIdentifier","src":"2141:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2120:2:17"},"nodeType":"YulFunctionCall","src":"2120:25:17"},"nodeType":"YulIf","src":"2117:112:17"},{"expression":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2273:3:17"},{"name":"dst","nodeType":"YulIdentifier","src":"2278:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"2283:6:17"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"2238:34:17"},"nodeType":"YulFunctionCall","src":"2238:52:17"},"nodeType":"YulExpressionStatement","src":"2238:52:17"}]},"name":"abi_decode_available_length_t_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"1930:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"1935:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"1943:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"1951:5:17","type":""}],"src":"1862:434:17"},{"body":{"nodeType":"YulBlock","src":"2389:282:17","statements":[{"body":{"nodeType":"YulBlock","src":"2438:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"2440:77:17"},"nodeType":"YulFunctionCall","src":"2440:79:17"},"nodeType":"YulExpressionStatement","src":"2440:79:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2417:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"2425:4:17","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2413:3:17"},"nodeType":"YulFunctionCall","src":"2413:17:17"},{"name":"end","nodeType":"YulIdentifier","src":"2432:3:17"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2409:3:17"},"nodeType":"YulFunctionCall","src":"2409:27:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2402:6:17"},"nodeType":"YulFunctionCall","src":"2402:35:17"},"nodeType":"YulIf","src":"2399:122:17"},{"nodeType":"YulVariableDeclaration","src":"2530:27:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2550:6:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2544:5:17"},"nodeType":"YulFunctionCall","src":"2544:13:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2534:6:17","type":""}]},{"nodeType":"YulAssignment","src":"2566:99:17","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2638:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"2646:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2634:3:17"},"nodeType":"YulFunctionCall","src":"2634:17:17"},{"name":"length","nodeType":"YulIdentifier","src":"2653:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"2661:3:17"}],"functionName":{"name":"abi_decode_available_length_t_string_memory_ptr_fromMemory","nodeType":"YulIdentifier","src":"2575:58:17"},"nodeType":"YulFunctionCall","src":"2575:90:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"2566:5:17"}]}]},"name":"abi_decode_t_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2367:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2375:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"2383:5:17","type":""}],"src":"2316:355:17"},{"body":{"nodeType":"YulBlock","src":"2791:739:17","statements":[{"body":{"nodeType":"YulBlock","src":"2837:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2839:77:17"},"nodeType":"YulFunctionCall","src":"2839:79:17"},"nodeType":"YulExpressionStatement","src":"2839:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2812:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"2821:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2808:3:17"},"nodeType":"YulFunctionCall","src":"2808:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"2833:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2804:3:17"},"nodeType":"YulFunctionCall","src":"2804:32:17"},"nodeType":"YulIf","src":"2801:119:17"},{"nodeType":"YulBlock","src":"2930:291:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2945:38:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2969:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"2980:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2965:3:17"},"nodeType":"YulFunctionCall","src":"2965:17:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2959:5:17"},"nodeType":"YulFunctionCall","src":"2959:24:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2949:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3030:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"3032:77:17"},"nodeType":"YulFunctionCall","src":"3032:79:17"},"nodeType":"YulExpressionStatement","src":"3032:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3002:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"3010:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2999:2:17"},"nodeType":"YulFunctionCall","src":"2999:30:17"},"nodeType":"YulIf","src":"2996:117:17"},{"nodeType":"YulAssignment","src":"3127:84:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3183:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"3194:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3179:3:17"},"nodeType":"YulFunctionCall","src":"3179:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3203:7:17"}],"functionName":{"name":"abi_decode_t_string_memory_ptr_fromMemory","nodeType":"YulIdentifier","src":"3137:41:17"},"nodeType":"YulFunctionCall","src":"3137:74:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"3127:6:17"}]}]},{"nodeType":"YulBlock","src":"3231:292:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3246:39:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3270:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3281:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3266:3:17"},"nodeType":"YulFunctionCall","src":"3266:18:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3260:5:17"},"nodeType":"YulFunctionCall","src":"3260:25:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"3250:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3332:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"3334:77:17"},"nodeType":"YulFunctionCall","src":"3334:79:17"},"nodeType":"YulExpressionStatement","src":"3334:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3304:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"3312:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3301:2:17"},"nodeType":"YulFunctionCall","src":"3301:30:17"},"nodeType":"YulIf","src":"3298:117:17"},{"nodeType":"YulAssignment","src":"3429:84:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3485:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"3496:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3481:3:17"},"nodeType":"YulFunctionCall","src":"3481:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"3505:7:17"}],"functionName":{"name":"abi_decode_t_string_memory_ptr_fromMemory","nodeType":"YulIdentifier","src":"3439:41:17"},"nodeType":"YulFunctionCall","src":"3439:74:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"3429:6:17"}]}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2753:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2764:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2776:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2784:6:17","type":""}],"src":"2677:853:17"},{"body":{"nodeType":"YulBlock","src":"3595:40:17","statements":[{"nodeType":"YulAssignment","src":"3606:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3622:5:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3616:5:17"},"nodeType":"YulFunctionCall","src":"3616:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"3606:6:17"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3578:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"3588:6:17","type":""}],"src":"3536:99:17"},{"body":{"nodeType":"YulBlock","src":"3669:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3686:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3689:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3679:6:17"},"nodeType":"YulFunctionCall","src":"3679:88:17"},"nodeType":"YulExpressionStatement","src":"3679:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3783:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3786:4:17","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3776:6:17"},"nodeType":"YulFunctionCall","src":"3776:15:17"},"nodeType":"YulExpressionStatement","src":"3776:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3807:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3810:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3800:6:17"},"nodeType":"YulFunctionCall","src":"3800:15:17"},"nodeType":"YulExpressionStatement","src":"3800:15:17"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"3641:180:17"},{"body":{"nodeType":"YulBlock","src":"3878:269:17","statements":[{"nodeType":"YulAssignment","src":"3888:22:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3902:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"3908:1:17","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"3898:3:17"},"nodeType":"YulFunctionCall","src":"3898:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"3888:6:17"}]},{"nodeType":"YulVariableDeclaration","src":"3919:38:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3949:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"3955:1:17","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3945:3:17"},"nodeType":"YulFunctionCall","src":"3945:12:17"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"3923:18:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3996:51:17","statements":[{"nodeType":"YulAssignment","src":"4010:27:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4024:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4032:4:17","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4020:3:17"},"nodeType":"YulFunctionCall","src":"4020:17:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"4010:6:17"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"3976:18:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3969:6:17"},"nodeType":"YulFunctionCall","src":"3969:26:17"},"nodeType":"YulIf","src":"3966:81:17"},{"body":{"nodeType":"YulBlock","src":"4099:42:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"4113:16:17"},"nodeType":"YulFunctionCall","src":"4113:18:17"},"nodeType":"YulExpressionStatement","src":"4113:18:17"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"4063:18:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"4086:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4094:2:17","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4083:2:17"},"nodeType":"YulFunctionCall","src":"4083:14:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"4060:2:17"},"nodeType":"YulFunctionCall","src":"4060:38:17"},"nodeType":"YulIf","src":"4057:84:17"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3862:4:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"3871:6:17","type":""}],"src":"3827:320:17"},{"body":{"nodeType":"YulBlock","src":"4207:87:17","statements":[{"nodeType":"YulAssignment","src":"4217:11:17","value":{"name":"ptr","nodeType":"YulIdentifier","src":"4225:3:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"4217:4:17"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4245:1:17","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"4248:3:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4238:6:17"},"nodeType":"YulFunctionCall","src":"4238:14:17"},"nodeType":"YulExpressionStatement","src":"4238:14:17"},{"nodeType":"YulAssignment","src":"4261:26:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4279:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4282:4:17","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"4269:9:17"},"nodeType":"YulFunctionCall","src":"4269:18:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"4261:4:17"}]}]},"name":"array_dataslot_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"4194:3:17","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"4202:4:17","type":""}],"src":"4153:141:17"},{"body":{"nodeType":"YulBlock","src":"4344:49:17","statements":[{"nodeType":"YulAssignment","src":"4354:33:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4372:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"4379:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4368:3:17"},"nodeType":"YulFunctionCall","src":"4368:14:17"},{"kind":"number","nodeType":"YulLiteral","src":"4384:2:17","type":"","value":"32"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"4364:3:17"},"nodeType":"YulFunctionCall","src":"4364:23:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"4354:6:17"}]}]},"name":"divide_by_32_ceil","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4327:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"4337:6:17","type":""}],"src":"4300:93:17"},{"body":{"nodeType":"YulBlock","src":"4452:54:17","statements":[{"nodeType":"YulAssignment","src":"4462:37:17","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"4487:4:17"},{"name":"value","nodeType":"YulIdentifier","src":"4493:5:17"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4483:3:17"},"nodeType":"YulFunctionCall","src":"4483:16:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"4462:8:17"}]}]},"name":"shift_left_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"4427:4:17","type":""},{"name":"value","nodeType":"YulTypedName","src":"4433:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"4443:8:17","type":""}],"src":"4399:107:17"},{"body":{"nodeType":"YulBlock","src":"4588:317:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4598:35:17","value":{"arguments":[{"name":"shiftBytes","nodeType":"YulIdentifier","src":"4619:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"4631:1:17","type":"","value":"8"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"4615:3:17"},"nodeType":"YulFunctionCall","src":"4615:18:17"},"variables":[{"name":"shiftBits","nodeType":"YulTypedName","src":"4602:9:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4642:109:17","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"4673:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4684:66:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"4654:18:17"},"nodeType":"YulFunctionCall","src":"4654:97:17"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"4646:4:17","type":""}]},{"nodeType":"YulAssignment","src":"4760:51:17","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"4791:9:17"},{"name":"toInsert","nodeType":"YulIdentifier","src":"4802:8:17"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"4772:18:17"},"nodeType":"YulFunctionCall","src":"4772:39:17"},"variableNames":[{"name":"toInsert","nodeType":"YulIdentifier","src":"4760:8:17"}]},{"nodeType":"YulAssignment","src":"4820:30:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4833:5:17"},{"arguments":[{"name":"mask","nodeType":"YulIdentifier","src":"4844:4:17"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4840:3:17"},"nodeType":"YulFunctionCall","src":"4840:9:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4829:3:17"},"nodeType":"YulFunctionCall","src":"4829:21:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"4820:5:17"}]},{"nodeType":"YulAssignment","src":"4859:40:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4872:5:17"},{"arguments":[{"name":"toInsert","nodeType":"YulIdentifier","src":"4883:8:17"},{"name":"mask","nodeType":"YulIdentifier","src":"4893:4:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4879:3:17"},"nodeType":"YulFunctionCall","src":"4879:19:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"4869:2:17"},"nodeType":"YulFunctionCall","src":"4869:30:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"4859:6:17"}]}]},"name":"update_byte_slice_dynamic32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4549:5:17","type":""},{"name":"shiftBytes","nodeType":"YulTypedName","src":"4556:10:17","type":""},{"name":"toInsert","nodeType":"YulTypedName","src":"4568:8:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"4581:6:17","type":""}],"src":"4512:393:17"},{"body":{"nodeType":"YulBlock","src":"4956:32:17","statements":[{"nodeType":"YulAssignment","src":"4966:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"4977:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4966:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4938:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4948:7:17","type":""}],"src":"4911:77:17"},{"body":{"nodeType":"YulBlock","src":"5026:28:17","statements":[{"nodeType":"YulAssignment","src":"5036:12:17","value":{"name":"value","nodeType":"YulIdentifier","src":"5043:5:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5036:3:17"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5012:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5022:3:17","type":""}],"src":"4994:60:17"},{"body":{"nodeType":"YulBlock","src":"5120:82:17","statements":[{"nodeType":"YulAssignment","src":"5130:66:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5188:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"5170:17:17"},"nodeType":"YulFunctionCall","src":"5170:24:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"5161:8:17"},"nodeType":"YulFunctionCall","src":"5161:34:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"5143:17:17"},"nodeType":"YulFunctionCall","src":"5143:53:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"5130:9:17"}]}]},"name":"convert_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5100:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"5110:9:17","type":""}],"src":"5060:142:17"},{"body":{"nodeType":"YulBlock","src":"5255:28:17","statements":[{"nodeType":"YulAssignment","src":"5265:12:17","value":{"name":"value","nodeType":"YulIdentifier","src":"5272:5:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5265:3:17"}]}]},"name":"prepare_store_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5241:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5251:3:17","type":""}],"src":"5208:75:17"},{"body":{"nodeType":"YulBlock","src":"5365:193:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5375:63:17","value":{"arguments":[{"name":"value_0","nodeType":"YulIdentifier","src":"5430:7:17"}],"functionName":{"name":"convert_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5399:30:17"},"nodeType":"YulFunctionCall","src":"5399:39:17"},"variables":[{"name":"convertedValue_0","nodeType":"YulTypedName","src":"5379:16:17","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5454:4:17"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5494:4:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"5488:5:17"},"nodeType":"YulFunctionCall","src":"5488:11:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5501:6:17"},{"arguments":[{"name":"convertedValue_0","nodeType":"YulIdentifier","src":"5533:16:17"}],"functionName":{"name":"prepare_store_t_uint256","nodeType":"YulIdentifier","src":"5509:23:17"},"nodeType":"YulFunctionCall","src":"5509:41:17"}],"functionName":{"name":"update_byte_slice_dynamic32","nodeType":"YulIdentifier","src":"5460:27:17"},"nodeType":"YulFunctionCall","src":"5460:91:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"5447:6:17"},"nodeType":"YulFunctionCall","src":"5447:105:17"},"nodeType":"YulExpressionStatement","src":"5447:105:17"}]},"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"5342:4:17","type":""},{"name":"offset","nodeType":"YulTypedName","src":"5348:6:17","type":""},{"name":"value_0","nodeType":"YulTypedName","src":"5356:7:17","type":""}],"src":"5289:269:17"},{"body":{"nodeType":"YulBlock","src":"5613:24:17","statements":[{"nodeType":"YulAssignment","src":"5623:8:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5630:1:17","type":"","value":"0"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"5623:3:17"}]}]},"name":"zero_value_for_split_t_uint256","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"5609:3:17","type":""}],"src":"5564:73:17"},{"body":{"nodeType":"YulBlock","src":"5696:136:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5706:46:17","value":{"arguments":[],"functionName":{"name":"zero_value_for_split_t_uint256","nodeType":"YulIdentifier","src":"5720:30:17"},"nodeType":"YulFunctionCall","src":"5720:32:17"},"variables":[{"name":"zero_0","nodeType":"YulTypedName","src":"5710:6:17","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5805:4:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5811:6:17"},{"name":"zero_0","nodeType":"YulIdentifier","src":"5819:6:17"}],"functionName":{"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"5761:43:17"},"nodeType":"YulFunctionCall","src":"5761:65:17"},"nodeType":"YulExpressionStatement","src":"5761:65:17"}]},"name":"storage_set_to_zero_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"5682:4:17","type":""},{"name":"offset","nodeType":"YulTypedName","src":"5688:6:17","type":""}],"src":"5643:189:17"},{"body":{"nodeType":"YulBlock","src":"5888:136:17","statements":[{"body":{"nodeType":"YulBlock","src":"5955:63:17","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"5999:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"6006:1:17","type":"","value":"0"}],"functionName":{"name":"storage_set_to_zero_t_uint256","nodeType":"YulIdentifier","src":"5969:29:17"},"nodeType":"YulFunctionCall","src":"5969:39:17"},"nodeType":"YulExpressionStatement","src":"5969:39:17"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"5908:5:17"},{"name":"end","nodeType":"YulIdentifier","src":"5915:3:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"5905:2:17"},"nodeType":"YulFunctionCall","src":"5905:14:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"5920:26:17","statements":[{"nodeType":"YulAssignment","src":"5922:22:17","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"5935:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"5942:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5931:3:17"},"nodeType":"YulFunctionCall","src":"5931:13:17"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"5922:5:17"}]}]},"pre":{"nodeType":"YulBlock","src":"5902:2:17","statements":[]},"src":"5898:120:17"}]},"name":"clear_storage_range_t_bytes1","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"5876:5:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"5883:3:17","type":""}],"src":"5838:186:17"},{"body":{"nodeType":"YulBlock","src":"6109:464:17","statements":[{"body":{"nodeType":"YulBlock","src":"6135:431:17","statements":[{"nodeType":"YulVariableDeclaration","src":"6149:54:17","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"6197:5:17"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"6165:31:17"},"nodeType":"YulFunctionCall","src":"6165:38:17"},"variables":[{"name":"dataArea","nodeType":"YulTypedName","src":"6153:8:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6216:63:17","value":{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"6239:8:17"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"6267:10:17"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"6249:17:17"},"nodeType":"YulFunctionCall","src":"6249:29:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6235:3:17"},"nodeType":"YulFunctionCall","src":"6235:44:17"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"6220:11:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"6436:27:17","statements":[{"nodeType":"YulAssignment","src":"6438:23:17","value":{"name":"dataArea","nodeType":"YulIdentifier","src":"6453:8:17"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"6438:11:17"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"6420:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"6432:2:17","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6417:2:17"},"nodeType":"YulFunctionCall","src":"6417:18:17"},"nodeType":"YulIf","src":"6414:49:17"},{"expression":{"arguments":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"6505:11:17"},{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"6522:8:17"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"6550:3:17"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"6532:17:17"},"nodeType":"YulFunctionCall","src":"6532:22:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6518:3:17"},"nodeType":"YulFunctionCall","src":"6518:37:17"}],"functionName":{"name":"clear_storage_range_t_bytes1","nodeType":"YulIdentifier","src":"6476:28:17"},"nodeType":"YulFunctionCall","src":"6476:80:17"},"nodeType":"YulExpressionStatement","src":"6476:80:17"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"6126:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"6131:2:17","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6123:2:17"},"nodeType":"YulFunctionCall","src":"6123:11:17"},"nodeType":"YulIf","src":"6120:446:17"}]},"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"6085:5:17","type":""},{"name":"len","nodeType":"YulTypedName","src":"6092:3:17","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"6097:10:17","type":""}],"src":"6030:543:17"},{"body":{"nodeType":"YulBlock","src":"6642:54:17","statements":[{"nodeType":"YulAssignment","src":"6652:37:17","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"6677:4:17"},{"name":"value","nodeType":"YulIdentifier","src":"6683:5:17"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"6673:3:17"},"nodeType":"YulFunctionCall","src":"6673:16:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"6652:8:17"}]}]},"name":"shift_right_unsigned_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"6617:4:17","type":""},{"name":"value","nodeType":"YulTypedName","src":"6623:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"6633:8:17","type":""}],"src":"6579:117:17"},{"body":{"nodeType":"YulBlock","src":"6753:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"6763:68:17","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6812:1:17","type":"","value":"8"},{"name":"bytes","nodeType":"YulIdentifier","src":"6815:5:17"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"6808:3:17"},"nodeType":"YulFunctionCall","src":"6808:13:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6827:1:17","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"6823:3:17"},"nodeType":"YulFunctionCall","src":"6823:6:17"}],"functionName":{"name":"shift_right_unsigned_dynamic","nodeType":"YulIdentifier","src":"6779:28:17"},"nodeType":"YulFunctionCall","src":"6779:51:17"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"6775:3:17"},"nodeType":"YulFunctionCall","src":"6775:56:17"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"6767:4:17","type":""}]},{"nodeType":"YulAssignment","src":"6840:25:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"6854:4:17"},{"name":"mask","nodeType":"YulIdentifier","src":"6860:4:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6850:3:17"},"nodeType":"YulFunctionCall","src":"6850:15:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"6840:6:17"}]}]},"name":"mask_bytes_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"6730:4:17","type":""},{"name":"bytes","nodeType":"YulTypedName","src":"6736:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"6746:6:17","type":""}],"src":"6702:169:17"},{"body":{"nodeType":"YulBlock","src":"6957:214:17","statements":[{"nodeType":"YulAssignment","src":"7090:37:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"7117:4:17"},{"name":"len","nodeType":"YulIdentifier","src":"7123:3:17"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"7098:18:17"},"nodeType":"YulFunctionCall","src":"7098:29:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"7090:4:17"}]},{"nodeType":"YulAssignment","src":"7136:29:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"7147:4:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7157:1:17","type":"","value":"2"},{"name":"len","nodeType":"YulIdentifier","src":"7160:3:17"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"7153:3:17"},"nodeType":"YulFunctionCall","src":"7153:11:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"7144:2:17"},"nodeType":"YulFunctionCall","src":"7144:21:17"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"7136:4:17"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"6938:4:17","type":""},{"name":"len","nodeType":"YulTypedName","src":"6944:3:17","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"6952:4:17","type":""}],"src":"6876:295:17"},{"body":{"nodeType":"YulBlock","src":"7268:1303:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7279:51:17","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"7326:3:17"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"7293:32:17"},"nodeType":"YulFunctionCall","src":"7293:37:17"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"7283:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"7415:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"7417:16:17"},"nodeType":"YulFunctionCall","src":"7417:18:17"},"nodeType":"YulExpressionStatement","src":"7417:18:17"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"7387:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7395:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7384:2:17"},"nodeType":"YulFunctionCall","src":"7384:30:17"},"nodeType":"YulIf","src":"7381:56:17"},{"nodeType":"YulVariableDeclaration","src":"7447:52:17","value":{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"7493:4:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"7487:5:17"},"nodeType":"YulFunctionCall","src":"7487:11:17"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"7461:25:17"},"nodeType":"YulFunctionCall","src":"7461:38:17"},"variables":[{"name":"oldLen","nodeType":"YulTypedName","src":"7451:6:17","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"7592:4:17"},{"name":"oldLen","nodeType":"YulIdentifier","src":"7598:6:17"},{"name":"newLen","nodeType":"YulIdentifier","src":"7606:6:17"}],"functionName":{"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulIdentifier","src":"7546:45:17"},"nodeType":"YulFunctionCall","src":"7546:67:17"},"nodeType":"YulExpressionStatement","src":"7546:67:17"},{"nodeType":"YulVariableDeclaration","src":"7623:18:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7640:1:17","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"7627:9:17","type":""}]},{"nodeType":"YulAssignment","src":"7651:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7664:4:17","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"7651:9:17"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"7715:611:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7729:37:17","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"7748:6:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7760:4:17","type":"","value":"0x1f"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"7756:3:17"},"nodeType":"YulFunctionCall","src":"7756:9:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"7744:3:17"},"nodeType":"YulFunctionCall","src":"7744:22:17"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"7733:7:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7780:51:17","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"7826:4:17"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"7794:31:17"},"nodeType":"YulFunctionCall","src":"7794:37:17"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"7784:6:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"7844:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7853:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"7848:1:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"7912:163:17","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"7937:6:17"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"7955:3:17"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"7960:9:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7951:3:17"},"nodeType":"YulFunctionCall","src":"7951:19:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7945:5:17"},"nodeType":"YulFunctionCall","src":"7945:26:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"7930:6:17"},"nodeType":"YulFunctionCall","src":"7930:42:17"},"nodeType":"YulExpressionStatement","src":"7930:42:17"},{"nodeType":"YulAssignment","src":"7989:24:17","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"8003:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8011:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7999:3:17"},"nodeType":"YulFunctionCall","src":"7999:14:17"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"7989:6:17"}]},{"nodeType":"YulAssignment","src":"8030:31:17","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"8047:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"8058:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8043:3:17"},"nodeType":"YulFunctionCall","src":"8043:18:17"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"8030:9:17"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7878:1:17"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"7881:7:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"7875:2:17"},"nodeType":"YulFunctionCall","src":"7875:14:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"7890:21:17","statements":[{"nodeType":"YulAssignment","src":"7892:17:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"7901:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"7904:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7897:3:17"},"nodeType":"YulFunctionCall","src":"7897:12:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"7892:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"7871:3:17","statements":[]},"src":"7867:208:17"},{"body":{"nodeType":"YulBlock","src":"8111:156:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8129:43:17","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"8156:3:17"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"8161:9:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8152:3:17"},"nodeType":"YulFunctionCall","src":"8152:19:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8146:5:17"},"nodeType":"YulFunctionCall","src":"8146:26:17"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"8133:9:17","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"8196:6:17"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"8223:9:17"},{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"8238:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8246:4:17","type":"","value":"0x1f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8234:3:17"},"nodeType":"YulFunctionCall","src":"8234:17:17"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"8204:18:17"},"nodeType":"YulFunctionCall","src":"8204:48:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"8189:6:17"},"nodeType":"YulFunctionCall","src":"8189:64:17"},"nodeType":"YulExpressionStatement","src":"8189:64:17"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"8094:7:17"},{"name":"newLen","nodeType":"YulIdentifier","src":"8103:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"8091:2:17"},"nodeType":"YulFunctionCall","src":"8091:19:17"},"nodeType":"YulIf","src":"8088:179:17"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"8287:4:17"},{"arguments":[{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"8301:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8309:1:17","type":"","value":"2"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"8297:3:17"},"nodeType":"YulFunctionCall","src":"8297:14:17"},{"kind":"number","nodeType":"YulLiteral","src":"8313:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8293:3:17"},"nodeType":"YulFunctionCall","src":"8293:22:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"8280:6:17"},"nodeType":"YulFunctionCall","src":"8280:36:17"},"nodeType":"YulExpressionStatement","src":"8280:36:17"}]},"nodeType":"YulCase","src":"7708:618:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7713:1:17","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"8343:222:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8357:14:17","value":{"kind":"number","nodeType":"YulLiteral","src":"8370:1:17","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"8361:5:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"8394:67:17","statements":[{"nodeType":"YulAssignment","src":"8412:35:17","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"8431:3:17"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"8436:9:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8427:3:17"},"nodeType":"YulFunctionCall","src":"8427:19:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8421:5:17"},"nodeType":"YulFunctionCall","src":"8421:26:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"8412:5:17"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"8387:6:17"},"nodeType":"YulIf","src":"8384:77:17"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"8481:4:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8540:5:17"},{"name":"newLen","nodeType":"YulIdentifier","src":"8547:6:17"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"8487:52:17"},"nodeType":"YulFunctionCall","src":"8487:67:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"8474:6:17"},"nodeType":"YulFunctionCall","src":"8474:81:17"},"nodeType":"YulExpressionStatement","src":"8474:81:17"}]},"nodeType":"YulCase","src":"8335:230:17","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"7688:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7696:2:17","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"7685:2:17"},"nodeType":"YulFunctionCall","src":"7685:14:17"},"nodeType":"YulSwitch","src":"7678:887:17"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"7257:4:17","type":""},{"name":"src","nodeType":"YulTypedName","src":"7263:3:17","type":""}],"src":"7176:1395:17"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b50604051620017ec380380620017ec8339818101604052810190620000379190620001f6565b8160039081620000489190620004c6565b5080600490816200005a9190620004c6565b505050620005ad565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620000cc8262000081565b810181811067ffffffffffffffff82111715620000ee57620000ed62000092565b5b80604052505050565b60006200010362000063565b9050620001118282620000c1565b919050565b600067ffffffffffffffff82111562000134576200013362000092565b5b6200013f8262000081565b9050602081019050919050565b60005b838110156200016c5780820151818401526020810190506200014f565b60008484015250505050565b60006200018f620001898462000116565b620000f7565b905082815260208101848484011115620001ae57620001ad6200007c565b5b620001bb8482856200014c565b509392505050565b600082601f830112620001db57620001da62000077565b5b8151620001ed84826020860162000178565b91505092915050565b6000806040838503121562000210576200020f6200006d565b5b600083015167ffffffffffffffff81111562000231576200023062000072565b5b6200023f85828601620001c3565b925050602083015167ffffffffffffffff81111562000263576200026262000072565b5b6200027185828601620001c3565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ce57607f821691505b602082108103620002e457620002e362000286565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200034e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030f565b6200035a86836200030f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a7620003a16200039b8462000372565b6200037c565b62000372565b9050919050565b6000819050919050565b620003c38362000386565b620003db620003d282620003ae565b8484546200031c565b825550505050565b600090565b620003f2620003e3565b620003ff818484620003b8565b505050565b5b8181101562000427576200041b600082620003e8565b60018101905062000405565b5050565b601f82111562000476576200044081620002ea565b6200044b84620002ff565b810160208510156200045b578190505b620004736200046a85620002ff565b83018262000404565b50505b505050565b600082821c905092915050565b60006200049b600019846008026200047b565b1980831691505092915050565b6000620004b6838362000488565b9150826002028217905092915050565b620004d1826200027b565b67ffffffffffffffff811115620004ed57620004ec62000092565b5b620004f98254620002b5565b620005068282856200042b565b600060209050601f8311600181146200053e576000841562000529578287015190505b620005358582620004a8565b865550620005a5565b601f1984166200054e86620002ea565b60005b82811015620005785784890151825560018201915060208501945060208101905062000551565b8683101562000598578489015162000594601f89168262000488565b8355505b6001600288020188555050505b505050505050565b61122f80620005bd6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea26469706673582212203f964721ffb5f8e7386b9365859b9194e4ad9856f3c840f128334936a424267d64736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x17EC CODESIZE SUB DUP1 PUSH3 0x17EC DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x1F6 JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x48 SWAP2 SWAP1 PUSH3 0x4C6 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x5A SWAP2 SWAP1 PUSH3 0x4C6 JUMP JUMPDEST POP POP POP PUSH3 0x5AD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0xCC DUP3 PUSH3 0x81 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xEE JUMPI PUSH3 0xED PUSH3 0x92 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x103 PUSH3 0x63 JUMP JUMPDEST SWAP1 POP PUSH3 0x111 DUP3 DUP3 PUSH3 0xC1 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x134 JUMPI PUSH3 0x133 PUSH3 0x92 JUMP JUMPDEST JUMPDEST PUSH3 0x13F DUP3 PUSH3 0x81 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x16C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x14F JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x18F PUSH3 0x189 DUP5 PUSH3 0x116 JUMP JUMPDEST PUSH3 0xF7 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1AE JUMPI PUSH3 0x1AD PUSH3 0x7C JUMP JUMPDEST JUMPDEST PUSH3 0x1BB DUP5 DUP3 DUP6 PUSH3 0x14C JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1DB JUMPI PUSH3 0x1DA PUSH3 0x77 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x1ED DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x178 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x210 JUMPI PUSH3 0x20F PUSH3 0x6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x231 JUMPI PUSH3 0x230 PUSH3 0x72 JUMP JUMPDEST JUMPDEST PUSH3 0x23F DUP6 DUP3 DUP7 ADD PUSH3 0x1C3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x263 JUMPI PUSH3 0x262 PUSH3 0x72 JUMP JUMPDEST JUMPDEST PUSH3 0x271 DUP6 DUP3 DUP7 ADD PUSH3 0x1C3 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2CE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2E4 JUMPI PUSH3 0x2E3 PUSH3 0x286 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x34E PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x30F JUMP JUMPDEST PUSH3 0x35A DUP7 DUP4 PUSH3 0x30F JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3A7 PUSH3 0x3A1 PUSH3 0x39B DUP5 PUSH3 0x372 JUMP JUMPDEST PUSH3 0x37C JUMP JUMPDEST PUSH3 0x372 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3C3 DUP4 PUSH3 0x386 JUMP JUMPDEST PUSH3 0x3DB PUSH3 0x3D2 DUP3 PUSH3 0x3AE JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x31C JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x3F2 PUSH3 0x3E3 JUMP JUMPDEST PUSH3 0x3FF DUP2 DUP5 DUP5 PUSH3 0x3B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x427 JUMPI PUSH3 0x41B PUSH1 0x0 DUP3 PUSH3 0x3E8 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x405 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x476 JUMPI PUSH3 0x440 DUP2 PUSH3 0x2EA JUMP JUMPDEST PUSH3 0x44B DUP5 PUSH3 0x2FF JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x45B JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x473 PUSH3 0x46A DUP6 PUSH3 0x2FF JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x404 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x49B PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x47B JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4B6 DUP4 DUP4 PUSH3 0x488 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4D1 DUP3 PUSH3 0x27B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4ED JUMPI PUSH3 0x4EC PUSH3 0x92 JUMP JUMPDEST JUMPDEST PUSH3 0x4F9 DUP3 SLOAD PUSH3 0x2B5 JUMP JUMPDEST PUSH3 0x506 DUP3 DUP3 DUP6 PUSH3 0x42B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x53E JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x529 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x535 DUP6 DUP3 PUSH3 0x4A8 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x5A5 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x54E DUP7 PUSH3 0x2EA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x578 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x551 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x598 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x594 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x488 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x122F DUP1 PUSH3 0x5BD PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC67 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xCD6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xCF1 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B1 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x770 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xDED JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x427 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x616 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60D SWAP1 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x685 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67C SWAP1 PUSH2 0xFB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x763 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F6 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F5 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D1 SWAP1 PUSH2 0x1147 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E5 DUP4 DUP4 DUP4 PUSH2 0xA72 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP1 PUSH2 0x11D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA6C DUP5 DUP5 DUP5 PUSH2 0xA77 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAB6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9B JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADE DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH2 0xAE8 DUP2 DUP6 PUSH2 0xA87 JUMP JUMPDEST SWAP4 POP PUSH2 0xAF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA98 JUMP JUMPDEST PUSH2 0xB01 DUP2 PUSH2 0xAC2 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xB26 DUP2 DUP5 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB5E DUP3 PUSH2 0xB33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6E DUP2 PUSH2 0xB53 JUMP JUMPDEST DUP2 EQ PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB8B DUP2 PUSH2 0xB65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA4 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBC1 DUP2 PUSH2 0xB9B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDE JUMPI PUSH2 0xBDD PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBEC DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBFD DUP6 DUP3 DUP7 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC1C DUP2 PUSH2 0xC07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC46 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC61 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC80 JUMPI PUSH2 0xC7F PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC8E DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC9F DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCB0 DUP7 DUP3 DUP8 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD0 DUP2 PUSH2 0xCBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCEB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCC7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD06 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD15 DUP5 DUP3 DUP6 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD54 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDA5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDB8 JUMPI PUSH2 0xDB7 PUSH2 0xD5E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF8 DUP3 PUSH2 0xB91 JUMP JUMPDEST SWAP2 POP PUSH2 0xE03 DUP4 PUSH2 0xB91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xE1B JUMPI PUSH2 0xE1A PUSH2 0xDBE JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE7D PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xE88 DUP3 PUSH2 0xE21 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEAC DUP2 PUSH2 0xE70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F PUSH1 0x24 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xF1A DUP3 PUSH2 0xEB3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3E DUP2 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFA1 PUSH1 0x22 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xFAC DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFD0 DUP2 PUSH2 0xF94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100D PUSH1 0x1D DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x1018 DUP3 PUSH2 0xFD7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x103C DUP2 PUSH2 0x1000 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109F PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10CE DUP2 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1131 PUSH1 0x23 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x113C DUP3 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1160 DUP2 PUSH2 0x1124 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C3 PUSH1 0x26 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x11CE DUP3 PUSH2 0x1167 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11F2 DUP2 PUSH2 0x11B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH SWAP7 SELFBALANCE 0x21 SELFDESTRUCT 0xB5 0xF8 0xE7 CODESIZE PUSH12 0x9365859B9194E4AD9856F3C8 BLOCKHASH CALL 0x28 CALLER 0x49 CALLDATASIZE LOG4 0x24 0x26 PUSH30 0x64736F6C6343000812003300000000000000000000000000000000000000 ","sourceMap":"1532:11312:6:-:0;;;1980:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;1532:11312;;7:75:17;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:246::-;1691:1;1701:113;1715:6;1712:1;1709:13;1701:113;;;1800:1;1795:3;1791:11;1785:18;1781:1;1776:3;1772:11;1765:39;1737:2;1734:1;1730:10;1725:15;;1701:113;;;1848:1;1839:6;1834:3;1830:16;1823:27;1672:184;1610:246;;;:::o;1862:434::-;1951:5;1976:66;1992:49;2034:6;1992:49;:::i;:::-;1976:66;:::i;:::-;1967:75;;2065:6;2058:5;2051:21;2103:4;2096:5;2092:16;2141:3;2132:6;2127:3;2123:16;2120:25;2117:112;;;2148:79;;:::i;:::-;2117:112;2238:52;2283:6;2278:3;2273;2238:52;:::i;:::-;1957:339;1862:434;;;;;:::o;2316:355::-;2383:5;2432:3;2425:4;2417:6;2413:17;2409:27;2399:122;;2440:79;;:::i;:::-;2399:122;2550:6;2544:13;2575:90;2661:3;2653:6;2646:4;2638:6;2634:17;2575:90;:::i;:::-;2566:99;;2389:282;2316:355;;;;:::o;2677:853::-;2776:6;2784;2833:2;2821:9;2812:7;2808:23;2804:32;2801:119;;;2839:79;;:::i;:::-;2801:119;2980:1;2969:9;2965:17;2959:24;3010:18;3002:6;2999:30;2996:117;;;3032:79;;:::i;:::-;2996:117;3137:74;3203:7;3194:6;3183:9;3179:22;3137:74;:::i;:::-;3127:84;;2930:291;3281:2;3270:9;3266:18;3260:25;3312:18;3304:6;3301:30;3298:117;;;3334:79;;:::i;:::-;3298:117;3439:74;3505:7;3496:6;3485:9;3481:22;3439:74;:::i;:::-;3429:84;;3231:292;2677:853;;;;;:::o;3536:99::-;3588:6;3622:5;3616:12;3606:22;;3536:99;;;:::o;3641:180::-;3689:77;3686:1;3679:88;3786:4;3783:1;3776:15;3810:4;3807:1;3800:15;3827:320;3871:6;3908:1;3902:4;3898:12;3888:22;;3955:1;3949:4;3945:12;3976:18;3966:81;;4032:4;4024:6;4020:17;4010:27;;3966:81;4094:2;4086:6;4083:14;4063:18;4060:38;4057:84;;4113:18;;:::i;:::-;4057:84;3878:269;3827:320;;;:::o;4153:141::-;4202:4;4225:3;4217:11;;4248:3;4245:1;4238:14;4282:4;4279:1;4269:18;4261:26;;4153:141;;;:::o;4300:93::-;4337:6;4384:2;4379;4372:5;4368:14;4364:23;4354:33;;4300:93;;;:::o;4399:107::-;4443:8;4493:5;4487:4;4483:16;4462:37;;4399:107;;;;:::o;4512:393::-;4581:6;4631:1;4619:10;4615:18;4654:97;4684:66;4673:9;4654:97;:::i;:::-;4772:39;4802:8;4791:9;4772:39;:::i;:::-;4760:51;;4844:4;4840:9;4833:5;4829:21;4820:30;;4893:4;4883:8;4879:19;4872:5;4869:30;4859:40;;4588:317;;4512:393;;;;;:::o;4911:77::-;4948:7;4977:5;4966:16;;4911:77;;;:::o;4994:60::-;5022:3;5043:5;5036:12;;4994:60;;;:::o;5060:142::-;5110:9;5143:53;5161:34;5170:24;5188:5;5170:24;:::i;:::-;5161:34;:::i;:::-;5143:53;:::i;:::-;5130:66;;5060:142;;;:::o;5208:75::-;5251:3;5272:5;5265:12;;5208:75;;;:::o;5289:269::-;5399:39;5430:7;5399:39;:::i;:::-;5460:91;5509:41;5533:16;5509:41;:::i;:::-;5501:6;5494:4;5488:11;5460:91;:::i;:::-;5454:4;5447:105;5365:193;5289:269;;;:::o;5564:73::-;5609:3;5564:73;:::o;5643:189::-;5720:32;;:::i;:::-;5761:65;5819:6;5811;5805:4;5761:65;:::i;:::-;5696:136;5643:189;;:::o;5838:186::-;5898:120;5915:3;5908:5;5905:14;5898:120;;;5969:39;6006:1;5999:5;5969:39;:::i;:::-;5942:1;5935:5;5931:13;5922:22;;5898:120;;;5838:186;;:::o;6030:543::-;6131:2;6126:3;6123:11;6120:446;;;6165:38;6197:5;6165:38;:::i;:::-;6249:29;6267:10;6249:29;:::i;:::-;6239:8;6235:44;6432:2;6420:10;6417:18;6414:49;;;6453:8;6438:23;;6414:49;6476:80;6532:22;6550:3;6532:22;:::i;:::-;6522:8;6518:37;6505:11;6476:80;:::i;:::-;6135:431;;6120:446;6030:543;;;:::o;6579:117::-;6633:8;6683:5;6677:4;6673:16;6652:37;;6579:117;;;;:::o;6702:169::-;6746:6;6779:51;6827:1;6823:6;6815:5;6812:1;6808:13;6779:51;:::i;:::-;6775:56;6860:4;6854;6850:15;6840:25;;6753:118;6702:169;;;;:::o;6876:295::-;6952:4;7098:29;7123:3;7117:4;7098:29;:::i;:::-;7090:37;;7160:3;7157:1;7153:11;7147:4;7144:21;7136:29;;6876:295;;;;:::o;7176:1395::-;7293:37;7326:3;7293:37;:::i;:::-;7395:18;7387:6;7384:30;7381:56;;;7417:18;;:::i;:::-;7381:56;7461:38;7493:4;7487:11;7461:38;:::i;:::-;7546:67;7606:6;7598;7592:4;7546:67;:::i;:::-;7640:1;7664:4;7651:17;;7696:2;7688:6;7685:14;7713:1;7708:618;;;;8370:1;8387:6;8384:77;;;8436:9;8431:3;8427:19;8421:26;8412:35;;8384:77;8487:67;8547:6;8540:5;8487:67;:::i;:::-;8481:4;8474:81;8343:222;7678:887;;7708:618;7760:4;7756:9;7748:6;7744:22;7794:37;7826:4;7794:37;:::i;:::-;7853:1;7867:208;7881:7;7878:1;7875:14;7867:208;;;7960:9;7955:3;7951:19;7945:26;7937:6;7930:42;8011:1;8003:6;7999:14;7989:24;;8058:2;8047:9;8043:18;8030:31;;7904:4;7901:1;7897:12;7892:17;;7867:208;;;8103:6;8094:7;8091:19;8088:179;;;8161:9;8156:3;8152:19;8146:26;8204:48;8246:4;8238:6;8234:17;8223:9;8204:48;:::i;:::-;8196:6;8189:64;8111:156;8088:179;8313:1;8309;8301:6;8297:14;8293:22;8287:4;8280:36;7715:611;;;7678:887;;7268:1303;;;7176:1395;;:::o;1532:11312:6:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1503":{"entryPoint":2679,"id":1503,"parameterSlots":3,"returnSlots":0},"@_approve_1438":{"entryPoint":1447,"id":1438,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1492":{"entryPoint":2674,"id":1492,"parameterSlots":3,"returnSlots":0},"@_msgSender_1619":{"entryPoint":1439,"id":1619,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1481":{"entryPoint":1904,"id":1481,"parameterSlots":3,"returnSlots":0},"@_transfer_1264":{"entryPoint":2044,"id":1264,"parameterSlots":3,"returnSlots":0},"@allowance_1059":{"entryPoint":1304,"id":1059,"parameterSlots":2,"returnSlots":1},"@approve_1084":{"entryPoint":776,"id":1084,"parameterSlots":2,"returnSlots":1},"@balanceOf_1016":{"entryPoint":932,"id":1016,"parameterSlots":1,"returnSlots":1},"@decimals_992":{"entryPoint":868,"id":992,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_1187":{"entryPoint":1150,"id":1187,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_1146":{"entryPoint":877,"id":1146,"parameterSlots":2,"returnSlots":1},"@name_972":{"entryPoint":630,"id":972,"parameterSlots":0,"returnSlots":1},"@symbol_982":{"entryPoint":1004,"id":982,"parameterSlots":0,"returnSlots":1},"@totalSupply_1002":{"entryPoint":811,"id":1002,"parameterSlots":0,"returnSlots":1},"@transferFrom_1117":{"entryPoint":821,"id":1117,"parameterSlots":3,"returnSlots":1},"@transfer_1041":{"entryPoint":1269,"id":1041,"parameterSlots":2,"returnSlots":1},"abi_decode_t_address":{"entryPoint":2940,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":2994,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3313,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":3358,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":3175,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":3015,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":3091,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":2771,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack":{"entryPoint":4388,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack":{"entryPoint":3988,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack":{"entryPoint":4096,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack":{"entryPoint":4534,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack":{"entryPoint":4242,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack":{"entryPoint":3842,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack":{"entryPoint":3696,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":3133,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":3271,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":3106,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2828,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4423,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4023,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4131,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4569,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4277,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3877,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3731,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":3148,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":3286,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":2684,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":2695,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":3565,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":2899,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":3079,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":2867,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":2961,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":3258,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":2712,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":3469,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":3518,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x22":{"entryPoint":3422,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":2862,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":2754,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f":{"entryPoint":4309,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029":{"entryPoint":3909,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe":{"entryPoint":4055,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6":{"entryPoint":4455,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea":{"entryPoint":4163,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208":{"entryPoint":3763,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8":{"entryPoint":3617,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":2917,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":2971,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:13699:17","statements":[{"body":{"nodeType":"YulBlock","src":"66:40:17","statements":[{"nodeType":"YulAssignment","src":"77:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"87:5:17"},"nodeType":"YulFunctionCall","src":"87:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"77:6:17"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"49:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"59:6:17","type":""}],"src":"7:99:17"},{"body":{"nodeType":"YulBlock","src":"208:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"225:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"230:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"218:6:17"},"nodeType":"YulFunctionCall","src":"218:19:17"},"nodeType":"YulExpressionStatement","src":"218:19:17"},{"nodeType":"YulAssignment","src":"246:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"265:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"270:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"261:3:17"},"nodeType":"YulFunctionCall","src":"261:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"246:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"180:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"185:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"196:11:17","type":""}],"src":"112:169:17"},{"body":{"nodeType":"YulBlock","src":"349:184:17","statements":[{"nodeType":"YulVariableDeclaration","src":"359:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"368:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"363:1:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"428:63:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"453:3:17"},{"name":"i","nodeType":"YulIdentifier","src":"458:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"449:3:17"},"nodeType":"YulFunctionCall","src":"449:11:17"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"472:3:17"},{"name":"i","nodeType":"YulIdentifier","src":"477:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"468:3:17"},"nodeType":"YulFunctionCall","src":"468:11:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"462:5:17"},"nodeType":"YulFunctionCall","src":"462:18:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"442:6:17"},"nodeType":"YulFunctionCall","src":"442:39:17"},"nodeType":"YulExpressionStatement","src":"442:39:17"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"389:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"392:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"386:2:17"},"nodeType":"YulFunctionCall","src":"386:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"400:19:17","statements":[{"nodeType":"YulAssignment","src":"402:15:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"411:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"414:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"407:3:17"},"nodeType":"YulFunctionCall","src":"407:10:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"402:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"382:3:17","statements":[]},"src":"378:113:17"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"511:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"516:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"507:3:17"},"nodeType":"YulFunctionCall","src":"507:16:17"},{"kind":"number","nodeType":"YulLiteral","src":"525:1:17","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"500:6:17"},"nodeType":"YulFunctionCall","src":"500:27:17"},"nodeType":"YulExpressionStatement","src":"500:27:17"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"331:3:17","type":""},{"name":"dst","nodeType":"YulTypedName","src":"336:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"341:6:17","type":""}],"src":"287:246:17"},{"body":{"nodeType":"YulBlock","src":"587:54:17","statements":[{"nodeType":"YulAssignment","src":"597:38:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"615:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"622:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"611:3:17"},"nodeType":"YulFunctionCall","src":"611:14:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"631:2:17","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"627:3:17"},"nodeType":"YulFunctionCall","src":"627:7:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"607:3:17"},"nodeType":"YulFunctionCall","src":"607:28:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"597:6:17"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"570:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"580:6:17","type":""}],"src":"539:102:17"},{"body":{"nodeType":"YulBlock","src":"739:285:17","statements":[{"nodeType":"YulVariableDeclaration","src":"749:53:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"796:5:17"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"763:32:17"},"nodeType":"YulFunctionCall","src":"763:39:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"753:6:17","type":""}]},{"nodeType":"YulAssignment","src":"811:78:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"877:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"882:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"818:58:17"},"nodeType":"YulFunctionCall","src":"818:71:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"811:3:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"937:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"944:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"933:3:17"},"nodeType":"YulFunctionCall","src":"933:16:17"},{"name":"pos","nodeType":"YulIdentifier","src":"951:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"956:6:17"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"898:34:17"},"nodeType":"YulFunctionCall","src":"898:65:17"},"nodeType":"YulExpressionStatement","src":"898:65:17"},{"nodeType":"YulAssignment","src":"972:46:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"983:3:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1010:6:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"988:21:17"},"nodeType":"YulFunctionCall","src":"988:29:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"979:3:17"},"nodeType":"YulFunctionCall","src":"979:39:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"972:3:17"}]}]},"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"720:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"727:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"735:3:17","type":""}],"src":"647:377:17"},{"body":{"nodeType":"YulBlock","src":"1148:195:17","statements":[{"nodeType":"YulAssignment","src":"1158:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1170:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1181:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1166:3:17"},"nodeType":"YulFunctionCall","src":"1166:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1158:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1205:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1216:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1201:3:17"},"nodeType":"YulFunctionCall","src":"1201:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1224:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"1230:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1220:3:17"},"nodeType":"YulFunctionCall","src":"1220:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1194:6:17"},"nodeType":"YulFunctionCall","src":"1194:47:17"},"nodeType":"YulExpressionStatement","src":"1194:47:17"},{"nodeType":"YulAssignment","src":"1250:86:17","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1322:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"1331:4:17"}],"functionName":{"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1258:63:17"},"nodeType":"YulFunctionCall","src":"1258:78:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1250:4:17"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1120:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1132:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1143:4:17","type":""}],"src":"1030:313:17"},{"body":{"nodeType":"YulBlock","src":"1389:35:17","statements":[{"nodeType":"YulAssignment","src":"1399:19:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1415:2:17","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1409:5:17"},"nodeType":"YulFunctionCall","src":"1409:9:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1399:6:17"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1382:6:17","type":""}],"src":"1349:75:17"},{"body":{"nodeType":"YulBlock","src":"1519:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1536:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1539:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1529:6:17"},"nodeType":"YulFunctionCall","src":"1529:12:17"},"nodeType":"YulExpressionStatement","src":"1529:12:17"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"1430:117:17"},{"body":{"nodeType":"YulBlock","src":"1642:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1659:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1662:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1652:6:17"},"nodeType":"YulFunctionCall","src":"1652:12:17"},"nodeType":"YulExpressionStatement","src":"1652:12:17"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"1553:117:17"},{"body":{"nodeType":"YulBlock","src":"1721:81:17","statements":[{"nodeType":"YulAssignment","src":"1731:65:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1746:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"1753:42:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1742:3:17"},"nodeType":"YulFunctionCall","src":"1742:54:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1731:7:17"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1703:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1713:7:17","type":""}],"src":"1676:126:17"},{"body":{"nodeType":"YulBlock","src":"1853:51:17","statements":[{"nodeType":"YulAssignment","src":"1863:35:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1892:5:17"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"1874:17:17"},"nodeType":"YulFunctionCall","src":"1874:24:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1863:7:17"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1835:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1845:7:17","type":""}],"src":"1808:96:17"},{"body":{"nodeType":"YulBlock","src":"1953:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"2010:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2019:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2022:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2012:6:17"},"nodeType":"YulFunctionCall","src":"2012:12:17"},"nodeType":"YulExpressionStatement","src":"2012:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1976:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2001:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"1983:17:17"},"nodeType":"YulFunctionCall","src":"1983:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1973:2:17"},"nodeType":"YulFunctionCall","src":"1973:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1966:6:17"},"nodeType":"YulFunctionCall","src":"1966:43:17"},"nodeType":"YulIf","src":"1963:63:17"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1946:5:17","type":""}],"src":"1910:122:17"},{"body":{"nodeType":"YulBlock","src":"2090:87:17","statements":[{"nodeType":"YulAssignment","src":"2100:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2122:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2109:12:17"},"nodeType":"YulFunctionCall","src":"2109:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2100:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2165:5:17"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"2138:26:17"},"nodeType":"YulFunctionCall","src":"2138:33:17"},"nodeType":"YulExpressionStatement","src":"2138:33:17"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2068:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2076:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2084:5:17","type":""}],"src":"2038:139:17"},{"body":{"nodeType":"YulBlock","src":"2228:32:17","statements":[{"nodeType":"YulAssignment","src":"2238:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"2249:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"2238:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2210:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"2220:7:17","type":""}],"src":"2183:77:17"},{"body":{"nodeType":"YulBlock","src":"2309:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"2366:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2375:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2378:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2368:6:17"},"nodeType":"YulFunctionCall","src":"2368:12:17"},"nodeType":"YulExpressionStatement","src":"2368:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2332:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2357:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"2339:17:17"},"nodeType":"YulFunctionCall","src":"2339:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2329:2:17"},"nodeType":"YulFunctionCall","src":"2329:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2322:6:17"},"nodeType":"YulFunctionCall","src":"2322:43:17"},"nodeType":"YulIf","src":"2319:63:17"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2302:5:17","type":""}],"src":"2266:122:17"},{"body":{"nodeType":"YulBlock","src":"2446:87:17","statements":[{"nodeType":"YulAssignment","src":"2456:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2478:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2465:12:17"},"nodeType":"YulFunctionCall","src":"2465:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2456:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2521:5:17"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"2494:26:17"},"nodeType":"YulFunctionCall","src":"2494:33:17"},"nodeType":"YulExpressionStatement","src":"2494:33:17"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2424:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2432:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2440:5:17","type":""}],"src":"2394:139:17"},{"body":{"nodeType":"YulBlock","src":"2622:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"2668:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2670:77:17"},"nodeType":"YulFunctionCall","src":"2670:79:17"},"nodeType":"YulExpressionStatement","src":"2670:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2643:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"2652:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2639:3:17"},"nodeType":"YulFunctionCall","src":"2639:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"2664:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2635:3:17"},"nodeType":"YulFunctionCall","src":"2635:32:17"},"nodeType":"YulIf","src":"2632:119:17"},{"nodeType":"YulBlock","src":"2761:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2776:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2790:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2780:6:17","type":""}]},{"nodeType":"YulAssignment","src":"2805:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2840:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2851:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2836:3:17"},"nodeType":"YulFunctionCall","src":"2836:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2860:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"2815:20:17"},"nodeType":"YulFunctionCall","src":"2815:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2805:6:17"}]}]},{"nodeType":"YulBlock","src":"2888:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2903:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2917:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2907:6:17","type":""}]},{"nodeType":"YulAssignment","src":"2933:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2968:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2979:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2964:3:17"},"nodeType":"YulFunctionCall","src":"2964:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2988:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2943:20:17"},"nodeType":"YulFunctionCall","src":"2943:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2933:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2584:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2595:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2607:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2615:6:17","type":""}],"src":"2539:474:17"},{"body":{"nodeType":"YulBlock","src":"3061:48:17","statements":[{"nodeType":"YulAssignment","src":"3071:32:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3096:5:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3089:6:17"},"nodeType":"YulFunctionCall","src":"3089:13:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3082:6:17"},"nodeType":"YulFunctionCall","src":"3082:21:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"3071:7:17"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3043:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"3053:7:17","type":""}],"src":"3019:90:17"},{"body":{"nodeType":"YulBlock","src":"3174:50:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3191:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3211:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"3196:14:17"},"nodeType":"YulFunctionCall","src":"3196:21:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3184:6:17"},"nodeType":"YulFunctionCall","src":"3184:34:17"},"nodeType":"YulExpressionStatement","src":"3184:34:17"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3162:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3169:3:17","type":""}],"src":"3115:109:17"},{"body":{"nodeType":"YulBlock","src":"3322:118:17","statements":[{"nodeType":"YulAssignment","src":"3332:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3344:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3355:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3340:3:17"},"nodeType":"YulFunctionCall","src":"3340:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3332:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3406:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3419:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3430:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3415:3:17"},"nodeType":"YulFunctionCall","src":"3415:17:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"3368:37:17"},"nodeType":"YulFunctionCall","src":"3368:65:17"},"nodeType":"YulExpressionStatement","src":"3368:65:17"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3294:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3306:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3317:4:17","type":""}],"src":"3230:210:17"},{"body":{"nodeType":"YulBlock","src":"3511:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3528:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3551:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3533:17:17"},"nodeType":"YulFunctionCall","src":"3533:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3521:6:17"},"nodeType":"YulFunctionCall","src":"3521:37:17"},"nodeType":"YulExpressionStatement","src":"3521:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3499:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3506:3:17","type":""}],"src":"3446:118:17"},{"body":{"nodeType":"YulBlock","src":"3668:124:17","statements":[{"nodeType":"YulAssignment","src":"3678:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3690:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3701:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3686:3:17"},"nodeType":"YulFunctionCall","src":"3686:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3678:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3758:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3771:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3782:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3767:3:17"},"nodeType":"YulFunctionCall","src":"3767:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"3714:43:17"},"nodeType":"YulFunctionCall","src":"3714:71:17"},"nodeType":"YulExpressionStatement","src":"3714:71:17"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3640:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3652:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3663:4:17","type":""}],"src":"3570:222:17"},{"body":{"nodeType":"YulBlock","src":"3898:519:17","statements":[{"body":{"nodeType":"YulBlock","src":"3944:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3946:77:17"},"nodeType":"YulFunctionCall","src":"3946:79:17"},"nodeType":"YulExpressionStatement","src":"3946:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3919:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"3928:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3915:3:17"},"nodeType":"YulFunctionCall","src":"3915:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"3940:2:17","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3911:3:17"},"nodeType":"YulFunctionCall","src":"3911:32:17"},"nodeType":"YulIf","src":"3908:119:17"},{"nodeType":"YulBlock","src":"4037:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4052:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4066:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4056:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4081:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4116:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4127:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4112:3:17"},"nodeType":"YulFunctionCall","src":"4112:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4136:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4091:20:17"},"nodeType":"YulFunctionCall","src":"4091:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4081:6:17"}]}]},{"nodeType":"YulBlock","src":"4164:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4179:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4193:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4183:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4209:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4244:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4255:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4240:3:17"},"nodeType":"YulFunctionCall","src":"4240:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4264:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4219:20:17"},"nodeType":"YulFunctionCall","src":"4219:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4209:6:17"}]}]},{"nodeType":"YulBlock","src":"4292:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4307:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4321:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4311:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4337:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4372:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4383:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4368:3:17"},"nodeType":"YulFunctionCall","src":"4368:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4392:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"4347:20:17"},"nodeType":"YulFunctionCall","src":"4347:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"4337:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3852:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3863:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3875:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3883:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3891:6:17","type":""}],"src":"3798:619:17"},{"body":{"nodeType":"YulBlock","src":"4466:43:17","statements":[{"nodeType":"YulAssignment","src":"4476:27:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4491:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"4498:4:17","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4487:3:17"},"nodeType":"YulFunctionCall","src":"4487:16:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4476:7:17"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4448:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4458:7:17","type":""}],"src":"4423:86:17"},{"body":{"nodeType":"YulBlock","src":"4576:51:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4593:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4614:5:17"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"4598:15:17"},"nodeType":"YulFunctionCall","src":"4598:22:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4586:6:17"},"nodeType":"YulFunctionCall","src":"4586:35:17"},"nodeType":"YulExpressionStatement","src":"4586:35:17"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4564:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4571:3:17","type":""}],"src":"4515:112:17"},{"body":{"nodeType":"YulBlock","src":"4727:120:17","statements":[{"nodeType":"YulAssignment","src":"4737:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4749:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4760:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4745:3:17"},"nodeType":"YulFunctionCall","src":"4745:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4737:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4813:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4826:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4837:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4822:3:17"},"nodeType":"YulFunctionCall","src":"4822:17:17"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"4773:39:17"},"nodeType":"YulFunctionCall","src":"4773:67:17"},"nodeType":"YulExpressionStatement","src":"4773:67:17"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4699:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4711:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4722:4:17","type":""}],"src":"4633:214:17"},{"body":{"nodeType":"YulBlock","src":"4919:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"4965:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"4967:77:17"},"nodeType":"YulFunctionCall","src":"4967:79:17"},"nodeType":"YulExpressionStatement","src":"4967:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4940:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"4949:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4936:3:17"},"nodeType":"YulFunctionCall","src":"4936:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"4961:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4932:3:17"},"nodeType":"YulFunctionCall","src":"4932:32:17"},"nodeType":"YulIf","src":"4929:119:17"},{"nodeType":"YulBlock","src":"5058:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5073:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5087:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5077:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5102:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5137:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5148:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5133:3:17"},"nodeType":"YulFunctionCall","src":"5133:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5157:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5112:20:17"},"nodeType":"YulFunctionCall","src":"5112:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5102:6:17"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4889:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4900:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4912:6:17","type":""}],"src":"4853:329:17"},{"body":{"nodeType":"YulBlock","src":"5271:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"5317:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5319:77:17"},"nodeType":"YulFunctionCall","src":"5319:79:17"},"nodeType":"YulExpressionStatement","src":"5319:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5292:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"5301:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5288:3:17"},"nodeType":"YulFunctionCall","src":"5288:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"5313:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5284:3:17"},"nodeType":"YulFunctionCall","src":"5284:32:17"},"nodeType":"YulIf","src":"5281:119:17"},{"nodeType":"YulBlock","src":"5410:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5425:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5439:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5429:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5454:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5489:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5500:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5485:3:17"},"nodeType":"YulFunctionCall","src":"5485:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5509:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5464:20:17"},"nodeType":"YulFunctionCall","src":"5464:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5454:6:17"}]}]},{"nodeType":"YulBlock","src":"5537:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5552:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5566:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5556:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5582:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5617:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5628:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5613:3:17"},"nodeType":"YulFunctionCall","src":"5613:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5637:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5592:20:17"},"nodeType":"YulFunctionCall","src":"5592:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5582:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5233:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5244:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5256:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5264:6:17","type":""}],"src":"5188:474:17"},{"body":{"nodeType":"YulBlock","src":"5696:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5713:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5716:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5706:6:17"},"nodeType":"YulFunctionCall","src":"5706:88:17"},"nodeType":"YulExpressionStatement","src":"5706:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5810:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"5813:4:17","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5803:6:17"},"nodeType":"YulFunctionCall","src":"5803:15:17"},"nodeType":"YulExpressionStatement","src":"5803:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5834:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5837:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5827:6:17"},"nodeType":"YulFunctionCall","src":"5827:15:17"},"nodeType":"YulExpressionStatement","src":"5827:15:17"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"5668:180:17"},{"body":{"nodeType":"YulBlock","src":"5905:269:17","statements":[{"nodeType":"YulAssignment","src":"5915:22:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"5929:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"5935:1:17","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"5925:3:17"},"nodeType":"YulFunctionCall","src":"5925:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"5915:6:17"}]},{"nodeType":"YulVariableDeclaration","src":"5946:38:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"5976:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"5982:1:17","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5972:3:17"},"nodeType":"YulFunctionCall","src":"5972:12:17"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"5950:18:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"6023:51:17","statements":[{"nodeType":"YulAssignment","src":"6037:27:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6051:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6059:4:17","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6047:3:17"},"nodeType":"YulFunctionCall","src":"6047:17:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"6037:6:17"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6003:18:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5996:6:17"},"nodeType":"YulFunctionCall","src":"5996:26:17"},"nodeType":"YulIf","src":"5993:81:17"},{"body":{"nodeType":"YulBlock","src":"6126:42:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"6140:16:17"},"nodeType":"YulFunctionCall","src":"6140:18:17"},"nodeType":"YulExpressionStatement","src":"6140:18:17"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6090:18:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6113:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6121:2:17","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6110:2:17"},"nodeType":"YulFunctionCall","src":"6110:14:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6087:2:17"},"nodeType":"YulFunctionCall","src":"6087:38:17"},"nodeType":"YulIf","src":"6084:84:17"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"5889:4:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"5898:6:17","type":""}],"src":"5854:320:17"},{"body":{"nodeType":"YulBlock","src":"6208:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6225:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6228:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6218:6:17"},"nodeType":"YulFunctionCall","src":"6218:88:17"},"nodeType":"YulExpressionStatement","src":"6218:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6322:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6325:4:17","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6315:6:17"},"nodeType":"YulFunctionCall","src":"6315:15:17"},"nodeType":"YulExpressionStatement","src":"6315:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6346:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6349:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6339:6:17"},"nodeType":"YulFunctionCall","src":"6339:15:17"},"nodeType":"YulExpressionStatement","src":"6339:15:17"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"6180:180:17"},{"body":{"nodeType":"YulBlock","src":"6410:147:17","statements":[{"nodeType":"YulAssignment","src":"6420:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6443:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6425:17:17"},"nodeType":"YulFunctionCall","src":"6425:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"6420:1:17"}]},{"nodeType":"YulAssignment","src":"6454:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"6477:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6459:17:17"},"nodeType":"YulFunctionCall","src":"6459:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"6454:1:17"}]},{"nodeType":"YulAssignment","src":"6488:16:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6499:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"6502:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6495:3:17"},"nodeType":"YulFunctionCall","src":"6495:9:17"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"6488:3:17"}]},{"body":{"nodeType":"YulBlock","src":"6528:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"6530:16:17"},"nodeType":"YulFunctionCall","src":"6530:18:17"},"nodeType":"YulExpressionStatement","src":"6530:18:17"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6520:1:17"},{"name":"sum","nodeType":"YulIdentifier","src":"6523:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6517:2:17"},"nodeType":"YulFunctionCall","src":"6517:10:17"},"nodeType":"YulIf","src":"6514:36:17"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"6397:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"6400:1:17","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"6406:3:17","type":""}],"src":"6366:191:17"},{"body":{"nodeType":"YulBlock","src":"6669:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6691:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6699:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6687:3:17"},"nodeType":"YulFunctionCall","src":"6687:14:17"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nodeType":"YulLiteral","src":"6703:34:17","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6680:6:17"},"nodeType":"YulFunctionCall","src":"6680:58:17"},"nodeType":"YulExpressionStatement","src":"6680:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"6759:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6767:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6755:3:17"},"nodeType":"YulFunctionCall","src":"6755:15:17"},{"hexValue":"207a65726f","kind":"string","nodeType":"YulLiteral","src":"6772:7:17","type":"","value":" zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6748:6:17"},"nodeType":"YulFunctionCall","src":"6748:32:17"},"nodeType":"YulExpressionStatement","src":"6748:32:17"}]},"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"6661:6:17","type":""}],"src":"6563:224:17"},{"body":{"nodeType":"YulBlock","src":"6939:220:17","statements":[{"nodeType":"YulAssignment","src":"6949:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7015:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"7020:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6956:58:17"},"nodeType":"YulFunctionCall","src":"6956:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6949:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7121:3:17"}],"functionName":{"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulIdentifier","src":"7032:88:17"},"nodeType":"YulFunctionCall","src":"7032:93:17"},"nodeType":"YulExpressionStatement","src":"7032:93:17"},{"nodeType":"YulAssignment","src":"7134:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7145:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"7150:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7141:3:17"},"nodeType":"YulFunctionCall","src":"7141:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7134:3:17"}]}]},"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"6927:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"6935:3:17","type":""}],"src":"6793:366:17"},{"body":{"nodeType":"YulBlock","src":"7336:248:17","statements":[{"nodeType":"YulAssignment","src":"7346:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7358:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7369:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7354:3:17"},"nodeType":"YulFunctionCall","src":"7354:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7346:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7393:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7404:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7389:3:17"},"nodeType":"YulFunctionCall","src":"7389:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7412:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"7418:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7408:3:17"},"nodeType":"YulFunctionCall","src":"7408:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7382:6:17"},"nodeType":"YulFunctionCall","src":"7382:47:17"},"nodeType":"YulExpressionStatement","src":"7382:47:17"},{"nodeType":"YulAssignment","src":"7438:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7572:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7446:124:17"},"nodeType":"YulFunctionCall","src":"7446:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7438:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7316:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7331:4:17","type":""}],"src":"7165:419:17"},{"body":{"nodeType":"YulBlock","src":"7696:117:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7718:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7726:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7714:3:17"},"nodeType":"YulFunctionCall","src":"7714:14:17"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"7730:34:17","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7707:6:17"},"nodeType":"YulFunctionCall","src":"7707:58:17"},"nodeType":"YulExpressionStatement","src":"7707:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7786:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7794:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7782:3:17"},"nodeType":"YulFunctionCall","src":"7782:15:17"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"7799:6:17","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7775:6:17"},"nodeType":"YulFunctionCall","src":"7775:31:17"},"nodeType":"YulExpressionStatement","src":"7775:31:17"}]},"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"7688:6:17","type":""}],"src":"7590:223:17"},{"body":{"nodeType":"YulBlock","src":"7965:220:17","statements":[{"nodeType":"YulAssignment","src":"7975:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8041:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"8046:2:17","type":"","value":"36"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7982:58:17"},"nodeType":"YulFunctionCall","src":"7982:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7975:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8147:3:17"}],"functionName":{"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulIdentifier","src":"8058:88:17"},"nodeType":"YulFunctionCall","src":"8058:93:17"},"nodeType":"YulExpressionStatement","src":"8058:93:17"},{"nodeType":"YulAssignment","src":"8160:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8171:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"8176:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8167:3:17"},"nodeType":"YulFunctionCall","src":"8167:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"8160:3:17"}]}]},"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7953:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7961:3:17","type":""}],"src":"7819:366:17"},{"body":{"nodeType":"YulBlock","src":"8362:248:17","statements":[{"nodeType":"YulAssignment","src":"8372:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8384:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"8395:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8380:3:17"},"nodeType":"YulFunctionCall","src":"8380:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8372:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8419:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"8430:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8415:3:17"},"nodeType":"YulFunctionCall","src":"8415:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8438:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"8444:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8434:3:17"},"nodeType":"YulFunctionCall","src":"8434:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8408:6:17"},"nodeType":"YulFunctionCall","src":"8408:47:17"},"nodeType":"YulExpressionStatement","src":"8408:47:17"},{"nodeType":"YulAssignment","src":"8464:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8598:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8472:124:17"},"nodeType":"YulFunctionCall","src":"8472:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8464:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8342:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8357:4:17","type":""}],"src":"8191:419:17"},{"body":{"nodeType":"YulBlock","src":"8722:115:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8744:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8752:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8740:3:17"},"nodeType":"YulFunctionCall","src":"8740:14:17"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nodeType":"YulLiteral","src":"8756:34:17","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8733:6:17"},"nodeType":"YulFunctionCall","src":"8733:58:17"},"nodeType":"YulExpressionStatement","src":"8733:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8812:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8820:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8808:3:17"},"nodeType":"YulFunctionCall","src":"8808:15:17"},{"hexValue":"7373","kind":"string","nodeType":"YulLiteral","src":"8825:4:17","type":"","value":"ss"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8801:6:17"},"nodeType":"YulFunctionCall","src":"8801:29:17"},"nodeType":"YulExpressionStatement","src":"8801:29:17"}]},"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"8714:6:17","type":""}],"src":"8616:221:17"},{"body":{"nodeType":"YulBlock","src":"8989:220:17","statements":[{"nodeType":"YulAssignment","src":"8999:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9065:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9070:2:17","type":"","value":"34"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9006:58:17"},"nodeType":"YulFunctionCall","src":"9006:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8999:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9171:3:17"}],"functionName":{"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulIdentifier","src":"9082:88:17"},"nodeType":"YulFunctionCall","src":"9082:93:17"},"nodeType":"YulExpressionStatement","src":"9082:93:17"},{"nodeType":"YulAssignment","src":"9184:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9195:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9200:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9191:3:17"},"nodeType":"YulFunctionCall","src":"9191:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9184:3:17"}]}]},"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8977:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"8985:3:17","type":""}],"src":"8843:366:17"},{"body":{"nodeType":"YulBlock","src":"9386:248:17","statements":[{"nodeType":"YulAssignment","src":"9396:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9408:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"9419:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9404:3:17"},"nodeType":"YulFunctionCall","src":"9404:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9396:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9443:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"9454:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:17"},"nodeType":"YulFunctionCall","src":"9439:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9462:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"9468:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9458:3:17"},"nodeType":"YulFunctionCall","src":"9458:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9432:6:17"},"nodeType":"YulFunctionCall","src":"9432:47:17"},"nodeType":"YulExpressionStatement","src":"9432:47:17"},{"nodeType":"YulAssignment","src":"9488:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9622:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9496:124:17"},"nodeType":"YulFunctionCall","src":"9496:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9488:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9366:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9381:4:17","type":""}],"src":"9215:419:17"},{"body":{"nodeType":"YulBlock","src":"9746:73:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9768:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"9776:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9764:3:17"},"nodeType":"YulFunctionCall","src":"9764:14:17"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nodeType":"YulLiteral","src":"9780:31:17","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9757:6:17"},"nodeType":"YulFunctionCall","src":"9757:55:17"},"nodeType":"YulExpressionStatement","src":"9757:55:17"}]},"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"9738:6:17","type":""}],"src":"9640:179:17"},{"body":{"nodeType":"YulBlock","src":"9971:220:17","statements":[{"nodeType":"YulAssignment","src":"9981:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10047:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10052:2:17","type":"","value":"29"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9988:58:17"},"nodeType":"YulFunctionCall","src":"9988:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9981:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10153:3:17"}],"functionName":{"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulIdentifier","src":"10064:88:17"},"nodeType":"YulFunctionCall","src":"10064:93:17"},"nodeType":"YulExpressionStatement","src":"10064:93:17"},{"nodeType":"YulAssignment","src":"10166:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10177:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10182:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10173:3:17"},"nodeType":"YulFunctionCall","src":"10173:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"10166:3:17"}]}]},"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9959:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9967:3:17","type":""}],"src":"9825:366:17"},{"body":{"nodeType":"YulBlock","src":"10368:248:17","statements":[{"nodeType":"YulAssignment","src":"10378:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10390:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"10401:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10386:3:17"},"nodeType":"YulFunctionCall","src":"10386:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10378:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10425:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"10436:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10421:3:17"},"nodeType":"YulFunctionCall","src":"10421:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10444:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"10450:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10440:3:17"},"nodeType":"YulFunctionCall","src":"10440:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10414:6:17"},"nodeType":"YulFunctionCall","src":"10414:47:17"},"nodeType":"YulExpressionStatement","src":"10414:47:17"},{"nodeType":"YulAssignment","src":"10470:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10604:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10478:124:17"},"nodeType":"YulFunctionCall","src":"10478:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10470:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10348:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10363:4:17","type":""}],"src":"10197:419:17"},{"body":{"nodeType":"YulBlock","src":"10728:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10750:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"10758:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10746:3:17"},"nodeType":"YulFunctionCall","src":"10746:14:17"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"10762:34:17","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10739:6:17"},"nodeType":"YulFunctionCall","src":"10739:58:17"},"nodeType":"YulExpressionStatement","src":"10739:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10818:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"10826:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10814:3:17"},"nodeType":"YulFunctionCall","src":"10814:15:17"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"10831:7:17","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10807:6:17"},"nodeType":"YulFunctionCall","src":"10807:32:17"},"nodeType":"YulExpressionStatement","src":"10807:32:17"}]},"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"10720:6:17","type":""}],"src":"10622:224:17"},{"body":{"nodeType":"YulBlock","src":"10998:220:17","statements":[{"nodeType":"YulAssignment","src":"11008:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11074:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"11079:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11015:58:17"},"nodeType":"YulFunctionCall","src":"11015:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11008:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11180:3:17"}],"functionName":{"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulIdentifier","src":"11091:88:17"},"nodeType":"YulFunctionCall","src":"11091:93:17"},"nodeType":"YulExpressionStatement","src":"11091:93:17"},{"nodeType":"YulAssignment","src":"11193:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11204:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"11209:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11200:3:17"},"nodeType":"YulFunctionCall","src":"11200:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11193:3:17"}]}]},"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"10986:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10994:3:17","type":""}],"src":"10852:366:17"},{"body":{"nodeType":"YulBlock","src":"11395:248:17","statements":[{"nodeType":"YulAssignment","src":"11405:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11417:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11428:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11413:3:17"},"nodeType":"YulFunctionCall","src":"11413:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11405:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11452:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11463:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11448:3:17"},"nodeType":"YulFunctionCall","src":"11448:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11471:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"11477:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11467:3:17"},"nodeType":"YulFunctionCall","src":"11467:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11441:6:17"},"nodeType":"YulFunctionCall","src":"11441:47:17"},"nodeType":"YulExpressionStatement","src":"11441:47:17"},{"nodeType":"YulAssignment","src":"11497:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11631:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11505:124:17"},"nodeType":"YulFunctionCall","src":"11505:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11497:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11375:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11390:4:17","type":""}],"src":"11224:419:17"},{"body":{"nodeType":"YulBlock","src":"11755:116:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11777:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"11785:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11773:3:17"},"nodeType":"YulFunctionCall","src":"11773:14:17"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nodeType":"YulLiteral","src":"11789:34:17","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11766:6:17"},"nodeType":"YulFunctionCall","src":"11766:58:17"},"nodeType":"YulExpressionStatement","src":"11766:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11845:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"11853:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11841:3:17"},"nodeType":"YulFunctionCall","src":"11841:15:17"},{"hexValue":"657373","kind":"string","nodeType":"YulLiteral","src":"11858:5:17","type":"","value":"ess"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11834:6:17"},"nodeType":"YulFunctionCall","src":"11834:30:17"},"nodeType":"YulExpressionStatement","src":"11834:30:17"}]},"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"11747:6:17","type":""}],"src":"11649:222:17"},{"body":{"nodeType":"YulBlock","src":"12023:220:17","statements":[{"nodeType":"YulAssignment","src":"12033:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12099:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12104:2:17","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12040:58:17"},"nodeType":"YulFunctionCall","src":"12040:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12033:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12205:3:17"}],"functionName":{"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulIdentifier","src":"12116:88:17"},"nodeType":"YulFunctionCall","src":"12116:93:17"},"nodeType":"YulExpressionStatement","src":"12116:93:17"},{"nodeType":"YulAssignment","src":"12218:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12229:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12234:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12225:3:17"},"nodeType":"YulFunctionCall","src":"12225:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12218:3:17"}]}]},"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12011:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12019:3:17","type":""}],"src":"11877:366:17"},{"body":{"nodeType":"YulBlock","src":"12420:248:17","statements":[{"nodeType":"YulAssignment","src":"12430:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12442:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12453:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12438:3:17"},"nodeType":"YulFunctionCall","src":"12438:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12430:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12477:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12488:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12473:3:17"},"nodeType":"YulFunctionCall","src":"12473:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12496:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"12502:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12492:3:17"},"nodeType":"YulFunctionCall","src":"12492:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12466:6:17"},"nodeType":"YulFunctionCall","src":"12466:47:17"},"nodeType":"YulExpressionStatement","src":"12466:47:17"},{"nodeType":"YulAssignment","src":"12522:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12656:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12530:124:17"},"nodeType":"YulFunctionCall","src":"12530:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12522:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12400:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12415:4:17","type":""}],"src":"12249:419:17"},{"body":{"nodeType":"YulBlock","src":"12780:119:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12802:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"12810:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12798:3:17"},"nodeType":"YulFunctionCall","src":"12798:14:17"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nodeType":"YulLiteral","src":"12814:34:17","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12791:6:17"},"nodeType":"YulFunctionCall","src":"12791:58:17"},"nodeType":"YulExpressionStatement","src":"12791:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12870:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"12878:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12866:3:17"},"nodeType":"YulFunctionCall","src":"12866:15:17"},{"hexValue":"616c616e6365","kind":"string","nodeType":"YulLiteral","src":"12883:8:17","type":"","value":"alance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12859:6:17"},"nodeType":"YulFunctionCall","src":"12859:33:17"},"nodeType":"YulExpressionStatement","src":"12859:33:17"}]},"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12772:6:17","type":""}],"src":"12674:225:17"},{"body":{"nodeType":"YulBlock","src":"13051:220:17","statements":[{"nodeType":"YulAssignment","src":"13061:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13127:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13132:2:17","type":"","value":"38"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13068:58:17"},"nodeType":"YulFunctionCall","src":"13068:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13061:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13233:3:17"}],"functionName":{"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulIdentifier","src":"13144:88:17"},"nodeType":"YulFunctionCall","src":"13144:93:17"},"nodeType":"YulExpressionStatement","src":"13144:93:17"},{"nodeType":"YulAssignment","src":"13246:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13257:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13262:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13253:3:17"},"nodeType":"YulFunctionCall","src":"13253:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13246:3:17"}]}]},"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13039:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13047:3:17","type":""}],"src":"12905:366:17"},{"body":{"nodeType":"YulBlock","src":"13448:248:17","statements":[{"nodeType":"YulAssignment","src":"13458:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13470:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"13481:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13466:3:17"},"nodeType":"YulFunctionCall","src":"13466:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13458:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13505:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"13516:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13501:3:17"},"nodeType":"YulFunctionCall","src":"13501:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13524:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"13530:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13520:3:17"},"nodeType":"YulFunctionCall","src":"13520:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13494:6:17"},"nodeType":"YulFunctionCall","src":"13494:47:17"},"nodeType":"YulExpressionStatement","src":"13494:47:17"},{"nodeType":"YulAssignment","src":"13550:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13684:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13558:124:17"},"nodeType":"YulFunctionCall","src":"13558:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13550:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13428:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13443:4:17","type":""}],"src":"13277:419:17"}]},"contents":"{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea26469706673582212203f964721ffb5f8e7386b9365859b9194e4ad9856f3c840f128334936a424267d64736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC67 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xCD6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xCF1 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B1 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x770 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xDED JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x427 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x616 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60D SWAP1 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x685 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67C SWAP1 PUSH2 0xFB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x763 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F6 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F5 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D1 SWAP1 PUSH2 0x1147 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E5 DUP4 DUP4 DUP4 PUSH2 0xA72 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP1 PUSH2 0x11D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA6C DUP5 DUP5 DUP5 PUSH2 0xA77 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAB6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9B JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADE DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH2 0xAE8 DUP2 DUP6 PUSH2 0xA87 JUMP JUMPDEST SWAP4 POP PUSH2 0xAF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA98 JUMP JUMPDEST PUSH2 0xB01 DUP2 PUSH2 0xAC2 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xB26 DUP2 DUP5 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB5E DUP3 PUSH2 0xB33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6E DUP2 PUSH2 0xB53 JUMP JUMPDEST DUP2 EQ PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB8B DUP2 PUSH2 0xB65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA4 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBC1 DUP2 PUSH2 0xB9B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDE JUMPI PUSH2 0xBDD PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBEC DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBFD DUP6 DUP3 DUP7 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC1C DUP2 PUSH2 0xC07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC46 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC61 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC80 JUMPI PUSH2 0xC7F PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC8E DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC9F DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCB0 DUP7 DUP3 DUP8 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD0 DUP2 PUSH2 0xCBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCEB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCC7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD06 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD15 DUP5 DUP3 DUP6 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD54 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDA5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDB8 JUMPI PUSH2 0xDB7 PUSH2 0xD5E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF8 DUP3 PUSH2 0xB91 JUMP JUMPDEST SWAP2 POP PUSH2 0xE03 DUP4 PUSH2 0xB91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xE1B JUMPI PUSH2 0xE1A PUSH2 0xDBE JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE7D PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xE88 DUP3 PUSH2 0xE21 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEAC DUP2 PUSH2 0xE70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F PUSH1 0x24 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xF1A DUP3 PUSH2 0xEB3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3E DUP2 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFA1 PUSH1 0x22 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xFAC DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFD0 DUP2 PUSH2 0xF94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100D PUSH1 0x1D DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x1018 DUP3 PUSH2 0xFD7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x103C DUP2 PUSH2 0x1000 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109F PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10CE DUP2 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1131 PUSH1 0x23 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x113C DUP3 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1160 DUP2 PUSH2 0x1124 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C3 PUSH1 0x26 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x11CE DUP3 PUSH2 0x1167 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11F2 DUP2 PUSH2 0x11B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH SWAP7 SELFBALANCE 0x21 SELFDESTRUCT 0xB5 0xF8 0xE7 CODESIZE PUSH12 0x9365859B9194E4AD9856F3C8 BLOCKHASH CALL 0x28 CALLER 0x49 CALLDATASIZE LOG4 0x24 0x26 PUSH30 0x64736F6C6343000812003300000000000000000000000000000000000000 ","sourceMap":"1532:11312:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;3419:125::-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;655:96:9:-;708:7;734:10;727:17;;655:96;:::o;10457:340:6:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:17:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:224::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:7;6767:2;6759:6;6755:15;6748:32;6563:224;:::o;6793:366::-;6935:3;6956:67;7020:2;7015:3;6956:67;:::i;:::-;6949:74;;7032:93;7121:3;7032:93;:::i;:::-;7150:2;7145:3;7141:12;7134:19;;6793:366;;;:::o;7165:419::-;7331:4;7369:2;7358:9;7354:18;7346:26;;7418:9;7412:4;7408:20;7404:1;7393:9;7389:17;7382:47;7446:131;7572:4;7446:131;:::i;:::-;7438:139;;7165:419;;;:::o;7590:223::-;7730:34;7726:1;7718:6;7714:14;7707:58;7799:6;7794:2;7786:6;7782:15;7775:31;7590:223;:::o;7819:366::-;7961:3;7982:67;8046:2;8041:3;7982:67;:::i;:::-;7975:74;;8058:93;8147:3;8058:93;:::i;:::-;8176:2;8171:3;8167:12;8160:19;;7819:366;;;:::o;8191:419::-;8357:4;8395:2;8384:9;8380:18;8372:26;;8444:9;8438:4;8434:20;8430:1;8419:9;8415:17;8408:47;8472:131;8598:4;8472:131;:::i;:::-;8464:139;;8191:419;;;:::o;8616:221::-;8756:34;8752:1;8744:6;8740:14;8733:58;8825:4;8820:2;8812:6;8808:15;8801:29;8616:221;:::o;8843:366::-;8985:3;9006:67;9070:2;9065:3;9006:67;:::i;:::-;8999:74;;9082:93;9171:3;9082:93;:::i;:::-;9200:2;9195:3;9191:12;9184:19;;8843:366;;;:::o;9215:419::-;9381:4;9419:2;9408:9;9404:18;9396:26;;9468:9;9462:4;9458:20;9454:1;9443:9;9439:17;9432:47;9496:131;9622:4;9496:131;:::i;:::-;9488:139;;9215:419;;;:::o;9640:179::-;9780:31;9776:1;9768:6;9764:14;9757:55;9640:179;:::o;9825:366::-;9967:3;9988:67;10052:2;10047:3;9988:67;:::i;:::-;9981:74;;10064:93;10153:3;10064:93;:::i;:::-;10182:2;10177:3;10173:12;10166:19;;9825:366;;;:::o;10197:419::-;10363:4;10401:2;10390:9;10386:18;10378:26;;10450:9;10444:4;10440:20;10436:1;10425:9;10421:17;10414:47;10478:131;10604:4;10478:131;:::i;:::-;10470:139;;10197:419;;;:::o;10622:224::-;10762:34;10758:1;10750:6;10746:14;10739:58;10831:7;10826:2;10818:6;10814:15;10807:32;10622:224;:::o;10852:366::-;10994:3;11015:67;11079:2;11074:3;11015:67;:::i;:::-;11008:74;;11091:93;11180:3;11091:93;:::i;:::-;11209:2;11204:3;11200:12;11193:19;;10852:366;;;:::o;11224:419::-;11390:4;11428:2;11417:9;11413:18;11405:26;;11477:9;11471:4;11467:20;11463:1;11452:9;11448:17;11441:47;11505:131;11631:4;11505:131;:::i;:::-;11497:139;;11224:419;;;:::o;11649:222::-;11789:34;11785:1;11777:6;11773:14;11766:58;11858:5;11853:2;11845:6;11841:15;11834:30;11649:222;:::o;11877:366::-;12019:3;12040:67;12104:2;12099:3;12040:67;:::i;:::-;12033:74;;12116:93;12205:3;12116:93;:::i;:::-;12234:2;12229:3;12225:12;12218:19;;11877:366;;;:::o;12249:419::-;12415:4;12453:2;12442:9;12438:18;12430:26;;12502:9;12496:4;12492:20;12488:1;12477:9;12473:17;12466:47;12530:131;12656:4;12530:131;:::i;:::-;12522:139;;12249:419;;;:::o;12674:225::-;12814:34;12810:1;12802:6;12798:14;12791:58;12883:8;12878:2;12870:6;12866:15;12859:33;12674:225;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:419::-;13443:4;13481:2;13470:9;13466:18;13458:26;;13530:9;13524:4;13520:20;13516:1;13505:9;13501:17;13494:47;13558:131;13684:4;13558:131;:::i;:::-;13550:139;;13277:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"931000","executionCost":"infinite","totalCost":"infinite"},"external":{"allowance(address,address)":"infinite","approve(address,uint256)":"infinite","balanceOf(address)":"2863","decimals()":"432","decreaseAllowance(address,uint256)":"infinite","increaseAllowance(address,uint256)":"infinite","name()":"infinite","symbol()":"infinite","totalSupply()":"2482","transfer(address,uint256)":"infinite","transferFrom(address,address,uint256)":"infinite"},"internal":{"_afterTokenTransfer(address,address,uint256)":"15","_approve(address,address,uint256)":"infinite","_beforeTokenTransfer(address,address,uint256)":"15","_burn(address,uint256)":"infinite","_mint(address,uint256)":"infinite","_spendAllowance(address,address,uint256)":"infinite","_transfer(address,address,uint256)":"infinite"}},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","increaseAllowance(address,uint256)":"39509351","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * The default value of {decimals} is 18. To change this, you should override\\n * this function so it returns a different value.\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n mapping(address => uint256) private _balances;\\n\\n mapping(address => mapping(address => uint256)) private _allowances;\\n\\n uint256 private _totalSupply;\\n\\n string private _name;\\n string private _symbol;\\n\\n /**\\n * @dev Sets the values for {name} and {symbol}.\\n *\\n * All two of these values are immutable: they can only be set once during\\n * construction.\\n */\\n constructor(string memory name_, string memory symbol_) {\\n _name = name_;\\n _symbol = symbol_;\\n }\\n\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() public view virtual override returns (string memory) {\\n return _name;\\n }\\n\\n /**\\n * @dev Returns the symbol of the token, usually a shorter version of the\\n * name.\\n */\\n function symbol() public view virtual override returns (string memory) {\\n return _symbol;\\n }\\n\\n /**\\n * @dev Returns the number of decimals used to get its user representation.\\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n *\\n * Tokens usually opt for a value of 18, imitating the relationship between\\n * Ether and Wei. This is the default value returned by this function, unless\\n * it's overridden.\\n *\\n * NOTE: This information is only used for _display_ purposes: it in\\n * no way affects any of the arithmetic of the contract, including\\n * {IERC20-balanceOf} and {IERC20-transfer}.\\n */\\n function decimals() public view virtual override returns (uint8) {\\n return 18;\\n }\\n\\n /**\\n * @dev See {IERC20-totalSupply}.\\n */\\n function totalSupply() public view virtual override returns (uint256) {\\n return _totalSupply;\\n }\\n\\n /**\\n * @dev See {IERC20-balanceOf}.\\n */\\n function balanceOf(address account) public view virtual override returns (uint256) {\\n return _balances[account];\\n }\\n\\n /**\\n * @dev See {IERC20-transfer}.\\n *\\n * Requirements:\\n *\\n * - `to` cannot be the zero address.\\n * - the caller must have a balance of at least `amount`.\\n */\\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _transfer(owner, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-allowance}.\\n */\\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n return _allowances[owner][spender];\\n }\\n\\n /**\\n * @dev See {IERC20-approve}.\\n *\\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\\n * `transferFrom`. This is semantically equivalent to an infinite approval.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n */\\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-transferFrom}.\\n *\\n * Emits an {Approval} event indicating the updated allowance. This is not\\n * required by the EIP. See the note at the beginning of {ERC20}.\\n *\\n * NOTE: Does not update the allowance if the current allowance\\n * is the maximum `uint256`.\\n *\\n * Requirements:\\n *\\n * - `from` and `to` cannot be the zero address.\\n * - `from` must have a balance of at least `amount`.\\n * - the caller must have allowance for ``from``'s tokens of at least\\n * `amount`.\\n */\\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\\n address spender = _msgSender();\\n _spendAllowance(from, spender, amount);\\n _transfer(from, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically increases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n */\\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, allowance(owner, spender) + addedValue);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `spender` must have allowance for the caller of at least\\n * `subtractedValue`.\\n */\\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n uint256 currentAllowance = allowance(owner, spender);\\n require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - subtractedValue);\\n }\\n\\n return true;\\n }\\n\\n /**\\n * @dev Moves `amount` of tokens from `from` to `to`.\\n *\\n * This internal function is equivalent to {transfer}, and can be used to\\n * e.g. implement automatic token fees, slashing mechanisms, etc.\\n *\\n * Emits a {Transfer} event.\\n *\\n * Requirements:\\n *\\n * - `from` cannot be the zero address.\\n * - `to` cannot be the zero address.\\n * - `from` must have a balance of at least `amount`.\\n */\\n function _transfer(address from, address to, uint256 amount) internal virtual {\\n require(from != address(0), \\\"ERC20: transfer from the zero address\\\");\\n require(to != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n _beforeTokenTransfer(from, to, amount);\\n\\n uint256 fromBalance = _balances[from];\\n require(fromBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n unchecked {\\n _balances[from] = fromBalance - amount;\\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\\n // decrementing then incrementing.\\n _balances[to] += amount;\\n }\\n\\n emit Transfer(from, to, amount);\\n\\n _afterTokenTransfer(from, to, amount);\\n }\\n\\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n * the total supply.\\n *\\n * Emits a {Transfer} event with `from` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n */\\n function _mint(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n _beforeTokenTransfer(address(0), account, amount);\\n\\n _totalSupply += amount;\\n unchecked {\\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\\n _balances[account] += amount;\\n }\\n emit Transfer(address(0), account, amount);\\n\\n _afterTokenTransfer(address(0), account, amount);\\n }\\n\\n /**\\n * @dev Destroys `amount` tokens from `account`, reducing the\\n * total supply.\\n *\\n * Emits a {Transfer} event with `to` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n * - `account` must have at least `amount` tokens.\\n */\\n function _burn(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n _beforeTokenTransfer(account, address(0), amount);\\n\\n uint256 accountBalance = _balances[account];\\n require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n unchecked {\\n _balances[account] = accountBalance - amount;\\n // Overflow not possible: amount <= accountBalance <= totalSupply.\\n _totalSupply -= amount;\\n }\\n\\n emit Transfer(account, address(0), amount);\\n\\n _afterTokenTransfer(account, address(0), amount);\\n }\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n *\\n * This internal function is equivalent to `approve`, and can be used to\\n * e.g. set automatic allowances for certain subsystems, etc.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `owner` cannot be the zero address.\\n * - `spender` cannot be the zero address.\\n */\\n function _approve(address owner, address spender, uint256 amount) internal virtual {\\n require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n _allowances[owner][spender] = amount;\\n emit Approval(owner, spender, amount);\\n }\\n\\n /**\\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\\n *\\n * Does not update the allowance amount in case of infinite allowance.\\n * Revert if not enough allowance is available.\\n *\\n * Might emit an {Approval} event.\\n */\\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\\n uint256 currentAllowance = allowance(owner, spender);\\n if (currentAllowance != type(uint256).max) {\\n require(currentAllowance >= amount, \\\"ERC20: insufficient allowance\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - amount);\\n }\\n }\\n }\\n\\n /**\\n * @dev Hook that is called before any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * will be transferred to `to`.\\n * - when `from` is zero, `amount` tokens will be minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n\\n /**\\n * @dev Hook that is called after any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * has been transferred to `to`.\\n * - when `from` is zero, `amount` tokens have been minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n}\\n\",\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() external view returns (string memory);\\n\\n /**\\n * @dev Returns the symbol of the token.\\n */\\n function symbol() external view returns (string memory);\\n\\n /**\\n * @dev Returns the decimals places of the token.\\n */\\n function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[{"astId":933,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":939,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":941,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":943,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":945,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Interface of the ERC20 standard as defined in the EIP.","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."},"approve(address,uint256)":{"details":"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."},"balanceOf(address)":{"details":"Returns the amount of tokens owned by `account`."},"totalSupply()":{"details":"Returns the amount of tokens in existence."},"transfer(address,uint256)":{"details":"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."},"transferFrom(address,address,uint256)":{"details":"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."},"approve(address,uint256)":{"details":"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."},"balanceOf(address)":{"details":"Returns the amount of tokens owned by `account`."},"decimals()":{"details":"Returns the decimals places of the token."},"name()":{"details":"Returns the name of the token."},"symbol()":{"details":"Returns the symbol of the token."},"totalSupply()":{"details":"Returns the amount of tokens in existence."},"transfer(address,uint256)":{"details":"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."},"transferFrom(address,address,uint256)":{"details":"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() external view returns (string memory);\\n\\n /**\\n * @dev Returns the symbol of the token.\\n */\\n function symbol() external view returns (string memory);\\n\\n /**\\n * @dev Returns the decimals places of the token.\\n */\\n function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"devdoc":{"details":"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.","kind":"dev","methods":{},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/Gateway.sol":{"Gateway":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"institutionCode","type":"bytes32"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint96","name":"settlePercent","type":"uint96"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"protocolFee","type":"uint64"}],"name":"ProtocolFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"currency","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"indexed":false,"internalType":"struct SharedStructs.Institution[]","name":"institutions","type":"tuple[]"}],"name":"SupportedInstitutionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_institutionCode","type":"bytes32"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFeeDetails","outputs":[{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_code","type":"bytes32"}],"name":"getSupportedInstitutionByCode","outputs":[{"components":[{"internalType":"bytes32","name":"name","type":"bytes32"},{"internalType":"bytes32","name":"currency","type":"bytes32"}],"internalType":"struct SharedStructs.InstitutionByCode","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_currency","type":"bytes32"}],"name":"getSupportedInstitutions","outputs":[{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"internalType":"struct SharedStructs.Institution[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"currency","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"internalType":"struct SharedStructs.Institution[]","name":"institutions","type":"tuple[]"}],"name":"setSupportedInstitutions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_protocolFeePercent","type":"uint64"}],"name":"updateProtocolFee","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","institutionCode":"The code of the institution.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint96)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"constructor":{"custom:oz-upgrades-unsafe-allow":"constructor"},"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":{"details":"See {createOrder-IGateway}. "},"getFeeDetails()":{"details":"See {getFeeDetails-IGateway}. "},"getOrderInfo(bytes32)":{"details":"See {getOrderInfo-IGateway}. "},"getSupportedInstitutionByCode(bytes32)":{"details":"See {getSupportedInstitutionByCode-IGateway}. "},"getSupportedInstitutions(bytes32)":{"details":"See {getSupportedInstitutions-IGateway}. "},"initialize()":{"details":"Initialize function."},"isTokenSupported(address)":{"details":"See {isTokenSupported-IGateway}. "},"owner()":{"details":"Returns the address of the current owner."},"pause()":{"details":"Pause the contract."},"paused()":{"details":"Returns true if the contract is paused, and false otherwise."},"pendingOwner()":{"details":"Returns the address of the pending owner."},"refund(uint256,bytes32)":{"details":"See {refund-IGateway}. "},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."},"setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":{"details":"Sets the supported institutions for a specific currency.","params":{"currency":"The currency for which the institutions are being set.","institutions":"The array of institutions to be set."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"settle(bytes32,bytes32,address,uint64)":{"details":"See {settle-IGateway}. "},"transferOwnership(address)":{"details":"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner."},"unpause()":{"details":"Unpause the contract."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}},"updateProtocolFee(uint64)":{"details":"Updates the protocol fee percentage.","params":{"_protocolFeePercent":"The new protocol fee percentage to be set."}}},"title":"Gateway","version":1},"evm":{"bytecode":{"functionDebugData":{"@_1680":{"entryPoint":null,"id":1680,"parameterSlots":0,"returnSlots":0},"@_disableInitializers_389":{"entryPoint":40,"id":389,"parameterSlots":0,"returnSlots":0},"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack":{"entryPoint":334,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":420,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":373,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":437,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":238,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":407,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a":{"entryPoint":255,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:1638:17","statements":[{"body":{"nodeType":"YulBlock","src":"103:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"120:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"125:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"113:6:17"},"nodeType":"YulFunctionCall","src":"113:19:17"},"nodeType":"YulExpressionStatement","src":"113:19:17"},{"nodeType":"YulAssignment","src":"141:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"160:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"165:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"156:3:17"},"nodeType":"YulFunctionCall","src":"156:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"141:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"75:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"80:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"91:11:17","type":""}],"src":"7:169:17"},{"body":{"nodeType":"YulBlock","src":"288:120:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"310:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"318:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"306:3:17"},"nodeType":"YulFunctionCall","src":"306:14:17"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469","kind":"string","nodeType":"YulLiteral","src":"322:34:17","type":"","value":"Initializable: contract is initi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"299:6:17"},"nodeType":"YulFunctionCall","src":"299:58:17"},"nodeType":"YulExpressionStatement","src":"299:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"378:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"386:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"374:3:17"},"nodeType":"YulFunctionCall","src":"374:15:17"},{"hexValue":"616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"391:9:17","type":"","value":"alizing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"367:6:17"},"nodeType":"YulFunctionCall","src":"367:34:17"},"nodeType":"YulExpressionStatement","src":"367:34:17"}]},"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"280:6:17","type":""}],"src":"182:226:17"},{"body":{"nodeType":"YulBlock","src":"560:220:17","statements":[{"nodeType":"YulAssignment","src":"570:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"636:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"641:2:17","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"577:58:17"},"nodeType":"YulFunctionCall","src":"577:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"570:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"742:3:17"}],"functionName":{"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulIdentifier","src":"653:88:17"},"nodeType":"YulFunctionCall","src":"653:93:17"},"nodeType":"YulExpressionStatement","src":"653:93:17"},{"nodeType":"YulAssignment","src":"755:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"766:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"771:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"762:3:17"},"nodeType":"YulFunctionCall","src":"762:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"755:3:17"}]}]},"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"548:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"556:3:17","type":""}],"src":"414:366:17"},{"body":{"nodeType":"YulBlock","src":"957:248:17","statements":[{"nodeType":"YulAssignment","src":"967:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"979:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"990:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"975:3:17"},"nodeType":"YulFunctionCall","src":"975:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"967:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1014:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1025:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1010:3:17"},"nodeType":"YulFunctionCall","src":"1010:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1033:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"1039:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1029:3:17"},"nodeType":"YulFunctionCall","src":"1029:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1003:6:17"},"nodeType":"YulFunctionCall","src":"1003:47:17"},"nodeType":"YulExpressionStatement","src":"1003:47:17"},{"nodeType":"YulAssignment","src":"1059:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1193:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1067:124:17"},"nodeType":"YulFunctionCall","src":"1067:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1059:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"937:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"952:4:17","type":""}],"src":"786:419:17"},{"body":{"nodeType":"YulBlock","src":"1254:43:17","statements":[{"nodeType":"YulAssignment","src":"1264:27:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1279:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"1286:4:17","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1275:3:17"},"nodeType":"YulFunctionCall","src":"1275:16:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1264:7:17"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1236:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1246:7:17","type":""}],"src":"1211:86:17"},{"body":{"nodeType":"YulBlock","src":"1364:51:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1381:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1402:5:17"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"1386:15:17"},"nodeType":"YulFunctionCall","src":"1386:22:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1374:6:17"},"nodeType":"YulFunctionCall","src":"1374:35:17"},"nodeType":"YulExpressionStatement","src":"1374:35:17"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1352:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1359:3:17","type":""}],"src":"1303:112:17"},{"body":{"nodeType":"YulBlock","src":"1515:120:17","statements":[{"nodeType":"YulAssignment","src":"1525:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1537:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1548:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1533:3:17"},"nodeType":"YulFunctionCall","src":"1533:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1525:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1601:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1614:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1625:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1610:3:17"},"nodeType":"YulFunctionCall","src":"1610:17:17"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"1561:39:17"},"nodeType":"YulFunctionCall","src":"1561:67:17"},"nodeType":"YulExpressionStatement","src":"1561:67:17"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1487:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1499:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1510:4:17","type":""}],"src":"1421:214:17"}]},"contents":"{\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is initi\")\n\n mstore(add(memPtr, 32), \"alizing\")\n\n }\n\n function abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b50620000226200002860201b60201c565b620001d2565b600060019054906101000a900460ff16156200007b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000729062000175565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff1614620000ec5760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000e39190620001b5565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b60006200015d602783620000ee565b91506200016a82620000ff565b604082019050919050565b6000602082019050818103600083015262000190816200014e565b9050919050565b600060ff82169050919050565b620001af8162000197565b82525050565b6000602082019050620001cc6000830184620001a4565b92915050565b61407380620001e26000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806379ba5097116100b8578063c22801031161007c578063c2280103146102dd578063cd9924001461030d578063d12ff20a14610329578063e30c397814610359578063f22ee70414610377578063f2fde38b146103a757610137565b806379ba5097146102825780638129fc1c1461028c5780638456cb59146102965780638da5cb5b146102a0578063b810c636146102be57610137565b80635c975abb116100ff5780635c975abb146101ca578063715018a6146101e857806371eedb88146101f257806375151b6314610222578063768c6ec01461025257610137565b8063026213381461013c578063322008821461016c5780633f4ba83a1461018857806340ebc6771461019257806347094e2e146101ae575b600080fd5b6101566004803603810190610151919061285d565b6103c3565b6040516101639190612977565b60405180910390f35b61018660048036038101906101819190612b47565b610449565b005b6101906105be565b005b6101ac60048036038101906101a79190612c01565b6105d0565b005b6101c860048036038101906101c39190612c81565b610898565b005b6101d2610903565b6040516101df9190612cc9565b60405180910390f35b6101f061091a565b005b61020c60048036038101906102079190612d1a565b61092e565b6040516102199190612cc9565b60405180910390f35b61023c60048036038101906102379190612d5a565b610dce565b6040516102499190612cc9565b60405180910390f35b61026c6004803603810190610267919061285d565b610e2a565b6040516102799190612ea7565b60405180910390f35b61028a611043565b005b6102946110d0565b005b61029e611220565b005b6102a8611232565b6040516102b59190612ed2565b60405180910390f35b6102c661125c565b6040516102d4929190612f0b565b60405180910390f35b6102f760048036038101906102f2919061285d565b611281565b6040516103049190612f63565b60405180910390f35b61032760048036038101906103229190612f7e565b6112c2565b005b610343600480360381019061033e9190613058565b611447565b604051610350919061313d565b60405180910390f35b61036161198d565b60405161036e9190612ed2565b60405180910390f35b610391600480360381019061038c9190613158565b6119b7565b60405161039e9190612cc9565b60405180910390f35b6103c160048036038101906103bc9190612d5a565b612013565b005b606060cd6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561043e578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906103f8565b505050509050919050565b6104516120c0565b60cd6000838152602001908152602001600020600061047091906126eb565b60005b815181101561056f5760cd60008481526020019081526020016000208282815181106104a2576104a16131bf565b5b60200260200101519080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550506040518060400160405280838381518110610507576105066131bf565b5b60200260200101516020015181526020018481525060ce6000848481518110610533576105326131bf565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610473565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516105b29190613308565b60405180910390a25050565b6105c66120c0565b6105ce61213e565b565b6105d86120c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063e90613387565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361074a578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790613419565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610848565b7f61676772656761746f72000000000000000000000000000000000000000000008303610847578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f8906134ab565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610893578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6108a06120c0565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516108f891906134cb565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b6109226120c0565b61092c60006121a1565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613532565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c9061359e565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff1615610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a819061360a565b60405180910390fd5b826101016000848152602001908152602001600020600401541015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613676565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610b78929190613696565b6020604051808303816000875af1158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906136eb565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610c709190613747565b610c7a919061377b565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610d2a9190613747565b6040518363ffffffff1660e01b8152600401610d47929190613696565b6020604051808303816000875af1158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a91906136eb565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610dbb91906137af565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610e205760019050610e25565b600090505b919050565b610e3261270f565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b600061104d6121d2565b90508073ffffffffffffffffffffffffffffffffffffffff1661106e61198d565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061383c565b60405180910390fd5b6110cd816121a1565b50565b60008060019054906101000a900460ff161590508080156111015750600160008054906101000a900460ff1660ff16105b8061112e5750611110306121da565b15801561112d5750600160008054906101000a900460ff1660ff16145b5b61116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906138ce565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156111aa576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506111bc6121fd565b6111c4612256565b801561121d5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516112149190613940565b60405180910390a15b50565b6112286120c0565b6112306122af565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b6112896127cc565b60ce6000838152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b6112ca6120c0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613387565b60405180910390fd5b60018114806113485750600281145b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906139a7565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611442578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161143991906137af565b60405180910390a35b505050565b6000611451612312565b61145e8a8a86898961235c565b600083839050036114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a13565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d6114ce9190613747565b6040518463ffffffff1660e01b81526004016114ec93929190613a33565b6020604051808303816000875af115801561150b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152f91906136eb565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061158190613a6a565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516020016115d9929190613696565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6116229190613ab2565b61162c9190613b23565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6116f4919061377b565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161197796959493929190613bc1565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613532565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061359e565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff1615611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a9061360a565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611b979190613c1d565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611ec9576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611df057610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611d19929190613696565b6020604051808303816000875af1158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c91906136eb565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611ec8578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611e83929190613696565b6020604051808303816000875af1158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec691906136eb565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611efb9190613ab2565b611f059190613b23565b90508061010160008881526020019081526020016000206007016000828254611f2e919061377b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611f70929190613696565b6020604051808303816000875af1158015611f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb391906136eb565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ffd929190613c8e565b60405180910390a3600192505050949350505050565b61201b6120c0565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661207b611232565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6120c86121d2565b73ffffffffffffffffffffffffffffffffffffffff166120e6611232565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613d03565b60405180910390fd5b565b61214661250f565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61218a6121d2565b6040516121979190612ed2565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556121cf81612558565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390613d95565b60405180910390fd5b61225461261e565b565b600060019054906101000a900460ff166122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613d95565b60405180910390fd5b6122ad61267f565b565b6122b7612312565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122fb6121d2565b6040516123089190612ed2565b60405180910390a1565b61231a610903565b1561235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190613e01565b60405180910390fd5b565b600160cc60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d590613e6d565b60405180910390fd5b60008403612421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241890613ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248790613f45565b60405180910390fd5b6000811461250857600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe90613fb1565b60405180910390fd5b5b5050505050565b612517610903565b612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d9061401d565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1661266d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266490613d95565b60405180910390fd5b61267d6126786121d2565b6121a1565b565b600060019054906101000a900460ff166126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c590613d95565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061270c91906127ec565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b604051806040016040528060008019168152602001600080191681525090565b5b8082111561280f576000808201600090556001820160009055506002016127ed565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61283a81612827565b811461284557600080fd5b50565b60008135905061285781612831565b92915050565b6000602082840312156128735761287261281d565b5b600061288184828501612848565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128bf81612827565b82525050565b6040820160008201516128db60008501826128b6565b5060208201516128ee60208501826128b6565b50505050565b600061290083836128c5565b60408301905092915050565b6000602082019050919050565b60006129248261288a565b61292e8185612895565b9350612939836128a6565b8060005b8381101561296a57815161295188826128f4565b975061295c8361290c565b92505060018101905061293d565b5085935050505092915050565b600060208201905081810360008301526129918184612919565b905092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129e78261299e565b810181811067ffffffffffffffff82111715612a0657612a056129af565b5b80604052505050565b6000612a19612813565b9050612a2582826129de565b919050565b600067ffffffffffffffff821115612a4557612a446129af565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215612a7657612a75612a5b565b5b612a806040612a0f565b90506000612a9084828501612848565b6000830152506020612aa484828501612848565b60208301525092915050565b6000612ac3612abe84612a2a565b612a0f565b90508083825260208201905060408402830185811115612ae657612ae5612a56565b5b835b81811015612b0f5780612afb8882612a60565b845260208401935050604081019050612ae8565b5050509392505050565b600082601f830112612b2e57612b2d612999565b5b8135612b3e848260208601612ab0565b91505092915050565b60008060408385031215612b5e57612b5d61281d565b5b6000612b6c85828601612848565b925050602083013567ffffffffffffffff811115612b8d57612b8c612822565b5b612b9985828601612b19565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bce82612ba3565b9050919050565b612bde81612bc3565b8114612be957600080fd5b50565b600081359050612bfb81612bd5565b92915050565b60008060408385031215612c1857612c1761281d565b5b6000612c2685828601612848565b9250506020612c3785828601612bec565b9150509250929050565b600067ffffffffffffffff82169050919050565b612c5e81612c41565b8114612c6957600080fd5b50565b600081359050612c7b81612c55565b92915050565b600060208284031215612c9757612c9661281d565b5b6000612ca584828501612c6c565b91505092915050565b60008115159050919050565b612cc381612cae565b82525050565b6000602082019050612cde6000830184612cba565b92915050565b6000819050919050565b612cf781612ce4565b8114612d0257600080fd5b50565b600081359050612d1481612cee565b92915050565b60008060408385031215612d3157612d3061281d565b5b6000612d3f85828601612d05565b9250506020612d5085828601612848565b9150509250929050565b600060208284031215612d7057612d6f61281d565b5b6000612d7e84828501612bec565b91505092915050565b612d9081612bc3565b82525050565b612d9f81612ce4565b82525050565b612dae81612cae565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612dd581612db4565b82525050565b61014082016000820151612df26000850182612d87565b506020820151612e056020850182612d87565b506040820151612e186040850182612d87565b506060820151612e2b6060850182612d96565b506080820151612e3e6080850182612d96565b5060a0820151612e5160a0850182612da5565b5060c0820151612e6460c0850182612da5565b5060e0820151612e7760e0850182612d87565b50610100820151612e8c610100850182612dcc565b50610120820151612ea1610120850182612d96565b50505050565b600061014082019050612ebd6000830184612ddb565b92915050565b612ecc81612bc3565b82525050565b6000602082019050612ee76000830184612ec3565b92915050565b612ef681612c41565b82525050565b612f0581612ce4565b82525050565b6000604082019050612f206000830185612eed565b612f2d6020830184612efc565b9392505050565b604082016000820151612f4a60008501826128b6565b506020820151612f5d60208501826128b6565b50505050565b6000604082019050612f786000830184612f34565b92915050565b600080600060608486031215612f9757612f9661281d565b5b6000612fa586828701612848565b9350506020612fb686828701612bec565b9250506040612fc786828701612d05565b9150509250925092565b612fda81612db4565b8114612fe557600080fd5b50565b600081359050612ff781612fd1565b92915050565b600080fd5b60008083601f84011261301857613017612999565b5b8235905067ffffffffffffffff81111561303557613034612ffd565b5b60208301915083600182028301111561305157613050612a56565b5b9250929050565b60008060008060008060008060006101008a8c03121561307b5761307a61281d565b5b60006130898c828d01612bec565b995050602061309a8c828d01612d05565b98505060406130ab8c828d01612848565b97505060606130bc8c828d01612fe8565b96505060806130cd8c828d01612bec565b95505060a06130de8c828d01612d05565b94505060c06130ef8c828d01612bec565b93505060e08a013567ffffffffffffffff8111156131105761310f612822565b5b61311c8c828d01613002565b92509250509295985092959850929598565b61313781612827565b82525050565b6000602082019050613152600083018461312e565b92915050565b600080600080608085870312156131725761317161281d565b5b600061318087828801612848565b945050602061319187828801612848565b93505060406131a287828801612bec565b92505060606131b387828801612c6c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b60006132386132338361320e565b61321b565b9050919050565b60408201600080830154905061325481613225565b61326160008601826128b6565b506001830154905061327281613225565b61327f60208601826128b6565b5050505050565b6000613292838361323f565b60408301905092915050565b6000600282019050919050565b60006132b6826131ee565b6132c08185612895565b93506132cb836131f9565b8060005b838110156132fb57816132e28882613286565b97506132ed8361329e565b9250506001810190506132cf565b5085935050505092915050565b6000602082019050818103600083015261332281846132ab565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061337160158361332a565b915061337c8261333b565b602082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b600061340360258361332a565b915061340e826133a7565b604082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b600061349560278361332a565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b60006020820190506134e06000830184612eed565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b600061351c600e8361332a565b9150613527826134e6565b602082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b6000613588600e8361332a565b915061359382613552565b602082019050919050565b600060208201905081810360008301526135b78161357b565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006135f4600d8361332a565b91506135ff826135be565b602082019050919050565b60006020820190508181036000830152613623816135e7565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b600061366060158361332a565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b60006040820190506136ab6000830185612ec3565b6136b86020830184612efc565b9392505050565b6136c881612cae565b81146136d357600080fd5b50565b6000815190506136e5816136bf565b92915050565b6000602082840312156137015761370061281d565b5b600061370f848285016136d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375282612ce4565b915061375d83612ce4565b925082820190508082111561377557613774613718565b5b92915050565b600061378682612ce4565b915061379183612ce4565b92508282039050818111156137a9576137a8613718565b5b92915050565b60006020820190506137c46000830184612efc565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b600061382660298361332a565b9150613831826137ca565b604082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006138b8602e8361332a565b91506138c38261385c565b604082019050919050565b600060208201905081810360008301526138e7816138ab565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600061392a613925613920846138ee565b613905565b6138f8565b9050919050565b61393a8161390f565b82525050565b60006020820190506139556000830184613931565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b600061399160178361332a565b915061399c8261395b565b602082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006139fd60128361332a565b9150613a08826139c7565b602082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b6000606082019050613a486000830186612ec3565b613a556020830185612ec3565b613a626040830184612efc565b949350505050565b6000613a7582612ce4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aa757613aa6613718565b5b600182019050919050565b6000613abd82612ce4565b9150613ac883612ce4565b9250828202613ad681612ce4565b91508282048414831517613aed57613aec613718565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b2e82612ce4565b9150613b3983612ce4565b925082613b4957613b48613af4565b5b828204905092915050565b6000613b6f613b6a613b6584612db4565b613905565b612ce4565b9050919050565b613b7f81613b54565b82525050565b82818337600083830152505050565b6000613ba0838561332a565b9350613bad838584613b85565b613bb68361299e565b840190509392505050565b600060a082019050613bd66000830189612efc565b613be3602083018861312e565b613bf06040830187613b76565b613bfd606083018661312e565b8181036080830152613c10818486613b94565b9050979650505050505050565b6000613c2882612db4565b9150613c3383612db4565b925082820390506bffffffffffffffffffffffff811115613c5757613c56613718565b5b92915050565b6000613c78613c73613c6e84612c41565b613905565b612db4565b9050919050565b613c8881613c5d565b82525050565b6000604082019050613ca3600083018561312e565b613cb06020830184613c7f565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ced60208361332a565b9150613cf882613cb7565b602082019050919050565b60006020820190508181036000830152613d1c81613ce0565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613d7f602b8361332a565b9150613d8a82613d23565b604082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613deb60108361332a565b9150613df682613db5565b602082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613e5760118361332a565b9150613e6282613e21565b602082019050919050565b60006020820190508181036000830152613e8681613e4a565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613ec3600c8361332a565b9150613ece82613e8d565b602082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613f2f60108361332a565b9150613f3a82613ef9565b602082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613f9b60198361332a565b9150613fa682613f65565b602082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061400760148361332a565b915061401282613fd1565b602082019050919050565b6000602082019050818103600083015261403681613ffa565b905091905056fea26469706673582212207dab2d8943229ee0ffe5f5e542da3ea20341c382d0e9de16603ee6cdba0d8e8f64736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x22 PUSH3 0x28 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1D2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x7B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x72 SWAP1 PUSH3 0x175 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF DUP1 AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ PUSH3 0xEC JUMPI PUSH1 0xFF PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0xFF PUSH1 0x40 MLOAD PUSH3 0xE3 SWAP2 SWAP1 PUSH3 0x1B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320696E697469 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C697A696E6700000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x15D PUSH1 0x27 DUP4 PUSH3 0xEE JUMP JUMPDEST SWAP2 POP PUSH3 0x16A DUP3 PUSH3 0xFF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x190 DUP2 PUSH3 0x14E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1AF DUP2 PUSH3 0x197 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1CC PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1A4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4073 DUP1 PUSH3 0x1E2 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x137 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79BA5097 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xC2280103 GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xC2280103 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0xD12FF20A EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x359 JUMPI DUP1 PUSH4 0xF22EE704 EQ PUSH2 0x377 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3A7 JUMPI PUSH2 0x137 JUMP JUMPDEST DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x296 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2A0 JUMPI DUP1 PUSH4 0xB810C636 EQ PUSH2 0x2BE JUMPI PUSH2 0x137 JUMP JUMPDEST DUP1 PUSH4 0x5C975ABB GT PUSH2 0xFF JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x252 JUMPI PUSH2 0x137 JUMP JUMPDEST DUP1 PUSH4 0x2621338 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x32200882 EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x188 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x47094E2E EQ PUSH2 0x1AE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x156 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x151 SWAP2 SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH2 0x3C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x163 SWAP2 SWAP1 PUSH2 0x2977 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x186 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x181 SWAP2 SWAP1 PUSH2 0x2B47 JUMP JUMPDEST PUSH2 0x449 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x190 PUSH2 0x5BE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x2C01 JUMP JUMPDEST PUSH2 0x5D0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x2C81 JUMP JUMPDEST PUSH2 0x898 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D2 PUSH2 0x903 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH2 0x91A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x2D1A JUMP JUMPDEST PUSH2 0x92E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x2D5A JUMP JUMPDEST PUSH2 0xDCE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x267 SWAP2 SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH2 0xE2A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x279 SWAP2 SWAP1 PUSH2 0x2EA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28A PUSH2 0x1043 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x294 PUSH2 0x10D0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x29E PUSH2 0x1220 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A8 PUSH2 0x1232 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B5 SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C6 PUSH2 0x125C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP3 SWAP2 SWAP1 PUSH2 0x2F0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH2 0x1281 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x304 SWAP2 SWAP1 PUSH2 0x2F63 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x327 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x2F7E JUMP JUMPDEST PUSH2 0x12C2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x343 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33E SWAP2 SWAP1 PUSH2 0x3058 JUMP JUMPDEST PUSH2 0x1447 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x350 SWAP2 SWAP1 PUSH2 0x313D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x361 PUSH2 0x198D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36E SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x391 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38C SWAP2 SWAP1 PUSH2 0x3158 JUMP JUMPDEST PUSH2 0x19B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3BC SWAP2 SWAP1 PUSH2 0x2D5A JUMP JUMPDEST PUSH2 0x2013 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x43E JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3F8 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x451 PUSH2 0x20C0 JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x470 SWAP2 SWAP1 PUSH2 0x26EB JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x56F JUMPI PUSH1 0xCD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x4A2 JUMPI PUSH2 0x4A1 PUSH2 0x31BF JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x507 JUMPI PUSH2 0x506 PUSH2 0x31BF JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP PUSH1 0xCE PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x533 JUMPI PUSH2 0x532 PUSH2 0x31BF JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP DUP1 PUSH1 0x1 ADD SWAP1 POP PUSH2 0x473 JUMP JUMPDEST POP DUP2 PUSH32 0x58F3A30EC15A8D3E09FA65F9EF10219BC7A9A99D872A4ED895C37C2E761AC2AC PUSH1 0xCD PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x5B2 SWAP2 SWAP1 PUSH2 0x3308 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x5C6 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x5CE PUSH2 0x213E JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x5D8 PUSH2 0x20C0 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x647 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x63E SWAP1 PUSH2 0x3387 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x74A JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x700 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6F7 SWAP1 PUSH2 0x3419 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x848 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x847 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x801 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F8 SWAP1 PUSH2 0x34AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x893 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8A0 PUSH2 0x20C0 JUMP JUMPDEST DUP1 PUSH1 0x98 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x1CE29A697A4765BD17D91DF93BA75B250B629ECF030553FF1F6AB59F15AE6C7B DUP2 PUSH1 0x40 MLOAD PUSH2 0x8F8 SWAP2 SWAP1 PUSH2 0x34CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x922 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x92C PUSH1 0x0 PUSH2 0x21A1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B7 SWAP1 PUSH2 0x3532 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA25 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA1C SWAP1 PUSH2 0x359E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA81 SWAP1 PUSH2 0x360A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0xAE4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xADB SWAP1 PUSH2 0x3676 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB78 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB97 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xBBB SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP4 PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0xC70 SWAP2 SWAP1 PUSH2 0x3747 JUMP JUMPDEST PUSH2 0xC7A SWAP2 SWAP1 PUSH2 0x377B JUMP JUMPDEST SWAP1 POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0xD2A SWAP2 SWAP1 PUSH2 0x3747 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD47 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD66 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD8A SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xDBB SWAP2 SWAP1 PUSH2 0x37AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SUB PUSH2 0xE20 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xE25 JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE32 PUSH2 0x270F JUMP JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x104D PUSH2 0x21D2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x106E PUSH2 0x198D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x10C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10BB SWAP1 PUSH2 0x383C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x10CD DUP2 PUSH2 0x21A1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1101 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x112E JUMPI POP PUSH2 0x1110 ADDRESS PUSH2 0x21DA JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x112D JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x116D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1164 SWAP1 PUSH2 0x38CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x11AA JUMPI PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x11BC PUSH2 0x21FD JUMP JUMPDEST PUSH2 0x11C4 PUSH2 0x2256 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x121D JUMPI PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1214 SWAP2 SWAP1 PUSH2 0x3940 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x1228 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x1230 PUSH2 0x22AF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x97 SLOAD SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x1289 PUSH2 0x27CC JUMP JUMPDEST PUSH1 0xCE PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12CA PUSH2 0x20C0 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1339 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1330 SWAP1 PUSH2 0x3387 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x1348 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x1387 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x137E SWAP1 PUSH2 0x39A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1442 JUMPI DUP1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x1439 SWAP2 SWAP1 PUSH2 0x37AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1451 PUSH2 0x2312 JUMP JUMPDEST PUSH2 0x145E DUP11 DUP11 DUP7 DUP10 DUP10 PUSH2 0x235C JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0x14A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x149B SWAP1 PUSH2 0x3A13 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP14 PUSH2 0x14CE SWAP2 SWAP1 PUSH2 0x3747 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14EC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A33 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x150B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x152F SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1581 SWAP1 PUSH2 0x3A6A JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x15D9 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH1 0x97 SLOAD PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP12 PUSH2 0x1622 SWAP2 SWAP1 PUSH2 0x3AB2 JUMP JUMPDEST PUSH2 0x162C SWAP2 SWAP1 PUSH2 0x3B23 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP13 PUSH2 0x16F4 SWAP2 SWAP1 PUSH2 0x377B JUMP JUMPDEST DUP2 MSTORE POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x3BDD0D86E09A22D7CE596118BD3CA5EC73EA47533A465BE37621E913ED2BF333 DUP5 DUP7 DUP14 DUP16 DUP12 DUP12 PUSH1 0x40 MLOAD PUSH2 0x1977 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3BC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A49 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A40 SWAP1 PUSH2 0x3532 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1AAE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AA5 SWAP1 PUSH2 0x359E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B13 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B0A SWAP1 PUSH2 0x360A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1B97 SWAP2 SWAP1 PUSH2 0x3C1D JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1EC9 JUMPI PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ PUSH2 0x1DF0 JUMPI PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D19 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D38 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1D5C SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ PUSH2 0x1EC8 JUMPI DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E83 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EA2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1EC6 SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x97 SLOAD DUP5 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1EFB SWAP2 SWAP1 PUSH2 0x3AB2 JUMP JUMPDEST PUSH2 0x1F05 SWAP2 SWAP1 PUSH2 0x3B23 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F2E SWAP2 SWAP1 PUSH2 0x377B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP7 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F70 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F8F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1FB3 SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH32 0x98ECE21E01A01CBE1D1C0DAD3B053C8FBD368F99BE78BE958FCF1D1D13FD249A DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1FFD SWAP3 SWAP2 SWAP1 PUSH2 0x3C8E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP3 POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x201B PUSH2 0x20C0 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x207B PUSH2 0x1232 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x20C8 PUSH2 0x21D2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20E6 PUSH2 0x1232 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x213C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2133 SWAP1 PUSH2 0x3D03 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2146 PUSH2 0x250F JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x218A PUSH2 0x21D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2197 SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x21CF DUP2 PUSH2 0x2558 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x224C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2243 SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2254 PUSH2 0x261E JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x22A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x229C SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x22AD PUSH2 0x267F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x22B7 PUSH2 0x2312 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x22FB PUSH2 0x21D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2308 SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x231A PUSH2 0x903 JUMP JUMPDEST ISZERO PUSH2 0x235A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2351 SWAP1 PUSH2 0x3E01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ PUSH2 0x23DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23D5 SWAP1 PUSH2 0x3E6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 SUB PUSH2 0x2421 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2418 SWAP1 PUSH2 0x3ED9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2490 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2487 SWAP1 PUSH2 0x3F45 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 EQ PUSH2 0x2508 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2507 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24FE SWAP1 PUSH2 0x3FB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2517 PUSH2 0x903 JUMP JUMPDEST PUSH2 0x2556 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x254D SWAP1 PUSH2 0x401D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x266D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2664 SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x267D PUSH2 0x2678 PUSH2 0x21D2 JUMP JUMPDEST PUSH2 0x21A1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x26CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x26C5 SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x270C SWAP2 SWAP1 PUSH2 0x27EC JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP1 NOT AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 NOT AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x280F JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0x27ED JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x283A DUP2 PUSH2 0x2827 JUMP JUMPDEST DUP2 EQ PUSH2 0x2845 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2857 DUP2 PUSH2 0x2831 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2873 JUMPI PUSH2 0x2872 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2881 DUP5 DUP3 DUP6 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x28BF DUP2 PUSH2 0x2827 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x28DB PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x28EE PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2900 DUP4 DUP4 PUSH2 0x28C5 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2924 DUP3 PUSH2 0x288A JUMP JUMPDEST PUSH2 0x292E DUP2 DUP6 PUSH2 0x2895 JUMP JUMPDEST SWAP4 POP PUSH2 0x2939 DUP4 PUSH2 0x28A6 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x296A JUMPI DUP2 MLOAD PUSH2 0x2951 DUP9 DUP3 PUSH2 0x28F4 JUMP JUMPDEST SWAP8 POP PUSH2 0x295C DUP4 PUSH2 0x290C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x293D JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2991 DUP2 DUP5 PUSH2 0x2919 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x29E7 DUP3 PUSH2 0x299E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2A06 JUMPI PUSH2 0x2A05 PUSH2 0x29AF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A19 PUSH2 0x2813 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A25 DUP3 DUP3 PUSH2 0x29DE JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A45 JUMPI PUSH2 0x2A44 PUSH2 0x29AF JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A76 JUMPI PUSH2 0x2A75 PUSH2 0x2A5B JUMP JUMPDEST JUMPDEST PUSH2 0x2A80 PUSH1 0x40 PUSH2 0x2A0F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2A90 DUP5 DUP3 DUP6 ADD PUSH2 0x2848 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x2AA4 DUP5 DUP3 DUP6 ADD PUSH2 0x2848 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AC3 PUSH2 0x2ABE DUP5 PUSH2 0x2A2A JUMP JUMPDEST PUSH2 0x2A0F JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x40 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x2AE6 JUMPI PUSH2 0x2AE5 PUSH2 0x2A56 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2B0F JUMPI DUP1 PUSH2 0x2AFB DUP9 DUP3 PUSH2 0x2A60 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x40 DUP2 ADD SWAP1 POP PUSH2 0x2AE8 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2B2E JUMPI PUSH2 0x2B2D PUSH2 0x2999 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2B3E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2AB0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2B5E JUMPI PUSH2 0x2B5D PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B6C DUP6 DUP3 DUP7 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2B8D JUMPI PUSH2 0x2B8C PUSH2 0x2822 JUMP JUMPDEST JUMPDEST PUSH2 0x2B99 DUP6 DUP3 DUP7 ADD PUSH2 0x2B19 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BCE DUP3 PUSH2 0x2BA3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BDE DUP2 PUSH2 0x2BC3 JUMP JUMPDEST DUP2 EQ PUSH2 0x2BE9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2BFB DUP2 PUSH2 0x2BD5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2C18 JUMPI PUSH2 0x2C17 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2C26 DUP6 DUP3 DUP7 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2C37 DUP6 DUP3 DUP7 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C5E DUP2 PUSH2 0x2C41 JUMP JUMPDEST DUP2 EQ PUSH2 0x2C69 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C7B DUP2 PUSH2 0x2C55 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2C97 JUMPI PUSH2 0x2C96 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CA5 DUP5 DUP3 DUP6 ADD PUSH2 0x2C6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2CC3 DUP2 PUSH2 0x2CAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CDE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CBA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2CF7 DUP2 PUSH2 0x2CE4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2D02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2D14 DUP2 PUSH2 0x2CEE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D31 JUMPI PUSH2 0x2D30 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D3F DUP6 DUP3 DUP7 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D50 DUP6 DUP3 DUP7 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D70 JUMPI PUSH2 0x2D6F PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D7E DUP5 DUP3 DUP6 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2D90 DUP2 PUSH2 0x2BC3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2D9F DUP2 PUSH2 0x2CE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2DAE DUP2 PUSH2 0x2CAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DD5 DUP2 PUSH2 0x2DB4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2DF2 PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2E05 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x2E18 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x2E2B PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x2D96 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x2E3E PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x2D96 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x2E51 PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x2DA5 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x2E64 PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x2DA5 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x2E77 PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x2E8C PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x2DCC JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x2EA1 PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x2D96 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x2EBD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2DDB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2ECC DUP2 PUSH2 0x2BC3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2EE7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EC3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2EF6 DUP2 PUSH2 0x2C41 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F05 DUP2 PUSH2 0x2CE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2F20 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2EED JUMP JUMPDEST PUSH2 0x2F2D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2F4A PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2F5D PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2F78 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F34 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2F97 JUMPI PUSH2 0x2F96 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2FA5 DUP7 DUP3 DUP8 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2FB6 DUP7 DUP3 DUP8 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2FC7 DUP7 DUP3 DUP8 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x2FDA DUP2 PUSH2 0x2DB4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2FE5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FF7 DUP2 PUSH2 0x2FD1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3018 JUMPI PUSH2 0x3017 PUSH2 0x2999 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3035 JUMPI PUSH2 0x3034 PUSH2 0x2FFD JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3051 JUMPI PUSH2 0x3050 PUSH2 0x2A56 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x100 DUP11 DUP13 SUB SLT ISZERO PUSH2 0x307B JUMPI PUSH2 0x307A PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3089 DUP13 DUP3 DUP14 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP10 POP POP PUSH1 0x20 PUSH2 0x309A DUP13 DUP3 DUP14 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x40 PUSH2 0x30AB DUP13 DUP3 DUP14 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 PUSH2 0x30BC DUP13 DUP3 DUP14 ADD PUSH2 0x2FE8 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x80 PUSH2 0x30CD DUP13 DUP3 DUP14 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP6 POP POP PUSH1 0xA0 PUSH2 0x30DE DUP13 DUP3 DUP14 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xC0 PUSH2 0x30EF DUP13 DUP3 DUP14 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP4 POP POP PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3110 JUMPI PUSH2 0x310F PUSH2 0x2822 JUMP JUMPDEST JUMPDEST PUSH2 0x311C DUP13 DUP3 DUP14 ADD PUSH2 0x3002 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH2 0x3137 DUP2 PUSH2 0x2827 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3152 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x312E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x3172 JUMPI PUSH2 0x3171 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3180 DUP8 DUP3 DUP9 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x3191 DUP8 DUP3 DUP9 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x31A2 DUP8 DUP3 DUP9 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x31B3 DUP8 DUP3 DUP9 ADD PUSH2 0x2C6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3238 PUSH2 0x3233 DUP4 PUSH2 0x320E JUMP JUMPDEST PUSH2 0x321B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3254 DUP2 PUSH2 0x3225 JUMP JUMPDEST PUSH2 0x3261 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP PUSH1 0x1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3272 DUP2 PUSH2 0x3225 JUMP JUMPDEST PUSH2 0x327F PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3292 DUP4 DUP4 PUSH2 0x323F JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32B6 DUP3 PUSH2 0x31EE JUMP JUMPDEST PUSH2 0x32C0 DUP2 DUP6 PUSH2 0x2895 JUMP JUMPDEST SWAP4 POP PUSH2 0x32CB DUP4 PUSH2 0x31F9 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x32FB JUMPI DUP2 PUSH2 0x32E2 DUP9 DUP3 PUSH2 0x3286 JUMP JUMPDEST SWAP8 POP PUSH2 0x32ED DUP4 PUSH2 0x329E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x32CF JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3322 DUP2 DUP5 PUSH2 0x32AB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3371 PUSH1 0x15 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x337C DUP3 PUSH2 0x333B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33A0 DUP2 PUSH2 0x3364 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3403 PUSH1 0x25 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x340E DUP3 PUSH2 0x33A7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3432 DUP2 PUSH2 0x33F6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3495 PUSH1 0x27 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x34A0 DUP3 PUSH2 0x3439 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34C4 DUP2 PUSH2 0x3488 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x34E0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x351C PUSH1 0xE DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3527 DUP3 PUSH2 0x34E6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x354B DUP2 PUSH2 0x350F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3588 PUSH1 0xE DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3593 DUP3 PUSH2 0x3552 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35B7 DUP2 PUSH2 0x357B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35F4 PUSH1 0xD DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x35FF DUP3 PUSH2 0x35BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3623 DUP2 PUSH2 0x35E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3660 PUSH1 0x15 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x366B DUP3 PUSH2 0x362A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x368F DUP2 PUSH2 0x3653 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x36AB PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x36B8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x36C8 DUP2 PUSH2 0x2CAE JUMP JUMPDEST DUP2 EQ PUSH2 0x36D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x36E5 DUP2 PUSH2 0x36BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3701 JUMPI PUSH2 0x3700 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x370F DUP5 DUP3 DUP6 ADD PUSH2 0x36D6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3752 DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x375D DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3775 JUMPI PUSH2 0x3774 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3786 DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3791 DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x37A9 JUMPI PUSH2 0x37A8 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37C4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3826 PUSH1 0x29 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3831 DUP3 PUSH2 0x37CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3855 DUP2 PUSH2 0x3819 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38B8 PUSH1 0x2E DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x38C3 DUP3 PUSH2 0x385C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38E7 DUP2 PUSH2 0x38AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x392A PUSH2 0x3925 PUSH2 0x3920 DUP5 PUSH2 0x38EE JUMP JUMPDEST PUSH2 0x3905 JUMP JUMPDEST PUSH2 0x38F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x393A DUP2 PUSH2 0x390F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3955 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3931 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3991 PUSH1 0x17 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x399C DUP3 PUSH2 0x395B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39C0 DUP2 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39FD PUSH1 0x12 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3A08 DUP3 PUSH2 0x39C7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A2C DUP2 PUSH2 0x39F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3A48 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x3A55 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x3A62 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A75 DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3AA7 JUMPI PUSH2 0x3AA6 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3ABD DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3AC8 DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3AD6 DUP2 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x3AED JUMPI PUSH2 0x3AEC PUSH2 0x3718 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3B2E DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3B39 DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3B49 JUMPI PUSH2 0x3B48 PUSH2 0x3AF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B6F PUSH2 0x3B6A PUSH2 0x3B65 DUP5 PUSH2 0x2DB4 JUMP JUMPDEST PUSH2 0x3905 JUMP JUMPDEST PUSH2 0x2CE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B7F DUP2 PUSH2 0x3B54 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BA0 DUP4 DUP6 PUSH2 0x332A JUMP JUMPDEST SWAP4 POP PUSH2 0x3BAD DUP4 DUP6 DUP5 PUSH2 0x3B85 JUMP JUMPDEST PUSH2 0x3BB6 DUP4 PUSH2 0x299E JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3BD6 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x2EFC JUMP JUMPDEST PUSH2 0x3BE3 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x3BF0 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x3B76 JUMP JUMPDEST PUSH2 0x3BFD PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x312E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x3C10 DUP2 DUP5 DUP7 PUSH2 0x3B94 JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C28 DUP3 PUSH2 0x2DB4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C33 DUP4 PUSH2 0x2DB4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3C57 JUMPI PUSH2 0x3C56 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C78 PUSH2 0x3C73 PUSH2 0x3C6E DUP5 PUSH2 0x2C41 JUMP JUMPDEST PUSH2 0x3905 JUMP JUMPDEST PUSH2 0x2DB4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3C88 DUP2 PUSH2 0x3C5D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3CA3 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x3CB0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3C7F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CED PUSH1 0x20 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3CF8 DUP3 PUSH2 0x3CB7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D1C DUP2 PUSH2 0x3CE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D7F PUSH1 0x2B DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3D8A DUP3 PUSH2 0x3D23 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DAE DUP2 PUSH2 0x3D72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DEB PUSH1 0x10 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3DF6 DUP3 PUSH2 0x3DB5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E1A DUP2 PUSH2 0x3DDE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E57 PUSH1 0x11 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3E62 DUP3 PUSH2 0x3E21 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E86 DUP2 PUSH2 0x3E4A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3EC3 PUSH1 0xC DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3ECE DUP3 PUSH2 0x3E8D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EF2 DUP2 PUSH2 0x3EB6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F2F PUSH1 0x10 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3F3A DUP3 PUSH2 0x3EF9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F5E DUP2 PUSH2 0x3F22 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F9B PUSH1 0x19 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3FA6 DUP3 PUSH2 0x3F65 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FCA DUP2 PUSH2 0x3F8E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4007 PUSH1 0x14 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x4012 DUP3 PUSH2 0x3FD1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4036 DUP2 PUSH2 0x3FFA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0xAB2D8943229EE0FFE5F5E542DA3EA20341C382D0E9DE16603EE6CDBA0D8E DUP16 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ","sourceMap":"451:7373:10:-:0;;;769:44;;;;;;;;;;787:22;:20;;;:22;;:::i;:::-;451:7373;;5939:280:2;6007:13;;;;;;;;;;;6006:14;5998:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6094:15;6078:31;;:12;;;;;;;;;;:31;;;6074:139;;6140:15;6125:12;;:30;;;;;;;;;;;;;;;;;;6174:28;6186:15;6174:28;;;;;;:::i;:::-;;;;;;;;6074:139;5939:280::o;7:169:17:-;91:11;125:6;120:3;113:19;165:4;160:3;156:14;141:29;;7:169;;;;:::o;182:226::-;322:34;318:1;310:6;306:14;299:58;391:9;386:2;378:6;374:15;367:34;182:226;:::o;414:366::-;556:3;577:67;641:2;636:3;577:67;:::i;:::-;570:74;;653:93;742:3;653:93;:::i;:::-;771:2;766:3;762:12;755:19;;414:366;;;:::o;786:419::-;952:4;990:2;979:9;975:18;967:26;;1039:9;1033:4;1029:20;1025:1;1014:9;1010:17;1003:47;1067:131;1193:4;1067:131;:::i;:::-;1059:139;;786:419;;;:::o;1211:86::-;1246:7;1286:4;1279:5;1275:16;1264:27;;1211:86;;;:::o;1303:112::-;1386:22;1402:5;1386:22;:::i;:::-;1381:3;1374:35;1303:112;;:::o;1421:214::-;1510:4;1548:2;1537:9;1533:18;1525:26;;1561:67;1625:1;1614:9;1610:17;1601:6;1561:67;:::i;:::-;1421:214;;;;:::o;451:7373:10:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@__Ownable2Step_init_26":{"entryPoint":8701,"id":26,"parameterSlots":0,"returnSlots":0},"@__Ownable_init_unchained_145":{"entryPoint":9758,"id":145,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_440":{"entryPoint":8790,"id":440,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_unchained_450":{"entryPoint":9855,"id":450,"parameterSlots":0,"returnSlots":0},"@_checkOwner_176":{"entryPoint":8384,"id":176,"parameterSlots":0,"returnSlots":0},"@_handler_1914":{"entryPoint":9052,"id":1914,"parameterSlots":5,"returnSlots":0},"@_msgSender_894":{"entryPoint":8658,"id":894,"parameterSlots":0,"returnSlots":1},"@_pause_514":{"entryPoint":8879,"id":514,"parameterSlots":0,"returnSlots":0},"@_requireNotPaused_487":{"entryPoint":8978,"id":487,"parameterSlots":0,"returnSlots":0},"@_requirePaused_498":{"entryPoint":9487,"id":498,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_233":{"entryPoint":9560,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":8609,"id":78,"parameterSlots":1,"returnSlots":0},"@_unpause_530":{"entryPoint":8510,"id":530,"parameterSlots":0,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":4163,"id":100,"parameterSlots":0,"returnSlots":0},"@createOrder_1858":{"entryPoint":5191,"id":1858,"parameterSlots":9,"returnSlots":1},"@getFeeDetails_2250":{"entryPoint":4700,"id":2250,"parameterSlots":0,"returnSlots":2},"@getOrderInfo_2189":{"entryPoint":3626,"id":2189,"parameterSlots":1,"returnSlots":1},"@getSupportedInstitutionByCode_2222":{"entryPoint":4737,"id":2222,"parameterSlots":1,"returnSlots":1},"@getSupportedInstitutions_2237":{"entryPoint":963,"id":2237,"parameterSlots":1,"returnSlots":1},"@initialize_1697":{"entryPoint":4304,"id":1697,"parameterSlots":0,"returnSlots":0},"@isContract_554":{"entryPoint":8666,"id":554,"parameterSlots":1,"returnSlots":1},"@isTokenSupported_2208":{"entryPoint":3534,"id":2208,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":4658,"id":162,"parameterSlots":0,"returnSlots":1},"@pause_1720":{"entryPoint":4640,"id":1720,"parameterSlots":0,"returnSlots":0},"@paused_475":{"entryPoint":2307,"id":475,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":6541,"id":41,"parameterSlots":0,"returnSlots":1},"@refund_2175":{"entryPoint":2350,"id":2175,"parameterSlots":2,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":2330,"id":190,"parameterSlots":0,"returnSlots":0},"@setSupportedInstitutions_2429":{"entryPoint":1097,"id":2429,"parameterSlots":2,"returnSlots":0},"@settingManagerBool_2366":{"entryPoint":4802,"id":2366,"parameterSlots":3,"returnSlots":0},"@settle_2069":{"entryPoint":6583,"id":2069,"parameterSlots":4,"returnSlots":1},"@transferOwnership_61":{"entryPoint":8211,"id":61,"parameterSlots":1,"returnSlots":0},"@unpause_1730":{"entryPoint":1470,"id":1730,"parameterSlots":0,"returnSlots":0},"@updateProtocolAddress_2518":{"entryPoint":1488,"id":2518,"parameterSlots":2,"returnSlots":0},"@updateProtocolFee_2446":{"entryPoint":2200,"id":2446,"parameterSlots":1,"returnSlots":0},"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10928,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_t_address":{"entryPoint":11244,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":11033,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bool_fromMemory":{"entryPoint":14038,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":10312,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_string_calldata_ptr":{"entryPoint":12290,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":10848,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":11525,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint64":{"entryPoint":11372,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint96":{"entryPoint":12264,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":11610,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_bytes32t_uint96t_addresst_uint256t_addresst_string_calldata_ptr":{"entryPoint":12376,"id":null,"parameterSlots":2,"returnSlots":9},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":14059,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32":{"entryPoint":10333,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":11265,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":12158,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":11079,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64":{"entryPoint":12632,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_bytes32":{"entryPoint":11546,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64":{"entryPoint":11393,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encodeUpdatedPos_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":10484,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":12934,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_address_to_t_address":{"entryPoint":11655,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":11971,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":10521,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":12971,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_bool_to_t_bool":{"entryPoint":11685,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":11450,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bytes32_to_t_bytes32":{"entryPoint":10422,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bytes32_to_t_bytes32_fromStack":{"entryPoint":12590,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack":{"entryPoint":14641,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":15252,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack":{"entryPoint":13799,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack":{"entryPoint":16378,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":13156,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":14361,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack":{"entryPoint":16054,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack":{"entryPoint":15838,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack":{"entryPoint":14507,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":14724,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack":{"entryPoint":13691,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":15584,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":13302,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack":{"entryPoint":13907,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack":{"entryPoint":16162,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack":{"entryPoint":14832,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack":{"entryPoint":15946,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack":{"entryPoint":15730,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":13448,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack":{"entryPoint":13583,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack":{"entryPoint":16270,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_InstitutionByCode_$3454_memory_ptr_to_t_struct$_InstitutionByCode_$3454_memory_ptr_fromStack":{"entryPoint":12084,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":10437,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":12863,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_struct$_Order_$3196_memory_ptr_to_t_struct$_Order_$3196_memory_ptr_fromStack":{"entryPoint":11739,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256":{"entryPoint":11670,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":12028,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint64_fromStack":{"entryPoint":12013,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint96_fromStack":{"entryPoint":15487,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint256_fromStack":{"entryPoint":15222,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint96":{"entryPoint":11724,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":11986,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":14899,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":13974,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":10615,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":13064,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":11465,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":12605,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed":{"entryPoint":15502,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed":{"entryPoint":14656,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13834,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16413,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13191,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14396,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16089,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15873,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14542,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14759,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13726,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15619,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13337,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13942,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16197,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14867,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15981,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15765,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13483,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13618,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16305,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_InstitutionByCode_$3454_memory_ptr__to_t_struct$_InstitutionByCode_$3454_memory_ptr__fromStack_reversed":{"entryPoint":12131,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_Order_$3196_memory_ptr__to_t_struct$_Order_$3196_memory_ptr__fromStack_reversed":{"entryPoint":11943,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":14255,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_bytes32_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_bytes32_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15297,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":13515,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed":{"entryPoint":12043,"id":null,"parameterSlots":3,"returnSlots":1},"allocate_memory":{"entryPoint":10767,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_unbounded":{"entryPoint":10259,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10794,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10406,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":12793,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10378,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":12782,"id":null,"parameterSlots":1,"returnSlots":1},"array_nextElement_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10508,"id":null,"parameterSlots":1,"returnSlots":1},"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":12958,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":10389,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":13098,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":14151,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":15139,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":15026,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":14203,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint96":{"entryPoint":15389,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_from_storage_t_bytes32":{"entryPoint":12827,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_address":{"entryPoint":11203,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":11438,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":10279,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_rational_1_by_1":{"entryPoint":14574,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":11171,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":11492,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint64":{"entryPoint":11329,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":14584,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint96":{"entryPoint":11700,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_rational_1_by_1_to_t_uint8":{"entryPoint":14607,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint64_to_t_uint96":{"entryPoint":15453,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint96_to_t_uint256":{"entryPoint":15188,"id":null,"parameterSlots":1,"returnSlots":1},"copy_calldata_to_memory_with_cleanup":{"entryPoint":15237,"id":null,"parameterSlots":3,"returnSlots":0},"extract_from_storage_value_offset_0t_bytes32":{"entryPoint":12837,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":10718,"id":null,"parameterSlots":2,"returnSlots":0},"identity":{"entryPoint":14597,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint256":{"entryPoint":14954,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":14104,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":15092,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":12735,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":10671,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490":{"entryPoint":12285,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":10649,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f":{"entryPoint":10843,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef":{"entryPoint":10838,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":10274,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":10269,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":10654,"id":null,"parameterSlots":1,"returnSlots":1},"shift_right_0_unsigned":{"entryPoint":12814,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd":{"entryPoint":13758,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a":{"entryPoint":16337,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":13115,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":14282,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2":{"entryPoint":16013,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a":{"entryPoint":15797,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759":{"entryPoint":14428,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":14683,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5":{"entryPoint":13650,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":15543,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":13223,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de":{"entryPoint":13866,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7":{"entryPoint":16121,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4":{"entryPoint":14791,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1":{"entryPoint":15905,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b":{"entryPoint":15651,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":13369,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243":{"entryPoint":13542,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8":{"entryPoint":16229,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":11221,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bool":{"entryPoint":14015,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":10289,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":11502,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint64":{"entryPoint":11349,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint96":{"entryPoint":12241,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:50065:17","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:17","statements":[{"nodeType":"YulAssignment","src":"57:19:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:17","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:17"},"nodeType":"YulFunctionCall","src":"67:9:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:17"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:17","type":""}],"src":"7:75:17"},{"body":{"nodeType":"YulBlock","src":"177:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:17"},"nodeType":"YulFunctionCall","src":"187:12:17"},"nodeType":"YulExpressionStatement","src":"187:12:17"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:17"},{"body":{"nodeType":"YulBlock","src":"300:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:17"},"nodeType":"YulFunctionCall","src":"310:12:17"},"nodeType":"YulExpressionStatement","src":"310:12:17"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:17"},{"body":{"nodeType":"YulBlock","src":"379:32:17","statements":[{"nodeType":"YulAssignment","src":"389:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:17"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:17","type":""}],"src":"334:77:17"},{"body":{"nodeType":"YulBlock","src":"460:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:17"},"nodeType":"YulFunctionCall","src":"519:12:17"},"nodeType":"YulExpressionStatement","src":"519:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:17"},"nodeType":"YulFunctionCall","src":"490:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:17"},"nodeType":"YulFunctionCall","src":"480:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:17"},"nodeType":"YulFunctionCall","src":"473:43:17"},"nodeType":"YulIf","src":"470:63:17"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:17","type":""}],"src":"417:122:17"},{"body":{"nodeType":"YulBlock","src":"597:87:17","statements":[{"nodeType":"YulAssignment","src":"607:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:17"},"nodeType":"YulFunctionCall","src":"616:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:17"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:17"},"nodeType":"YulFunctionCall","src":"645:33:17"},"nodeType":"YulExpressionStatement","src":"645:33:17"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:17","type":""}],"src":"545:139:17"},{"body":{"nodeType":"YulBlock","src":"756:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"802:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"804:77:17"},"nodeType":"YulFunctionCall","src":"804:79:17"},"nodeType":"YulExpressionStatement","src":"804:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"777:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"786:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"773:3:17"},"nodeType":"YulFunctionCall","src":"773:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"798:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"769:3:17"},"nodeType":"YulFunctionCall","src":"769:32:17"},"nodeType":"YulIf","src":"766:119:17"},{"nodeType":"YulBlock","src":"895:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"910:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"924:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"914:6:17","type":""}]},{"nodeType":"YulAssignment","src":"939:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"974:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"985:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"970:3:17"},"nodeType":"YulFunctionCall","src":"970:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"994:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"949:20:17"},"nodeType":"YulFunctionCall","src":"949:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"939:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"726:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"737:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"749:6:17","type":""}],"src":"690:329:17"},{"body":{"nodeType":"YulBlock","src":"1128:40:17","statements":[{"nodeType":"YulAssignment","src":"1139:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1155:5:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1149:5:17"},"nodeType":"YulFunctionCall","src":"1149:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1139:6:17"}]}]},"name":"array_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1111:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"1121:6:17","type":""}],"src":"1025:143:17"},{"body":{"nodeType":"YulBlock","src":"1314:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1331:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"1336:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1324:6:17"},"nodeType":"YulFunctionCall","src":"1324:19:17"},"nodeType":"YulExpressionStatement","src":"1324:19:17"},{"nodeType":"YulAssignment","src":"1352:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1371:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"1376:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1367:3:17"},"nodeType":"YulFunctionCall","src":"1367:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"1352:11:17"}]}]},"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"1286:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"1291:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"1302:11:17","type":""}],"src":"1174:213:17"},{"body":{"nodeType":"YulBlock","src":"1494:60:17","statements":[{"nodeType":"YulAssignment","src":"1504:11:17","value":{"name":"ptr","nodeType":"YulIdentifier","src":"1512:3:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"1504:4:17"}]},{"nodeType":"YulAssignment","src":"1525:22:17","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"1537:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"1542:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1533:3:17"},"nodeType":"YulFunctionCall","src":"1533:14:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"1525:4:17"}]}]},"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"1481:3:17","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"1489:4:17","type":""}],"src":"1393:161:17"},{"body":{"nodeType":"YulBlock","src":"1615:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1632:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1655:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"1637:17:17"},"nodeType":"YulFunctionCall","src":"1637:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1625:6:17"},"nodeType":"YulFunctionCall","src":"1625:37:17"},"nodeType":"YulExpressionStatement","src":"1625:37:17"}]},"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1603:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1610:3:17","type":""}],"src":"1560:108:17"},{"body":{"nodeType":"YulBlock","src":"1864:391:17","statements":[{"nodeType":"YulVariableDeclaration","src":"1874:26:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1890:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"1895:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1886:3:17"},"nodeType":"YulFunctionCall","src":"1886:14:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"1878:4:17","type":""}]},{"nodeType":"YulBlock","src":"1910:164:17","statements":[{"nodeType":"YulVariableDeclaration","src":"1945:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1975:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"1982:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1971:3:17"},"nodeType":"YulFunctionCall","src":"1971:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1965:5:17"},"nodeType":"YulFunctionCall","src":"1965:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"1949:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"2035:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2053:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"2058:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2049:3:17"},"nodeType":"YulFunctionCall","src":"2049:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"2001:33:17"},"nodeType":"YulFunctionCall","src":"2001:63:17"},"nodeType":"YulExpressionStatement","src":"2001:63:17"}]},{"nodeType":"YulBlock","src":"2084:164:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2119:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2149:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2156:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2145:3:17"},"nodeType":"YulFunctionCall","src":"2145:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2139:5:17"},"nodeType":"YulFunctionCall","src":"2139:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"2123:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"2209:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2227:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"2232:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2223:3:17"},"nodeType":"YulFunctionCall","src":"2223:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"2175:33:17"},"nodeType":"YulFunctionCall","src":"2175:63:17"},"nodeType":"YulExpressionStatement","src":"2175:63:17"}]}]},"name":"abi_encode_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1851:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1858:3:17","type":""}],"src":"1750:505:17"},{"body":{"nodeType":"YulBlock","src":"2399:157:17","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2501:6:17"},{"name":"pos","nodeType":"YulIdentifier","src":"2509:3:17"}],"functionName":{"name":"abi_encode_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"2409:91:17"},"nodeType":"YulFunctionCall","src":"2409:104:17"},"nodeType":"YulExpressionStatement","src":"2409:104:17"},{"nodeType":"YulAssignment","src":"2522:28:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2540:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"2545:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2536:3:17"},"nodeType":"YulFunctionCall","src":"2536:14:17"},"variableNames":[{"name":"updatedPos","nodeType":"YulIdentifier","src":"2522:10:17"}]}]},"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value0","nodeType":"YulTypedName","src":"2372:6:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"2380:3:17","type":""}],"returnVariables":[{"name":"updatedPos","nodeType":"YulTypedName","src":"2388:10:17","type":""}],"src":"2261:295:17"},{"body":{"nodeType":"YulBlock","src":"2666:38:17","statements":[{"nodeType":"YulAssignment","src":"2676:22:17","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"2688:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"2693:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2684:3:17"},"nodeType":"YulFunctionCall","src":"2684:14:17"},"variableNames":[{"name":"next","nodeType":"YulIdentifier","src":"2676:4:17"}]}]},"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"2653:3:17","type":""}],"returnVariables":[{"name":"next","nodeType":"YulTypedName","src":"2661:4:17","type":""}],"src":"2562:142:17"},{"body":{"nodeType":"YulBlock","src":"2972:782:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2982:97:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3073:5:17"}],"functionName":{"name":"array_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"2996:76:17"},"nodeType":"YulFunctionCall","src":"2996:83:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2986:6:17","type":""}]},{"nodeType":"YulAssignment","src":"3088:122:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3198:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"3203:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"3095:102:17"},"nodeType":"YulFunctionCall","src":"3095:115:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"3088:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"3219:100:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3313:5:17"}],"functionName":{"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"3234:78:17"},"nodeType":"YulFunctionCall","src":"3234:85:17"},"variables":[{"name":"baseRef","nodeType":"YulTypedName","src":"3223:7:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3328:21:17","value":{"name":"baseRef","nodeType":"YulIdentifier","src":"3342:7:17"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"3332:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3418:311:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3432:34:17","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"3459:6:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3453:5:17"},"nodeType":"YulFunctionCall","src":"3453:13:17"},"variables":[{"name":"elementValue0","nodeType":"YulTypedName","src":"3436:13:17","type":""}]},{"nodeType":"YulAssignment","src":"3479:128:17","value":{"arguments":[{"name":"elementValue0","nodeType":"YulIdentifier","src":"3588:13:17"},{"name":"pos","nodeType":"YulIdentifier","src":"3603:3:17"}],"functionName":{"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"3486:101:17"},"nodeType":"YulFunctionCall","src":"3486:121:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"3479:3:17"}]},{"nodeType":"YulAssignment","src":"3620:99:17","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"3712:6:17"}],"functionName":{"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"3630:81:17"},"nodeType":"YulFunctionCall","src":"3630:89:17"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"3620:6:17"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3380:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"3383:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3377:2:17"},"nodeType":"YulFunctionCall","src":"3377:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3391:18:17","statements":[{"nodeType":"YulAssignment","src":"3393:14:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3402:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"3405:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3398:3:17"},"nodeType":"YulFunctionCall","src":"3398:9:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3393:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"3362:14:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3364:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"3373:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3368:1:17","type":""}]}]},"src":"3358:371:17"},{"nodeType":"YulAssignment","src":"3738:10:17","value":{"name":"pos","nodeType":"YulIdentifier","src":"3745:3:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"3738:3:17"}]}]},"name":"abi_encode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2951:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"2958:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2967:3:17","type":""}],"src":"2790:964:17"},{"body":{"nodeType":"YulBlock","src":"3966:283:17","statements":[{"nodeType":"YulAssignment","src":"3976:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3988:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3999:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3984:3:17"},"nodeType":"YulFunctionCall","src":"3984:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3976:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4023:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4034:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4019:3:17"},"nodeType":"YulFunctionCall","src":"4019:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"4042:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"4048:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4038:3:17"},"nodeType":"YulFunctionCall","src":"4038:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4012:6:17"},"nodeType":"YulFunctionCall","src":"4012:47:17"},"nodeType":"YulExpressionStatement","src":"4012:47:17"},{"nodeType":"YulAssignment","src":"4068:174:17","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4228:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"4237:4:17"}],"functionName":{"name":"abi_encode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"4076:151:17"},"nodeType":"YulFunctionCall","src":"4076:166:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4068:4:17"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3938:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3950:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3961:4:17","type":""}],"src":"3760:489:17"},{"body":{"nodeType":"YulBlock","src":"4344:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4361:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4364:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4354:6:17"},"nodeType":"YulFunctionCall","src":"4354:12:17"},"nodeType":"YulExpressionStatement","src":"4354:12:17"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"4255:117:17"},{"body":{"nodeType":"YulBlock","src":"4426:54:17","statements":[{"nodeType":"YulAssignment","src":"4436:38:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4454:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"4461:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4450:3:17"},"nodeType":"YulFunctionCall","src":"4450:14:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4470:2:17","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4466:3:17"},"nodeType":"YulFunctionCall","src":"4466:7:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4446:3:17"},"nodeType":"YulFunctionCall","src":"4446:28:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"4436:6:17"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4409:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"4419:6:17","type":""}],"src":"4378:102:17"},{"body":{"nodeType":"YulBlock","src":"4514:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4531:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4534:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4524:6:17"},"nodeType":"YulFunctionCall","src":"4524:88:17"},"nodeType":"YulExpressionStatement","src":"4524:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4628:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"4631:4:17","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4621:6:17"},"nodeType":"YulFunctionCall","src":"4621:15:17"},"nodeType":"YulExpressionStatement","src":"4621:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4652:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4655:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4645:6:17"},"nodeType":"YulFunctionCall","src":"4645:15:17"},"nodeType":"YulExpressionStatement","src":"4645:15:17"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"4486:180:17"},{"body":{"nodeType":"YulBlock","src":"4715:238:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4725:58:17","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"4747:6:17"},{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"4777:4:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"4755:21:17"},"nodeType":"YulFunctionCall","src":"4755:27:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4743:3:17"},"nodeType":"YulFunctionCall","src":"4743:40:17"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"4729:10:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"4894:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4896:16:17"},"nodeType":"YulFunctionCall","src":"4896:18:17"},"nodeType":"YulExpressionStatement","src":"4896:18:17"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"4837:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"4849:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4834:2:17"},"nodeType":"YulFunctionCall","src":"4834:34:17"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"4873:10:17"},{"name":"memPtr","nodeType":"YulIdentifier","src":"4885:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4870:2:17"},"nodeType":"YulFunctionCall","src":"4870:22:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"4831:2:17"},"nodeType":"YulFunctionCall","src":"4831:62:17"},"nodeType":"YulIf","src":"4828:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4932:2:17","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"4936:10:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4925:6:17"},"nodeType":"YulFunctionCall","src":"4925:22:17"},"nodeType":"YulExpressionStatement","src":"4925:22:17"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"4701:6:17","type":""},{"name":"size","nodeType":"YulTypedName","src":"4709:4:17","type":""}],"src":"4672:281:17"},{"body":{"nodeType":"YulBlock","src":"5000:88:17","statements":[{"nodeType":"YulAssignment","src":"5010:30:17","value":{"arguments":[],"functionName":{"name":"allocate_unbounded","nodeType":"YulIdentifier","src":"5020:18:17"},"nodeType":"YulFunctionCall","src":"5020:20:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5010:6:17"}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5069:6:17"},{"name":"size","nodeType":"YulIdentifier","src":"5077:4:17"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"5049:19:17"},"nodeType":"YulFunctionCall","src":"5049:33:17"},"nodeType":"YulExpressionStatement","src":"5049:33:17"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"4984:4:17","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"4993:6:17","type":""}],"src":"4959:129:17"},{"body":{"nodeType":"YulBlock","src":"5205:229:17","statements":[{"body":{"nodeType":"YulBlock","src":"5310:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"5312:16:17"},"nodeType":"YulFunctionCall","src":"5312:18:17"},"nodeType":"YulExpressionStatement","src":"5312:18:17"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"5282:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"5290:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"5279:2:17"},"nodeType":"YulFunctionCall","src":"5279:30:17"},"nodeType":"YulIf","src":"5276:56:17"},{"nodeType":"YulAssignment","src":"5342:25:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"5354:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"5362:4:17","type":"","value":"0x20"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"5350:3:17"},"nodeType":"YulFunctionCall","src":"5350:17:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"5342:4:17"}]},{"nodeType":"YulAssignment","src":"5404:23:17","value":{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"5416:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"5422:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5412:3:17"},"nodeType":"YulFunctionCall","src":"5412:15:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"5404:4:17"}]}]},"name":"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"5189:6:17","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"5200:4:17","type":""}],"src":"5094:340:17"},{"body":{"nodeType":"YulBlock","src":"5529:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5546:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5549:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5539:6:17"},"nodeType":"YulFunctionCall","src":"5539:12:17"},"nodeType":"YulExpressionStatement","src":"5539:12:17"}]},"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulFunctionDefinition","src":"5440:117:17"},{"body":{"nodeType":"YulBlock","src":"5652:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5669:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5672:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5662:6:17"},"nodeType":"YulFunctionCall","src":"5662:12:17"},"nodeType":"YulExpressionStatement","src":"5662:12:17"}]},"name":"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f","nodeType":"YulFunctionDefinition","src":"5563:117:17"},{"body":{"nodeType":"YulBlock","src":"5775:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5792:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5795:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5785:6:17"},"nodeType":"YulFunctionCall","src":"5785:12:17"},"nodeType":"YulExpressionStatement","src":"5785:12:17"}]},"name":"revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421","nodeType":"YulFunctionDefinition","src":"5686:117:17"},{"body":{"nodeType":"YulBlock","src":"5933:494:17","statements":[{"body":{"nodeType":"YulBlock","src":"5977:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f","nodeType":"YulIdentifier","src":"5979:77:17"},"nodeType":"YulFunctionCall","src":"5979:79:17"},"nodeType":"YulExpressionStatement","src":"5979:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nodeType":"YulIdentifier","src":"5954:3:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"5959:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5950:3:17"},"nodeType":"YulFunctionCall","src":"5950:19:17"},{"kind":"number","nodeType":"YulLiteral","src":"5971:4:17","type":"","value":"0x40"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5946:3:17"},"nodeType":"YulFunctionCall","src":"5946:30:17"},"nodeType":"YulIf","src":"5943:117:17"},{"nodeType":"YulAssignment","src":"6069:30:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6094:4:17","type":"","value":"0x40"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"6078:15:17"},"nodeType":"YulFunctionCall","src":"6078:21:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"6069:5:17"}]},{"nodeType":"YulBlock","src":"6109:150:17","statements":[{"nodeType":"YulVariableDeclaration","src":"6144:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"6158:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"6148:6:17","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6184:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"6191:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6180:3:17"},"nodeType":"YulFunctionCall","src":"6180:16:17"},{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6223:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"6234:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6219:3:17"},"nodeType":"YulFunctionCall","src":"6219:22:17"},{"name":"end","nodeType":"YulIdentifier","src":"6243:3:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"6198:20:17"},"nodeType":"YulFunctionCall","src":"6198:49:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6173:6:17"},"nodeType":"YulFunctionCall","src":"6173:75:17"},"nodeType":"YulExpressionStatement","src":"6173:75:17"}]},{"nodeType":"YulBlock","src":"6269:151:17","statements":[{"nodeType":"YulVariableDeclaration","src":"6304:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"6318:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"6308:6:17","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6345:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"6352:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6341:3:17"},"nodeType":"YulFunctionCall","src":"6341:16:17"},{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6384:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"6395:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6380:3:17"},"nodeType":"YulFunctionCall","src":"6380:22:17"},{"name":"end","nodeType":"YulIdentifier","src":"6404:3:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"6359:20:17"},"nodeType":"YulFunctionCall","src":"6359:49:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6334:6:17"},"nodeType":"YulFunctionCall","src":"6334:75:17"},"nodeType":"YulExpressionStatement","src":"6334:75:17"}]}]},"name":"abi_decode_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5908:9:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"5919:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"5927:5:17","type":""}],"src":"5849:578:17"},{"body":{"nodeType":"YulBlock","src":"6606:666:17","statements":[{"nodeType":"YulAssignment","src":"6616:119:17","value":{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6727:6:17"}],"functionName":{"name":"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"6641:85:17"},"nodeType":"YulFunctionCall","src":"6641:93:17"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"6625:15:17"},"nodeType":"YulFunctionCall","src":"6625:110:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"6616:5:17"}]},{"nodeType":"YulVariableDeclaration","src":"6744:16:17","value":{"name":"array","nodeType":"YulIdentifier","src":"6755:5:17"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"6748:3:17","type":""}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"6777:5:17"},{"name":"length","nodeType":"YulIdentifier","src":"6784:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6770:6:17"},"nodeType":"YulFunctionCall","src":"6770:21:17"},"nodeType":"YulExpressionStatement","src":"6770:21:17"},{"nodeType":"YulAssignment","src":"6800:23:17","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"6811:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"6818:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6807:3:17"},"nodeType":"YulFunctionCall","src":"6807:16:17"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"6800:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"6833:44:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6851:6:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6863:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6871:4:17","type":"","value":"0x40"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"6859:3:17"},"nodeType":"YulFunctionCall","src":"6859:17:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6847:3:17"},"nodeType":"YulFunctionCall","src":"6847:30:17"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"6837:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"6905:103:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"6919:77:17"},"nodeType":"YulFunctionCall","src":"6919:79:17"},"nodeType":"YulExpressionStatement","src":"6919:79:17"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"6892:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"6900:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6889:2:17"},"nodeType":"YulFunctionCall","src":"6889:15:17"},"nodeType":"YulIf","src":"6886:122:17"},{"body":{"nodeType":"YulBlock","src":"7093:173:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7108:21:17","value":{"name":"src","nodeType":"YulIdentifier","src":"7126:3:17"},"variables":[{"name":"elementPos","nodeType":"YulTypedName","src":"7112:10:17","type":""}]},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"7150:3:17"},{"arguments":[{"name":"elementPos","nodeType":"YulIdentifier","src":"7205:10:17"},{"name":"end","nodeType":"YulIdentifier","src":"7217:3:17"}],"functionName":{"name":"abi_decode_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"7155:49:17"},"nodeType":"YulFunctionCall","src":"7155:66:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7143:6:17"},"nodeType":"YulFunctionCall","src":"7143:79:17"},"nodeType":"YulExpressionStatement","src":"7143:79:17"},{"nodeType":"YulAssignment","src":"7235:21:17","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"7246:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"7251:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7242:3:17"},"nodeType":"YulFunctionCall","src":"7242:14:17"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"7235:3:17"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"7046:3:17"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"7051:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"7043:2:17"},"nodeType":"YulFunctionCall","src":"7043:15:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"7059:25:17","statements":[{"nodeType":"YulAssignment","src":"7061:21:17","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"7072:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"7077:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7068:3:17"},"nodeType":"YulFunctionCall","src":"7068:14:17"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"7061:3:17"}]}]},"pre":{"nodeType":"YulBlock","src":"7021:21:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7023:17:17","value":{"name":"offset","nodeType":"YulIdentifier","src":"7034:6:17"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"7027:3:17","type":""}]}]},"src":"7017:249:17"}]},"name":"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"6576:6:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"6584:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"6592:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"6600:5:17","type":""}],"src":"6475:797:17"},{"body":{"nodeType":"YulBlock","src":"7426:322:17","statements":[{"body":{"nodeType":"YulBlock","src":"7475:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"7477:77:17"},"nodeType":"YulFunctionCall","src":"7477:79:17"},"nodeType":"YulExpressionStatement","src":"7477:79:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7454:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7462:4:17","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7450:3:17"},"nodeType":"YulFunctionCall","src":"7450:17:17"},{"name":"end","nodeType":"YulIdentifier","src":"7469:3:17"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7446:3:17"},"nodeType":"YulFunctionCall","src":"7446:27:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7439:6:17"},"nodeType":"YulFunctionCall","src":"7439:35:17"},"nodeType":"YulIf","src":"7436:122:17"},{"nodeType":"YulVariableDeclaration","src":"7567:34:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7594:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7581:12:17"},"nodeType":"YulFunctionCall","src":"7581:20:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"7571:6:17","type":""}]},{"nodeType":"YulAssignment","src":"7610:132:17","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7715:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7723:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7711:3:17"},"nodeType":"YulFunctionCall","src":"7711:17:17"},{"name":"length","nodeType":"YulIdentifier","src":"7730:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"7738:3:17"}],"functionName":{"name":"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"7619:91:17"},"nodeType":"YulFunctionCall","src":"7619:123:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"7610:5:17"}]}]},"name":"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"7404:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"7412:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"7420:5:17","type":""}],"src":"7320:428:17"},{"body":{"nodeType":"YulBlock","src":"7891:605:17","statements":[{"body":{"nodeType":"YulBlock","src":"7937:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"7939:77:17"},"nodeType":"YulFunctionCall","src":"7939:79:17"},"nodeType":"YulExpressionStatement","src":"7939:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7912:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"7921:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7908:3:17"},"nodeType":"YulFunctionCall","src":"7908:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"7933:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7904:3:17"},"nodeType":"YulFunctionCall","src":"7904:32:17"},"nodeType":"YulIf","src":"7901:119:17"},{"nodeType":"YulBlock","src":"8030:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8045:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"8059:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8049:6:17","type":""}]},{"nodeType":"YulAssignment","src":"8074:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8109:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"8120:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8105:3:17"},"nodeType":"YulFunctionCall","src":"8105:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8129:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"8084:20:17"},"nodeType":"YulFunctionCall","src":"8084:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8074:6:17"}]}]},{"nodeType":"YulBlock","src":"8157:332:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8172:46:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8203:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"8214:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8199:3:17"},"nodeType":"YulFunctionCall","src":"8199:18:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8186:12:17"},"nodeType":"YulFunctionCall","src":"8186:32:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8176:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"8265:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"8267:77:17"},"nodeType":"YulFunctionCall","src":"8267:79:17"},"nodeType":"YulExpressionStatement","src":"8267:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8237:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8245:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8234:2:17"},"nodeType":"YulFunctionCall","src":"8234:30:17"},"nodeType":"YulIf","src":"8231:117:17"},{"nodeType":"YulAssignment","src":"8362:117:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8451:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"8462:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8447:3:17"},"nodeType":"YulFunctionCall","src":"8447:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8471:7:17"}],"functionName":{"name":"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"8372:74:17"},"nodeType":"YulFunctionCall","src":"8372:107:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"8362:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7853:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7864:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7876:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7884:6:17","type":""}],"src":"7754:742:17"},{"body":{"nodeType":"YulBlock","src":"8547:81:17","statements":[{"nodeType":"YulAssignment","src":"8557:65:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8572:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"8579:42:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8568:3:17"},"nodeType":"YulFunctionCall","src":"8568:54:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"8557:7:17"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8529:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"8539:7:17","type":""}],"src":"8502:126:17"},{"body":{"nodeType":"YulBlock","src":"8679:51:17","statements":[{"nodeType":"YulAssignment","src":"8689:35:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8718:5:17"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"8700:17:17"},"nodeType":"YulFunctionCall","src":"8700:24:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"8689:7:17"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8661:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"8671:7:17","type":""}],"src":"8634:96:17"},{"body":{"nodeType":"YulBlock","src":"8779:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"8836:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8845:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8848:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8838:6:17"},"nodeType":"YulFunctionCall","src":"8838:12:17"},"nodeType":"YulExpressionStatement","src":"8838:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8802:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8827:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"8809:17:17"},"nodeType":"YulFunctionCall","src":"8809:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"8799:2:17"},"nodeType":"YulFunctionCall","src":"8799:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"8792:6:17"},"nodeType":"YulFunctionCall","src":"8792:43:17"},"nodeType":"YulIf","src":"8789:63:17"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8772:5:17","type":""}],"src":"8736:122:17"},{"body":{"nodeType":"YulBlock","src":"8916:87:17","statements":[{"nodeType":"YulAssignment","src":"8926:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"8948:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8935:12:17"},"nodeType":"YulFunctionCall","src":"8935:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"8926:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8991:5:17"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"8964:26:17"},"nodeType":"YulFunctionCall","src":"8964:33:17"},"nodeType":"YulExpressionStatement","src":"8964:33:17"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"8894:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"8902:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"8910:5:17","type":""}],"src":"8864:139:17"},{"body":{"nodeType":"YulBlock","src":"9092:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"9138:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"9140:77:17"},"nodeType":"YulFunctionCall","src":"9140:79:17"},"nodeType":"YulExpressionStatement","src":"9140:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9113:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"9122:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9109:3:17"},"nodeType":"YulFunctionCall","src":"9109:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"9134:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9105:3:17"},"nodeType":"YulFunctionCall","src":"9105:32:17"},"nodeType":"YulIf","src":"9102:119:17"},{"nodeType":"YulBlock","src":"9231:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9246:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"9260:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9250:6:17","type":""}]},{"nodeType":"YulAssignment","src":"9275:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9310:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"9321:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9306:3:17"},"nodeType":"YulFunctionCall","src":"9306:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9330:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"9285:20:17"},"nodeType":"YulFunctionCall","src":"9285:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"9275:6:17"}]}]},{"nodeType":"YulBlock","src":"9358:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9373:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"9387:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"9377:6:17","type":""}]},{"nodeType":"YulAssignment","src":"9403:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9438:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"9449:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9434:3:17"},"nodeType":"YulFunctionCall","src":"9434:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"9458:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"9413:20:17"},"nodeType":"YulFunctionCall","src":"9413:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"9403:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9054:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9065:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9077:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"9085:6:17","type":""}],"src":"9009:474:17"},{"body":{"nodeType":"YulBlock","src":"9533:57:17","statements":[{"nodeType":"YulAssignment","src":"9543:41:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9558:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"9565:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"9554:3:17"},"nodeType":"YulFunctionCall","src":"9554:30:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"9543:7:17"}]}]},"name":"cleanup_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9515:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"9525:7:17","type":""}],"src":"9489:101:17"},{"body":{"nodeType":"YulBlock","src":"9638:78:17","statements":[{"body":{"nodeType":"YulBlock","src":"9694:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9703:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9706:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"9696:6:17"},"nodeType":"YulFunctionCall","src":"9696:12:17"},"nodeType":"YulExpressionStatement","src":"9696:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9661:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9685:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"9668:16:17"},"nodeType":"YulFunctionCall","src":"9668:23:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"9658:2:17"},"nodeType":"YulFunctionCall","src":"9658:34:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"9651:6:17"},"nodeType":"YulFunctionCall","src":"9651:42:17"},"nodeType":"YulIf","src":"9648:62:17"}]},"name":"validator_revert_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9631:5:17","type":""}],"src":"9596:120:17"},{"body":{"nodeType":"YulBlock","src":"9773:86:17","statements":[{"nodeType":"YulAssignment","src":"9783:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"9805:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"9792:12:17"},"nodeType":"YulFunctionCall","src":"9792:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"9783:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9847:5:17"}],"functionName":{"name":"validator_revert_t_uint64","nodeType":"YulIdentifier","src":"9821:25:17"},"nodeType":"YulFunctionCall","src":"9821:32:17"},"nodeType":"YulExpressionStatement","src":"9821:32:17"}]},"name":"abi_decode_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"9751:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"9759:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"9767:5:17","type":""}],"src":"9722:137:17"},{"body":{"nodeType":"YulBlock","src":"9930:262:17","statements":[{"body":{"nodeType":"YulBlock","src":"9976:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"9978:77:17"},"nodeType":"YulFunctionCall","src":"9978:79:17"},"nodeType":"YulExpressionStatement","src":"9978:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"9951:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"9960:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9947:3:17"},"nodeType":"YulFunctionCall","src":"9947:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"9972:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"9943:3:17"},"nodeType":"YulFunctionCall","src":"9943:32:17"},"nodeType":"YulIf","src":"9940:119:17"},{"nodeType":"YulBlock","src":"10069:116:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10084:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"10098:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"10088:6:17","type":""}]},{"nodeType":"YulAssignment","src":"10113:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10147:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"10158:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10143:3:17"},"nodeType":"YulFunctionCall","src":"10143:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"10167:7:17"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"10123:19:17"},"nodeType":"YulFunctionCall","src":"10123:52:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"10113:6:17"}]}]}]},"name":"abi_decode_tuple_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9900:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"9911:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"9923:6:17","type":""}],"src":"9865:327:17"},{"body":{"nodeType":"YulBlock","src":"10240:48:17","statements":[{"nodeType":"YulAssignment","src":"10250:32:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10275:5:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10268:6:17"},"nodeType":"YulFunctionCall","src":"10268:13:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10261:6:17"},"nodeType":"YulFunctionCall","src":"10261:21:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"10250:7:17"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10222:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"10232:7:17","type":""}],"src":"10198:90:17"},{"body":{"nodeType":"YulBlock","src":"10353:50:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10370:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10390:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"10375:14:17"},"nodeType":"YulFunctionCall","src":"10375:21:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10363:6:17"},"nodeType":"YulFunctionCall","src":"10363:34:17"},"nodeType":"YulExpressionStatement","src":"10363:34:17"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10341:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"10348:3:17","type":""}],"src":"10294:109:17"},{"body":{"nodeType":"YulBlock","src":"10501:118:17","statements":[{"nodeType":"YulAssignment","src":"10511:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10523:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"10534:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10519:3:17"},"nodeType":"YulFunctionCall","src":"10519:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10511:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10585:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10598:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"10609:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10594:3:17"},"nodeType":"YulFunctionCall","src":"10594:17:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"10547:37:17"},"nodeType":"YulFunctionCall","src":"10547:65:17"},"nodeType":"YulExpressionStatement","src":"10547:65:17"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10473:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"10485:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10496:4:17","type":""}],"src":"10409:210:17"},{"body":{"nodeType":"YulBlock","src":"10670:32:17","statements":[{"nodeType":"YulAssignment","src":"10680:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"10691:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"10680:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10652:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"10662:7:17","type":""}],"src":"10625:77:17"},{"body":{"nodeType":"YulBlock","src":"10751:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"10808:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10817:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10820:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10810:6:17"},"nodeType":"YulFunctionCall","src":"10810:12:17"},"nodeType":"YulExpressionStatement","src":"10810:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10774:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10799:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"10781:17:17"},"nodeType":"YulFunctionCall","src":"10781:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"10771:2:17"},"nodeType":"YulFunctionCall","src":"10771:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"10764:6:17"},"nodeType":"YulFunctionCall","src":"10764:43:17"},"nodeType":"YulIf","src":"10761:63:17"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10744:5:17","type":""}],"src":"10708:122:17"},{"body":{"nodeType":"YulBlock","src":"10888:87:17","statements":[{"nodeType":"YulAssignment","src":"10898:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"10920:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10907:12:17"},"nodeType":"YulFunctionCall","src":"10907:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"10898:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10963:5:17"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"10936:26:17"},"nodeType":"YulFunctionCall","src":"10936:33:17"},"nodeType":"YulExpressionStatement","src":"10936:33:17"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"10866:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"10874:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"10882:5:17","type":""}],"src":"10836:139:17"},{"body":{"nodeType":"YulBlock","src":"11064:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"11110:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"11112:77:17"},"nodeType":"YulFunctionCall","src":"11112:79:17"},"nodeType":"YulExpressionStatement","src":"11112:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"11085:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"11094:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11081:3:17"},"nodeType":"YulFunctionCall","src":"11081:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"11106:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"11077:3:17"},"nodeType":"YulFunctionCall","src":"11077:32:17"},"nodeType":"YulIf","src":"11074:119:17"},{"nodeType":"YulBlock","src":"11203:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"11218:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"11232:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"11222:6:17","type":""}]},{"nodeType":"YulAssignment","src":"11247:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11282:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"11293:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11278:3:17"},"nodeType":"YulFunctionCall","src":"11278:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"11302:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"11257:20:17"},"nodeType":"YulFunctionCall","src":"11257:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"11247:6:17"}]}]},{"nodeType":"YulBlock","src":"11330:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"11345:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"11359:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"11349:6:17","type":""}]},{"nodeType":"YulAssignment","src":"11375:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11410:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"11421:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11406:3:17"},"nodeType":"YulFunctionCall","src":"11406:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"11430:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"11385:20:17"},"nodeType":"YulFunctionCall","src":"11385:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"11375:6:17"}]}]}]},"name":"abi_decode_tuple_t_uint256t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11026:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"11037:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"11049:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"11057:6:17","type":""}],"src":"10981:474:17"},{"body":{"nodeType":"YulBlock","src":"11527:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"11573:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"11575:77:17"},"nodeType":"YulFunctionCall","src":"11575:79:17"},"nodeType":"YulExpressionStatement","src":"11575:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"11548:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"11557:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11544:3:17"},"nodeType":"YulFunctionCall","src":"11544:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"11569:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"11540:3:17"},"nodeType":"YulFunctionCall","src":"11540:32:17"},"nodeType":"YulIf","src":"11537:119:17"},{"nodeType":"YulBlock","src":"11666:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"11681:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"11695:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"11685:6:17","type":""}]},{"nodeType":"YulAssignment","src":"11710:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11745:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"11756:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11741:3:17"},"nodeType":"YulFunctionCall","src":"11741:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"11765:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"11720:20:17"},"nodeType":"YulFunctionCall","src":"11720:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"11710:6:17"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11497:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"11508:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"11520:6:17","type":""}],"src":"11461:329:17"},{"body":{"nodeType":"YulBlock","src":"11851:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11868:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11891:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"11873:17:17"},"nodeType":"YulFunctionCall","src":"11873:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11861:6:17"},"nodeType":"YulFunctionCall","src":"11861:37:17"},"nodeType":"YulExpressionStatement","src":"11861:37:17"}]},"name":"abi_encode_t_address_to_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11839:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11846:3:17","type":""}],"src":"11796:108:17"},{"body":{"nodeType":"YulBlock","src":"11965:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11982:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12005:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"11987:17:17"},"nodeType":"YulFunctionCall","src":"11987:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11975:6:17"},"nodeType":"YulFunctionCall","src":"11975:37:17"},"nodeType":"YulExpressionStatement","src":"11975:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11953:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11960:3:17","type":""}],"src":"11910:108:17"},{"body":{"nodeType":"YulBlock","src":"12073:50:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12090:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12110:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"12095:14:17"},"nodeType":"YulFunctionCall","src":"12095:21:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12083:6:17"},"nodeType":"YulFunctionCall","src":"12083:34:17"},"nodeType":"YulExpressionStatement","src":"12083:34:17"}]},"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12061:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"12068:3:17","type":""}],"src":"12024:99:17"},{"body":{"nodeType":"YulBlock","src":"12173:65:17","statements":[{"nodeType":"YulAssignment","src":"12183:49:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12198:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"12205:26:17","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"12194:3:17"},"nodeType":"YulFunctionCall","src":"12194:38:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"12183:7:17"}]}]},"name":"cleanup_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12155:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"12165:7:17","type":""}],"src":"12129:109:17"},{"body":{"nodeType":"YulBlock","src":"12297:52:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12314:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12336:5:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"12319:16:17"},"nodeType":"YulFunctionCall","src":"12319:23:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12307:6:17"},"nodeType":"YulFunctionCall","src":"12307:36:17"},"nodeType":"YulExpressionStatement","src":"12307:36:17"}]},"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12285:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"12292:3:17","type":""}],"src":"12244:105:17"},{"body":{"nodeType":"YulBlock","src":"12521:1838:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12531:28:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12547:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12552:6:17","type":"","value":"0x0140"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12543:3:17"},"nodeType":"YulFunctionCall","src":"12543:16:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"12535:4:17","type":""}]},{"nodeType":"YulBlock","src":"12569:166:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12606:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12636:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"12643:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12632:3:17"},"nodeType":"YulFunctionCall","src":"12632:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12626:5:17"},"nodeType":"YulFunctionCall","src":"12626:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"12610:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"12696:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12714:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12719:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12710:3:17"},"nodeType":"YulFunctionCall","src":"12710:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"12662:33:17"},"nodeType":"YulFunctionCall","src":"12662:63:17"},"nodeType":"YulExpressionStatement","src":"12662:63:17"}]},{"nodeType":"YulBlock","src":"12745:165:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12781:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12811:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"12818:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12807:3:17"},"nodeType":"YulFunctionCall","src":"12807:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12801:5:17"},"nodeType":"YulFunctionCall","src":"12801:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"12785:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"12871:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12889:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12894:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12885:3:17"},"nodeType":"YulFunctionCall","src":"12885:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"12837:33:17"},"nodeType":"YulFunctionCall","src":"12837:63:17"},"nodeType":"YulExpressionStatement","src":"12837:63:17"}]},{"nodeType":"YulBlock","src":"12920:178:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12969:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12999:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"13006:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12995:3:17"},"nodeType":"YulFunctionCall","src":"12995:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12989:5:17"},"nodeType":"YulFunctionCall","src":"12989:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"12973:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"13059:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13077:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13082:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13073:3:17"},"nodeType":"YulFunctionCall","src":"13073:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"13025:33:17"},"nodeType":"YulFunctionCall","src":"13025:63:17"},"nodeType":"YulExpressionStatement","src":"13025:63:17"}]},{"nodeType":"YulBlock","src":"13108:169:17","statements":[{"nodeType":"YulVariableDeclaration","src":"13148:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13178:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"13185:4:17","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13174:3:17"},"nodeType":"YulFunctionCall","src":"13174:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13168:5:17"},"nodeType":"YulFunctionCall","src":"13168:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"13152:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"13238:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13256:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13261:4:17","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13252:3:17"},"nodeType":"YulFunctionCall","src":"13252:14:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"13204:33:17"},"nodeType":"YulFunctionCall","src":"13204:63:17"},"nodeType":"YulExpressionStatement","src":"13204:63:17"}]},{"nodeType":"YulBlock","src":"13287:171:17","statements":[{"nodeType":"YulVariableDeclaration","src":"13329:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13359:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"13366:4:17","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13355:3:17"},"nodeType":"YulFunctionCall","src":"13355:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13349:5:17"},"nodeType":"YulFunctionCall","src":"13349:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"13333:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"13419:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13437:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13442:4:17","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13433:3:17"},"nodeType":"YulFunctionCall","src":"13433:14:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"13385:33:17"},"nodeType":"YulFunctionCall","src":"13385:63:17"},"nodeType":"YulExpressionStatement","src":"13385:63:17"}]},{"nodeType":"YulBlock","src":"13468:165:17","statements":[{"nodeType":"YulVariableDeclaration","src":"13510:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13540:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"13547:4:17","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13536:3:17"},"nodeType":"YulFunctionCall","src":"13536:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13530:5:17"},"nodeType":"YulFunctionCall","src":"13530:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"13514:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"13594:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13612:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13617:4:17","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13608:3:17"},"nodeType":"YulFunctionCall","src":"13608:14:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"13566:27:17"},"nodeType":"YulFunctionCall","src":"13566:57:17"},"nodeType":"YulExpressionStatement","src":"13566:57:17"}]},{"nodeType":"YulBlock","src":"13643:164:17","statements":[{"nodeType":"YulVariableDeclaration","src":"13684:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13714:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"13721:4:17","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13710:3:17"},"nodeType":"YulFunctionCall","src":"13710:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13704:5:17"},"nodeType":"YulFunctionCall","src":"13704:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"13688:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"13768:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13786:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13791:4:17","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13782:3:17"},"nodeType":"YulFunctionCall","src":"13782:14:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"13740:27:17"},"nodeType":"YulFunctionCall","src":"13740:57:17"},"nodeType":"YulExpressionStatement","src":"13740:57:17"}]},{"nodeType":"YulBlock","src":"13817:173:17","statements":[{"nodeType":"YulVariableDeclaration","src":"13861:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13891:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"13898:4:17","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13887:3:17"},"nodeType":"YulFunctionCall","src":"13887:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13881:5:17"},"nodeType":"YulFunctionCall","src":"13881:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"13865:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"13951:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13969:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13974:4:17","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13965:3:17"},"nodeType":"YulFunctionCall","src":"13965:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"13917:33:17"},"nodeType":"YulFunctionCall","src":"13917:63:17"},"nodeType":"YulExpressionStatement","src":"13917:63:17"}]},{"nodeType":"YulBlock","src":"14000:172:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14041:45:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"14071:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"14078:6:17","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14067:3:17"},"nodeType":"YulFunctionCall","src":"14067:18:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14061:5:17"},"nodeType":"YulFunctionCall","src":"14061:25:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"14045:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"14131:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14149:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"14154:6:17","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14145:3:17"},"nodeType":"YulFunctionCall","src":"14145:16:17"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulIdentifier","src":"14099:31:17"},"nodeType":"YulFunctionCall","src":"14099:63:17"},"nodeType":"YulExpressionStatement","src":"14099:63:17"}]},{"nodeType":"YulBlock","src":"14182:170:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14219:45:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"14249:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"14256:6:17","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14245:3:17"},"nodeType":"YulFunctionCall","src":"14245:18:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"14239:5:17"},"nodeType":"YulFunctionCall","src":"14239:25:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"14223:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"14311:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14329:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"14334:6:17","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14325:3:17"},"nodeType":"YulFunctionCall","src":"14325:16:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"14277:33:17"},"nodeType":"YulFunctionCall","src":"14277:65:17"},"nodeType":"YulExpressionStatement","src":"14277:65:17"}]}]},"name":"abi_encode_t_struct$_Order_$3196_memory_ptr_to_t_struct$_Order_$3196_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"12508:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"12515:3:17","type":""}],"src":"12409:1950:17"},{"body":{"nodeType":"YulBlock","src":"14509:171:17","statements":[{"nodeType":"YulAssignment","src":"14519:27:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14531:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14542:3:17","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14527:3:17"},"nodeType":"YulFunctionCall","src":"14527:19:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14519:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"14646:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14659:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14670:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14655:3:17"},"nodeType":"YulFunctionCall","src":"14655:17:17"}],"functionName":{"name":"abi_encode_t_struct$_Order_$3196_memory_ptr_to_t_struct$_Order_$3196_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14556:89:17"},"nodeType":"YulFunctionCall","src":"14556:117:17"},"nodeType":"YulExpressionStatement","src":"14556:117:17"}]},"name":"abi_encode_tuple_t_struct$_Order_$3196_memory_ptr__to_t_struct$_Order_$3196_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14481:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"14493:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14504:4:17","type":""}],"src":"14365:315:17"},{"body":{"nodeType":"YulBlock","src":"14751:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14768:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"14791:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"14773:17:17"},"nodeType":"YulFunctionCall","src":"14773:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14761:6:17"},"nodeType":"YulFunctionCall","src":"14761:37:17"},"nodeType":"YulExpressionStatement","src":"14761:37:17"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"14739:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"14746:3:17","type":""}],"src":"14686:118:17"},{"body":{"nodeType":"YulBlock","src":"14908:124:17","statements":[{"nodeType":"YulAssignment","src":"14918:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14930:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14941:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14926:3:17"},"nodeType":"YulFunctionCall","src":"14926:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14918:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"14998:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15011:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15022:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15007:3:17"},"nodeType":"YulFunctionCall","src":"15007:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"14954:43:17"},"nodeType":"YulFunctionCall","src":"14954:71:17"},"nodeType":"YulExpressionStatement","src":"14954:71:17"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14880:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"14892:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14903:4:17","type":""}],"src":"14810:222:17"},{"body":{"nodeType":"YulBlock","src":"15101:52:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15118:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15140:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"15123:16:17"},"nodeType":"YulFunctionCall","src":"15123:23:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15111:6:17"},"nodeType":"YulFunctionCall","src":"15111:36:17"},"nodeType":"YulExpressionStatement","src":"15111:36:17"}]},"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15089:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15096:3:17","type":""}],"src":"15038:115:17"},{"body":{"nodeType":"YulBlock","src":"15224:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15241:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15264:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"15246:17:17"},"nodeType":"YulFunctionCall","src":"15246:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15234:6:17"},"nodeType":"YulFunctionCall","src":"15234:37:17"},"nodeType":"YulExpressionStatement","src":"15234:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15212:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15219:3:17","type":""}],"src":"15159:118:17"},{"body":{"nodeType":"YulBlock","src":"15407:204:17","statements":[{"nodeType":"YulAssignment","src":"15417:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15429:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15440:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15425:3:17"},"nodeType":"YulFunctionCall","src":"15425:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15417:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15495:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15508:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15519:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15504:3:17"},"nodeType":"YulFunctionCall","src":"15504:17:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"15453:41:17"},"nodeType":"YulFunctionCall","src":"15453:69:17"},"nodeType":"YulExpressionStatement","src":"15453:69:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"15576:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15589:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15600:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15585:3:17"},"nodeType":"YulFunctionCall","src":"15585:18:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"15532:43:17"},"nodeType":"YulFunctionCall","src":"15532:72:17"},"nodeType":"YulExpressionStatement","src":"15532:72:17"}]},"name":"abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15371:9:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15383:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15391:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15402:4:17","type":""}],"src":"15283:328:17"},{"body":{"nodeType":"YulBlock","src":"15841:395:17","statements":[{"nodeType":"YulVariableDeclaration","src":"15851:26:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15867:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"15872:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15863:3:17"},"nodeType":"YulFunctionCall","src":"15863:14:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"15855:4:17","type":""}]},{"nodeType":"YulBlock","src":"15887:164:17","statements":[{"nodeType":"YulVariableDeclaration","src":"15922:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15952:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"15959:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15948:3:17"},"nodeType":"YulFunctionCall","src":"15948:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"15942:5:17"},"nodeType":"YulFunctionCall","src":"15942:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"15926:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"16012:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16030:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"16035:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16026:3:17"},"nodeType":"YulFunctionCall","src":"16026:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"15978:33:17"},"nodeType":"YulFunctionCall","src":"15978:63:17"},"nodeType":"YulExpressionStatement","src":"15978:63:17"}]},{"nodeType":"YulBlock","src":"16061:168:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16100:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"16130:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"16137:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16126:3:17"},"nodeType":"YulFunctionCall","src":"16126:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16120:5:17"},"nodeType":"YulFunctionCall","src":"16120:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"16104:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"16190:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16208:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"16213:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16204:3:17"},"nodeType":"YulFunctionCall","src":"16204:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"16156:33:17"},"nodeType":"YulFunctionCall","src":"16156:63:17"},"nodeType":"YulExpressionStatement","src":"16156:63:17"}]}]},"name":"abi_encode_t_struct$_InstitutionByCode_$3454_memory_ptr_to_t_struct$_InstitutionByCode_$3454_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15828:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15835:3:17","type":""}],"src":"15705:531:17"},{"body":{"nodeType":"YulBlock","src":"16410:194:17","statements":[{"nodeType":"YulAssignment","src":"16420:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16432:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"16443:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16428:3:17"},"nodeType":"YulFunctionCall","src":"16428:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16420:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16570:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16583:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"16594:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16579:3:17"},"nodeType":"YulFunctionCall","src":"16579:17:17"}],"functionName":{"name":"abi_encode_t_struct$_InstitutionByCode_$3454_memory_ptr_to_t_struct$_InstitutionByCode_$3454_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16456:113:17"},"nodeType":"YulFunctionCall","src":"16456:141:17"},"nodeType":"YulExpressionStatement","src":"16456:141:17"}]},"name":"abi_encode_tuple_t_struct$_InstitutionByCode_$3454_memory_ptr__to_t_struct$_InstitutionByCode_$3454_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16382:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16394:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16405:4:17","type":""}],"src":"16242:362:17"},{"body":{"nodeType":"YulBlock","src":"16710:519:17","statements":[{"body":{"nodeType":"YulBlock","src":"16756:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"16758:77:17"},"nodeType":"YulFunctionCall","src":"16758:79:17"},"nodeType":"YulExpressionStatement","src":"16758:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"16731:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"16740:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16727:3:17"},"nodeType":"YulFunctionCall","src":"16727:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"16752:2:17","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"16723:3:17"},"nodeType":"YulFunctionCall","src":"16723:32:17"},"nodeType":"YulIf","src":"16720:119:17"},{"nodeType":"YulBlock","src":"16849:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16864:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"16878:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"16868:6:17","type":""}]},{"nodeType":"YulAssignment","src":"16893:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16928:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"16939:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16924:3:17"},"nodeType":"YulFunctionCall","src":"16924:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"16948:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"16903:20:17"},"nodeType":"YulFunctionCall","src":"16903:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"16893:6:17"}]}]},{"nodeType":"YulBlock","src":"16976:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16991:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"17005:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"16995:6:17","type":""}]},{"nodeType":"YulAssignment","src":"17021:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17056:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"17067:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17052:3:17"},"nodeType":"YulFunctionCall","src":"17052:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"17076:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"17031:20:17"},"nodeType":"YulFunctionCall","src":"17031:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"17021:6:17"}]}]},{"nodeType":"YulBlock","src":"17104:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"17119:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"17133:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"17123:6:17","type":""}]},{"nodeType":"YulAssignment","src":"17149:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17184:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"17195:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17180:3:17"},"nodeType":"YulFunctionCall","src":"17180:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"17204:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"17159:20:17"},"nodeType":"YulFunctionCall","src":"17159:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"17149:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16664:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"16675:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"16687:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"16695:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"16703:6:17","type":""}],"src":"16610:619:17"},{"body":{"nodeType":"YulBlock","src":"17277:78:17","statements":[{"body":{"nodeType":"YulBlock","src":"17333:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17342:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"17345:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"17335:6:17"},"nodeType":"YulFunctionCall","src":"17335:12:17"},"nodeType":"YulExpressionStatement","src":"17335:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"17300:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"17324:5:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"17307:16:17"},"nodeType":"YulFunctionCall","src":"17307:23:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"17297:2:17"},"nodeType":"YulFunctionCall","src":"17297:34:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"17290:6:17"},"nodeType":"YulFunctionCall","src":"17290:42:17"},"nodeType":"YulIf","src":"17287:62:17"}]},"name":"validator_revert_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"17270:5:17","type":""}],"src":"17235:120:17"},{"body":{"nodeType":"YulBlock","src":"17412:86:17","statements":[{"nodeType":"YulAssignment","src":"17422:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"17444:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"17431:12:17"},"nodeType":"YulFunctionCall","src":"17431:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"17422:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"17486:5:17"}],"functionName":{"name":"validator_revert_t_uint96","nodeType":"YulIdentifier","src":"17460:25:17"},"nodeType":"YulFunctionCall","src":"17460:32:17"},"nodeType":"YulExpressionStatement","src":"17460:32:17"}]},"name":"abi_decode_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"17390:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"17398:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"17406:5:17","type":""}],"src":"17361:137:17"},{"body":{"nodeType":"YulBlock","src":"17593:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17610:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"17613:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"17603:6:17"},"nodeType":"YulFunctionCall","src":"17603:12:17"},"nodeType":"YulExpressionStatement","src":"17603:12:17"}]},"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulFunctionDefinition","src":"17504:117:17"},{"body":{"nodeType":"YulBlock","src":"17716:478:17","statements":[{"body":{"nodeType":"YulBlock","src":"17765:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"17767:77:17"},"nodeType":"YulFunctionCall","src":"17767:79:17"},"nodeType":"YulExpressionStatement","src":"17767:79:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"17744:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"17752:4:17","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17740:3:17"},"nodeType":"YulFunctionCall","src":"17740:17:17"},{"name":"end","nodeType":"YulIdentifier","src":"17759:3:17"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"17736:3:17"},"nodeType":"YulFunctionCall","src":"17736:27:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"17729:6:17"},"nodeType":"YulFunctionCall","src":"17729:35:17"},"nodeType":"YulIf","src":"17726:122:17"},{"nodeType":"YulAssignment","src":"17857:30:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"17880:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"17867:12:17"},"nodeType":"YulFunctionCall","src":"17867:20:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"17857:6:17"}]},{"body":{"nodeType":"YulBlock","src":"17930:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulIdentifier","src":"17932:77:17"},"nodeType":"YulFunctionCall","src":"17932:79:17"},"nodeType":"YulExpressionStatement","src":"17932:79:17"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"17902:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"17910:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"17899:2:17"},"nodeType":"YulFunctionCall","src":"17899:30:17"},"nodeType":"YulIf","src":"17896:117:17"},{"nodeType":"YulAssignment","src":"18022:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"18038:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"18046:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18034:3:17"},"nodeType":"YulFunctionCall","src":"18034:17:17"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"18022:8:17"}]},{"body":{"nodeType":"YulBlock","src":"18105:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"18107:77:17"},"nodeType":"YulFunctionCall","src":"18107:79:17"},"nodeType":"YulExpressionStatement","src":"18107:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"18070:8:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"18084:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"18092:4:17","type":"","value":"0x01"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"18080:3:17"},"nodeType":"YulFunctionCall","src":"18080:17:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18066:3:17"},"nodeType":"YulFunctionCall","src":"18066:32:17"},{"name":"end","nodeType":"YulIdentifier","src":"18100:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"18063:2:17"},"nodeType":"YulFunctionCall","src":"18063:41:17"},"nodeType":"YulIf","src":"18060:128:17"}]},"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"17683:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"17691:3:17","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"17699:8:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"17709:6:17","type":""}],"src":"17641:553:17"},{"body":{"nodeType":"YulBlock","src":"18404:1343:17","statements":[{"body":{"nodeType":"YulBlock","src":"18451:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"18453:77:17"},"nodeType":"YulFunctionCall","src":"18453:79:17"},"nodeType":"YulExpressionStatement","src":"18453:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"18425:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"18434:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18421:3:17"},"nodeType":"YulFunctionCall","src":"18421:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"18446:3:17","type":"","value":"256"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"18417:3:17"},"nodeType":"YulFunctionCall","src":"18417:33:17"},"nodeType":"YulIf","src":"18414:120:17"},{"nodeType":"YulBlock","src":"18544:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"18559:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"18573:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"18563:6:17","type":""}]},{"nodeType":"YulAssignment","src":"18588:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18623:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"18634:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18619:3:17"},"nodeType":"YulFunctionCall","src":"18619:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"18643:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"18598:20:17"},"nodeType":"YulFunctionCall","src":"18598:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"18588:6:17"}]}]},{"nodeType":"YulBlock","src":"18671:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"18686:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"18700:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"18690:6:17","type":""}]},{"nodeType":"YulAssignment","src":"18716:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18751:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"18762:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18747:3:17"},"nodeType":"YulFunctionCall","src":"18747:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"18771:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"18726:20:17"},"nodeType":"YulFunctionCall","src":"18726:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"18716:6:17"}]}]},{"nodeType":"YulBlock","src":"18799:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"18814:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"18828:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"18818:6:17","type":""}]},{"nodeType":"YulAssignment","src":"18844:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18879:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"18890:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18875:3:17"},"nodeType":"YulFunctionCall","src":"18875:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"18899:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"18854:20:17"},"nodeType":"YulFunctionCall","src":"18854:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"18844:6:17"}]}]},{"nodeType":"YulBlock","src":"18927:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"18942:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"18956:2:17","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"18946:6:17","type":""}]},{"nodeType":"YulAssignment","src":"18972:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19006:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"19017:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19002:3:17"},"nodeType":"YulFunctionCall","src":"19002:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"19026:7:17"}],"functionName":{"name":"abi_decode_t_uint96","nodeType":"YulIdentifier","src":"18982:19:17"},"nodeType":"YulFunctionCall","src":"18982:52:17"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"18972:6:17"}]}]},{"nodeType":"YulBlock","src":"19054:119:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19069:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"19083:3:17","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"19073:6:17","type":""}]},{"nodeType":"YulAssignment","src":"19100:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19135:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"19146:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19131:3:17"},"nodeType":"YulFunctionCall","src":"19131:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"19155:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"19110:20:17"},"nodeType":"YulFunctionCall","src":"19110:53:17"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"19100:6:17"}]}]},{"nodeType":"YulBlock","src":"19183:119:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19198:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"19212:3:17","type":"","value":"160"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"19202:6:17","type":""}]},{"nodeType":"YulAssignment","src":"19229:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19264:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"19275:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19260:3:17"},"nodeType":"YulFunctionCall","src":"19260:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"19284:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"19239:20:17"},"nodeType":"YulFunctionCall","src":"19239:53:17"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"19229:6:17"}]}]},{"nodeType":"YulBlock","src":"19312:119:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19327:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"19341:3:17","type":"","value":"192"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"19331:6:17","type":""}]},{"nodeType":"YulAssignment","src":"19358:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19393:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"19404:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19389:3:17"},"nodeType":"YulFunctionCall","src":"19389:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"19413:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"19368:20:17"},"nodeType":"YulFunctionCall","src":"19368:53:17"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"19358:6:17"}]}]},{"nodeType":"YulBlock","src":"19441:299:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19456:47:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19487:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"19498:3:17","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19483:3:17"},"nodeType":"YulFunctionCall","src":"19483:19:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"19470:12:17"},"nodeType":"YulFunctionCall","src":"19470:33:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"19460:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"19550:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"19552:77:17"},"nodeType":"YulFunctionCall","src":"19552:79:17"},"nodeType":"YulExpressionStatement","src":"19552:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"19522:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"19530:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"19519:2:17"},"nodeType":"YulFunctionCall","src":"19519:30:17"},"nodeType":"YulIf","src":"19516:117:17"},{"nodeType":"YulAssignment","src":"19647:83:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19702:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"19713:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19698:3:17"},"nodeType":"YulFunctionCall","src":"19698:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"19722:7:17"}],"functionName":{"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulIdentifier","src":"19665:32:17"},"nodeType":"YulFunctionCall","src":"19665:65:17"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"19647:6:17"},{"name":"value8","nodeType":"YulIdentifier","src":"19655:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes32t_uint96t_addresst_uint256t_addresst_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18310:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"18321:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"18333:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"18341:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"18349:6:17","type":""},{"name":"value3","nodeType":"YulTypedName","src":"18357:6:17","type":""},{"name":"value4","nodeType":"YulTypedName","src":"18365:6:17","type":""},{"name":"value5","nodeType":"YulTypedName","src":"18373:6:17","type":""},{"name":"value6","nodeType":"YulTypedName","src":"18381:6:17","type":""},{"name":"value7","nodeType":"YulTypedName","src":"18389:6:17","type":""},{"name":"value8","nodeType":"YulTypedName","src":"18397:6:17","type":""}],"src":"18200:1547:17"},{"body":{"nodeType":"YulBlock","src":"19818:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19835:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19858:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"19840:17:17"},"nodeType":"YulFunctionCall","src":"19840:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19828:6:17"},"nodeType":"YulFunctionCall","src":"19828:37:17"},"nodeType":"YulExpressionStatement","src":"19828:37:17"}]},"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"19806:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"19813:3:17","type":""}],"src":"19753:118:17"},{"body":{"nodeType":"YulBlock","src":"19975:124:17","statements":[{"nodeType":"YulAssignment","src":"19985:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19997:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"20008:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19993:3:17"},"nodeType":"YulFunctionCall","src":"19993:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19985:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"20065:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20078:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"20089:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20074:3:17"},"nodeType":"YulFunctionCall","src":"20074:17:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"20021:43:17"},"nodeType":"YulFunctionCall","src":"20021:71:17"},"nodeType":"YulExpressionStatement","src":"20021:71:17"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19947:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"19959:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19970:4:17","type":""}],"src":"19877:222:17"},{"body":{"nodeType":"YulBlock","src":"20221:647:17","statements":[{"body":{"nodeType":"YulBlock","src":"20268:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"20270:77:17"},"nodeType":"YulFunctionCall","src":"20270:79:17"},"nodeType":"YulExpressionStatement","src":"20270:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"20242:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"20251:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20238:3:17"},"nodeType":"YulFunctionCall","src":"20238:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"20263:3:17","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"20234:3:17"},"nodeType":"YulFunctionCall","src":"20234:33:17"},"nodeType":"YulIf","src":"20231:120:17"},{"nodeType":"YulBlock","src":"20361:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"20376:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"20390:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"20380:6:17","type":""}]},{"nodeType":"YulAssignment","src":"20405:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20440:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"20451:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20436:3:17"},"nodeType":"YulFunctionCall","src":"20436:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"20460:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"20415:20:17"},"nodeType":"YulFunctionCall","src":"20415:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"20405:6:17"}]}]},{"nodeType":"YulBlock","src":"20488:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"20503:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"20517:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"20507:6:17","type":""}]},{"nodeType":"YulAssignment","src":"20533:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20568:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"20579:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20564:3:17"},"nodeType":"YulFunctionCall","src":"20564:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"20588:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"20543:20:17"},"nodeType":"YulFunctionCall","src":"20543:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"20533:6:17"}]}]},{"nodeType":"YulBlock","src":"20616:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"20631:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"20645:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"20635:6:17","type":""}]},{"nodeType":"YulAssignment","src":"20661:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20696:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"20707:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20692:3:17"},"nodeType":"YulFunctionCall","src":"20692:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"20716:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"20671:20:17"},"nodeType":"YulFunctionCall","src":"20671:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"20661:6:17"}]}]},{"nodeType":"YulBlock","src":"20744:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"20759:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"20773:2:17","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"20763:6:17","type":""}]},{"nodeType":"YulAssignment","src":"20789:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20823:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"20834:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20819:3:17"},"nodeType":"YulFunctionCall","src":"20819:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"20843:7:17"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"20799:19:17"},"nodeType":"YulFunctionCall","src":"20799:52:17"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"20789:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20167:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"20178:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"20190:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"20198:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"20206:6:17","type":""},{"name":"value3","nodeType":"YulTypedName","src":"20214:6:17","type":""}],"src":"20105:763:17"},{"body":{"nodeType":"YulBlock","src":"20902:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"20919:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"20922:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20912:6:17"},"nodeType":"YulFunctionCall","src":"20912:88:17"},"nodeType":"YulExpressionStatement","src":"20912:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21016:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"21019:4:17","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21009:6:17"},"nodeType":"YulFunctionCall","src":"21009:15:17"},"nodeType":"YulExpressionStatement","src":"21009:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21040:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21043:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21033:6:17"},"nodeType":"YulFunctionCall","src":"21033:15:17"},"nodeType":"YulExpressionStatement","src":"21033:15:17"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"20874:180:17"},{"body":{"nodeType":"YulBlock","src":"21157:40:17","statements":[{"nodeType":"YulAssignment","src":"21168:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"21184:5:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"21178:5:17"},"nodeType":"YulFunctionCall","src":"21178:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"21168:6:17"}]}]},"name":"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21140:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"21150:6:17","type":""}],"src":"21060:137:17"},{"body":{"nodeType":"YulBlock","src":"21298:87:17","statements":[{"nodeType":"YulAssignment","src":"21308:11:17","value":{"name":"ptr","nodeType":"YulIdentifier","src":"21316:3:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"21308:4:17"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21336:1:17","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"21339:3:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21329:6:17"},"nodeType":"YulFunctionCall","src":"21329:14:17"},"nodeType":"YulExpressionStatement","src":"21329:14:17"},{"nodeType":"YulAssignment","src":"21352:26:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21370:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21373:4:17","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"21360:9:17"},"nodeType":"YulFunctionCall","src":"21360:18:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"21352:4:17"}]}]},"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"21285:3:17","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"21293:4:17","type":""}],"src":"21203:182:17"},{"body":{"nodeType":"YulBlock","src":"21442:51:17","statements":[{"nodeType":"YulAssignment","src":"21452:34:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21477:1:17","type":"","value":"0"},{"name":"value","nodeType":"YulIdentifier","src":"21480:5:17"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"21473:3:17"},"nodeType":"YulFunctionCall","src":"21473:13:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"21452:8:17"}]}]},"name":"shift_right_0_unsigned","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21423:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"21433:8:17","type":""}],"src":"21391:102:17"},{"body":{"nodeType":"YulBlock","src":"21557:32:17","statements":[{"nodeType":"YulAssignment","src":"21567:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"21578:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"21567:7:17"}]}]},"name":"cleanup_from_storage_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21539:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"21549:7:17","type":""}],"src":"21499:90:17"},{"body":{"nodeType":"YulBlock","src":"21670:91:17","statements":[{"nodeType":"YulAssignment","src":"21680:75:17","value":{"arguments":[{"arguments":[{"name":"slot_value","nodeType":"YulIdentifier","src":"21743:10:17"}],"functionName":{"name":"shift_right_0_unsigned","nodeType":"YulIdentifier","src":"21720:22:17"},"nodeType":"YulFunctionCall","src":"21720:34:17"}],"functionName":{"name":"cleanup_from_storage_t_bytes32","nodeType":"YulIdentifier","src":"21689:30:17"},"nodeType":"YulFunctionCall","src":"21689:66:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"21680:5:17"}]}]},"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot_value","nodeType":"YulTypedName","src":"21649:10:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"21664:5:17","type":""}],"src":"21595:166:17"},{"body":{"nodeType":"YulBlock","src":"21954:578:17","statements":[{"nodeType":"YulVariableDeclaration","src":"21964:26:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21980:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"21985:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21976:3:17"},"nodeType":"YulFunctionCall","src":"21976:14:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"21968:4:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"21999:18:17","value":{"kind":"number","nodeType":"YulLiteral","src":"22016:1:17","type":"","value":"0"},"variables":[{"name":"slotValue","nodeType":"YulTypedName","src":"22003:9:17","type":""}]},{"nodeType":"YulBlock","src":"22027:244:17","statements":[{"nodeType":"YulAssignment","src":"22061:36:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22084:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"22091:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22080:3:17"},"nodeType":"YulFunctionCall","src":"22080:16:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"22074:5:17"},"nodeType":"YulFunctionCall","src":"22074:23:17"},"variableNames":[{"name":"slotValue","nodeType":"YulIdentifier","src":"22061:9:17"}]},{"nodeType":"YulVariableDeclaration","src":"22110:75:17","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"22175:9:17"}],"functionName":{"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulIdentifier","src":"22130:44:17"},"nodeType":"YulFunctionCall","src":"22130:55:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"22114:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"22232:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"22250:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"22255:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22246:3:17"},"nodeType":"YulFunctionCall","src":"22246:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"22198:33:17"},"nodeType":"YulFunctionCall","src":"22198:63:17"},"nodeType":"YulExpressionStatement","src":"22198:63:17"}]},{"nodeType":"YulBlock","src":"22281:244:17","statements":[{"nodeType":"YulAssignment","src":"22315:36:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"22338:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"22345:4:17","type":"","value":"0x01"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22334:3:17"},"nodeType":"YulFunctionCall","src":"22334:16:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"22328:5:17"},"nodeType":"YulFunctionCall","src":"22328:23:17"},"variableNames":[{"name":"slotValue","nodeType":"YulIdentifier","src":"22315:9:17"}]},{"nodeType":"YulVariableDeclaration","src":"22364:75:17","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"22429:9:17"}],"functionName":{"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulIdentifier","src":"22384:44:17"},"nodeType":"YulFunctionCall","src":"22384:55:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"22368:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"22486:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"22504:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"22509:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22500:3:17"},"nodeType":"YulFunctionCall","src":"22500:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"22452:33:17"},"nodeType":"YulFunctionCall","src":"22452:63:17"},"nodeType":"YulExpressionStatement","src":"22452:63:17"}]}]},"name":"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"21941:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"21948:3:17","type":""}],"src":"21843:689:17"},{"body":{"nodeType":"YulBlock","src":"22673:154:17","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"22772:6:17"},{"name":"pos","nodeType":"YulIdentifier","src":"22780:3:17"}],"functionName":{"name":"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"22683:88:17"},"nodeType":"YulFunctionCall","src":"22683:101:17"},"nodeType":"YulExpressionStatement","src":"22683:101:17"},{"nodeType":"YulAssignment","src":"22793:28:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"22811:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"22816:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22807:3:17"},"nodeType":"YulFunctionCall","src":"22807:14:17"},"variableNames":[{"name":"updatedPos","nodeType":"YulIdentifier","src":"22793:10:17"}]}]},"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value0","nodeType":"YulTypedName","src":"22646:6:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"22654:3:17","type":""}],"returnVariables":[{"name":"updatedPos","nodeType":"YulTypedName","src":"22662:10:17","type":""}],"src":"22538:289:17"},{"body":{"nodeType":"YulBlock","src":"22931:38:17","statements":[{"nodeType":"YulAssignment","src":"22941:22:17","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"22953:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"22958:4:17","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22949:3:17"},"nodeType":"YulFunctionCall","src":"22949:14:17"},"variableNames":[{"name":"next","nodeType":"YulIdentifier","src":"22941:4:17"}]}]},"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"22918:3:17","type":""}],"returnVariables":[{"name":"next","nodeType":"YulTypedName","src":"22926:4:17","type":""}],"src":"22833:136:17"},{"body":{"nodeType":"YulBlock","src":"23231:754:17","statements":[{"nodeType":"YulVariableDeclaration","src":"23241:91:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"23326:5:17"}],"functionName":{"name":"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"23255:70:17"},"nodeType":"YulFunctionCall","src":"23255:77:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"23245:6:17","type":""}]},{"nodeType":"YulAssignment","src":"23341:122:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23451:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"23456:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"23348:102:17"},"nodeType":"YulFunctionCall","src":"23348:115:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"23341:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"23472:94:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"23560:5:17"}],"functionName":{"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"23487:72:17"},"nodeType":"YulFunctionCall","src":"23487:79:17"},"variables":[{"name":"baseRef","nodeType":"YulTypedName","src":"23476:7:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"23575:21:17","value":{"name":"baseRef","nodeType":"YulIdentifier","src":"23589:7:17"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"23579:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"23665:295:17","statements":[{"nodeType":"YulVariableDeclaration","src":"23679:27:17","value":{"name":"srcPtr","nodeType":"YulIdentifier","src":"23700:6:17"},"variables":[{"name":"elementValue0","nodeType":"YulTypedName","src":"23683:13:17","type":""}]},{"nodeType":"YulAssignment","src":"23719:125:17","value":{"arguments":[{"name":"elementValue0","nodeType":"YulIdentifier","src":"23825:13:17"},{"name":"pos","nodeType":"YulIdentifier","src":"23840:3:17"}],"functionName":{"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"23726:98:17"},"nodeType":"YulFunctionCall","src":"23726:118:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"23719:3:17"}]},{"nodeType":"YulAssignment","src":"23857:93:17","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"23943:6:17"}],"functionName":{"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"23867:75:17"},"nodeType":"YulFunctionCall","src":"23867:83:17"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"23857:6:17"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"23627:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"23630:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"23624:2:17"},"nodeType":"YulFunctionCall","src":"23624:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"23638:18:17","statements":[{"nodeType":"YulAssignment","src":"23640:14:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"23649:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"23652:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23645:3:17"},"nodeType":"YulFunctionCall","src":"23645:9:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"23640:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"23609:14:17","statements":[{"nodeType":"YulVariableDeclaration","src":"23611:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"23620:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"23615:1:17","type":""}]}]},"src":"23605:355:17"},{"nodeType":"YulAssignment","src":"23969:10:17","value":{"name":"pos","nodeType":"YulIdentifier","src":"23976:3:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"23969:3:17"}]}]},"name":"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"23210:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"23217:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"23226:3:17","type":""}],"src":"23055:930:17"},{"body":{"nodeType":"YulBlock","src":"24191:277:17","statements":[{"nodeType":"YulAssignment","src":"24201:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24213:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"24224:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24209:3:17"},"nodeType":"YulFunctionCall","src":"24209:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24201:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24248:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"24259:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24244:3:17"},"nodeType":"YulFunctionCall","src":"24244:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24267:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"24273:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"24263:3:17"},"nodeType":"YulFunctionCall","src":"24263:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24237:6:17"},"nodeType":"YulFunctionCall","src":"24237:47:17"},"nodeType":"YulExpressionStatement","src":"24237:47:17"},{"nodeType":"YulAssignment","src":"24293:168:17","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"24447:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"24456:4:17"}],"functionName":{"name":"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24301:145:17"},"nodeType":"YulFunctionCall","src":"24301:160:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24293:4:17"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24163:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"24175:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24186:4:17","type":""}],"src":"23991:477:17"},{"body":{"nodeType":"YulBlock","src":"24570:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24587:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"24592:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24580:6:17"},"nodeType":"YulFunctionCall","src":"24580:19:17"},"nodeType":"YulExpressionStatement","src":"24580:19:17"},{"nodeType":"YulAssignment","src":"24608:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24627:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"24632:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24623:3:17"},"nodeType":"YulFunctionCall","src":"24623:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"24608:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"24542:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"24547:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"24558:11:17","type":""}],"src":"24474:169:17"},{"body":{"nodeType":"YulBlock","src":"24755:65:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"24777:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"24785:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24773:3:17"},"nodeType":"YulFunctionCall","src":"24773:14:17"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"24789:23:17","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24766:6:17"},"nodeType":"YulFunctionCall","src":"24766:47:17"},"nodeType":"YulExpressionStatement","src":"24766:47:17"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"24747:6:17","type":""}],"src":"24649:171:17"},{"body":{"nodeType":"YulBlock","src":"24972:220:17","statements":[{"nodeType":"YulAssignment","src":"24982:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"25048:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"25053:2:17","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24989:58:17"},"nodeType":"YulFunctionCall","src":"24989:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"24982:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"25154:3:17"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"25065:88:17"},"nodeType":"YulFunctionCall","src":"25065:93:17"},"nodeType":"YulExpressionStatement","src":"25065:93:17"},{"nodeType":"YulAssignment","src":"25167:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"25178:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"25183:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25174:3:17"},"nodeType":"YulFunctionCall","src":"25174:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"25167:3:17"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"24960:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"24968:3:17","type":""}],"src":"24826:366:17"},{"body":{"nodeType":"YulBlock","src":"25369:248:17","statements":[{"nodeType":"YulAssignment","src":"25379:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25391:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"25402:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25387:3:17"},"nodeType":"YulFunctionCall","src":"25387:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25379:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25426:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"25437:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25422:3:17"},"nodeType":"YulFunctionCall","src":"25422:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25445:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"25451:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"25441:3:17"},"nodeType":"YulFunctionCall","src":"25441:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25415:6:17"},"nodeType":"YulFunctionCall","src":"25415:47:17"},"nodeType":"YulExpressionStatement","src":"25415:47:17"},{"nodeType":"YulAssignment","src":"25471:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25605:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"25479:124:17"},"nodeType":"YulFunctionCall","src":"25479:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25471:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25349:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25364:4:17","type":""}],"src":"25198:419:17"},{"body":{"nodeType":"YulBlock","src":"25729:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"25751:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"25759:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25747:3:17"},"nodeType":"YulFunctionCall","src":"25747:14:17"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"25763:34:17","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25740:6:17"},"nodeType":"YulFunctionCall","src":"25740:58:17"},"nodeType":"YulExpressionStatement","src":"25740:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"25819:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"25827:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25815:3:17"},"nodeType":"YulFunctionCall","src":"25815:15:17"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"25832:7:17","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25808:6:17"},"nodeType":"YulFunctionCall","src":"25808:32:17"},"nodeType":"YulExpressionStatement","src":"25808:32:17"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"25721:6:17","type":""}],"src":"25623:224:17"},{"body":{"nodeType":"YulBlock","src":"25999:220:17","statements":[{"nodeType":"YulAssignment","src":"26009:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26075:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"26080:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26016:58:17"},"nodeType":"YulFunctionCall","src":"26016:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"26009:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26181:3:17"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"26092:88:17"},"nodeType":"YulFunctionCall","src":"26092:93:17"},"nodeType":"YulExpressionStatement","src":"26092:93:17"},{"nodeType":"YulAssignment","src":"26194:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26205:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"26210:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26201:3:17"},"nodeType":"YulFunctionCall","src":"26201:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"26194:3:17"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"25987:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"25995:3:17","type":""}],"src":"25853:366:17"},{"body":{"nodeType":"YulBlock","src":"26396:248:17","statements":[{"nodeType":"YulAssignment","src":"26406:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26418:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"26429:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26414:3:17"},"nodeType":"YulFunctionCall","src":"26414:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26406:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26453:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"26464:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26449:3:17"},"nodeType":"YulFunctionCall","src":"26449:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"26472:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"26478:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"26468:3:17"},"nodeType":"YulFunctionCall","src":"26468:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26442:6:17"},"nodeType":"YulFunctionCall","src":"26442:47:17"},"nodeType":"YulExpressionStatement","src":"26442:47:17"},{"nodeType":"YulAssignment","src":"26498:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"26632:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26506:124:17"},"nodeType":"YulFunctionCall","src":"26506:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26498:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26376:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26391:4:17","type":""}],"src":"26225:419:17"},{"body":{"nodeType":"YulBlock","src":"26756:120:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"26778:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"26786:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26774:3:17"},"nodeType":"YulFunctionCall","src":"26774:14:17"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"26790:34:17","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26767:6:17"},"nodeType":"YulFunctionCall","src":"26767:58:17"},"nodeType":"YulExpressionStatement","src":"26767:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"26846:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"26854:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26842:3:17"},"nodeType":"YulFunctionCall","src":"26842:15:17"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"26859:9:17","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26835:6:17"},"nodeType":"YulFunctionCall","src":"26835:34:17"},"nodeType":"YulExpressionStatement","src":"26835:34:17"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"26748:6:17","type":""}],"src":"26650:226:17"},{"body":{"nodeType":"YulBlock","src":"27028:220:17","statements":[{"nodeType":"YulAssignment","src":"27038:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27104:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"27109:2:17","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27045:58:17"},"nodeType":"YulFunctionCall","src":"27045:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"27038:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27210:3:17"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"27121:88:17"},"nodeType":"YulFunctionCall","src":"27121:93:17"},"nodeType":"YulExpressionStatement","src":"27121:93:17"},{"nodeType":"YulAssignment","src":"27223:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27234:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"27239:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27230:3:17"},"nodeType":"YulFunctionCall","src":"27230:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"27223:3:17"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"27016:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"27024:3:17","type":""}],"src":"26882:366:17"},{"body":{"nodeType":"YulBlock","src":"27425:248:17","statements":[{"nodeType":"YulAssignment","src":"27435:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27447:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"27458:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27443:3:17"},"nodeType":"YulFunctionCall","src":"27443:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27435:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27482:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"27493:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27478:3:17"},"nodeType":"YulFunctionCall","src":"27478:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27501:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"27507:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"27497:3:17"},"nodeType":"YulFunctionCall","src":"27497:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27471:6:17"},"nodeType":"YulFunctionCall","src":"27471:47:17"},"nodeType":"YulExpressionStatement","src":"27471:47:17"},{"nodeType":"YulAssignment","src":"27527:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27661:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27535:124:17"},"nodeType":"YulFunctionCall","src":"27535:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27527:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27405:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27420:4:17","type":""}],"src":"27254:419:17"},{"body":{"nodeType":"YulBlock","src":"27775:122:17","statements":[{"nodeType":"YulAssignment","src":"27785:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27797:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"27808:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27793:3:17"},"nodeType":"YulFunctionCall","src":"27793:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27785:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"27863:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27876:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"27887:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27872:3:17"},"nodeType":"YulFunctionCall","src":"27872:17:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"27821:41:17"},"nodeType":"YulFunctionCall","src":"27821:69:17"},"nodeType":"YulExpressionStatement","src":"27821:69:17"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27747:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"27759:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27770:4:17","type":""}],"src":"27679:218:17"},{"body":{"nodeType":"YulBlock","src":"28009:58:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"28031:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"28039:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28027:3:17"},"nodeType":"YulFunctionCall","src":"28027:14:17"},{"hexValue":"4f6e6c7941676772656761746f72","kind":"string","nodeType":"YulLiteral","src":"28043:16:17","type":"","value":"OnlyAggregator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28020:6:17"},"nodeType":"YulFunctionCall","src":"28020:40:17"},"nodeType":"YulExpressionStatement","src":"28020:40:17"}]},"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"28001:6:17","type":""}],"src":"27903:164:17"},{"body":{"nodeType":"YulBlock","src":"28219:220:17","statements":[{"nodeType":"YulAssignment","src":"28229:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"28295:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"28300:2:17","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"28236:58:17"},"nodeType":"YulFunctionCall","src":"28236:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"28229:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"28401:3:17"}],"functionName":{"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulIdentifier","src":"28312:88:17"},"nodeType":"YulFunctionCall","src":"28312:93:17"},"nodeType":"YulExpressionStatement","src":"28312:93:17"},{"nodeType":"YulAssignment","src":"28414:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"28425:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"28430:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28421:3:17"},"nodeType":"YulFunctionCall","src":"28421:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"28414:3:17"}]}]},"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"28207:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"28215:3:17","type":""}],"src":"28073:366:17"},{"body":{"nodeType":"YulBlock","src":"28616:248:17","statements":[{"nodeType":"YulAssignment","src":"28626:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28638:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"28649:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28634:3:17"},"nodeType":"YulFunctionCall","src":"28634:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28626:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28673:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"28684:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28669:3:17"},"nodeType":"YulFunctionCall","src":"28669:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"28692:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"28698:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"28688:3:17"},"nodeType":"YulFunctionCall","src":"28688:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28662:6:17"},"nodeType":"YulFunctionCall","src":"28662:47:17"},"nodeType":"YulExpressionStatement","src":"28662:47:17"},{"nodeType":"YulAssignment","src":"28718:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"28852:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"28726:124:17"},"nodeType":"YulFunctionCall","src":"28726:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28718:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28596:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28611:4:17","type":""}],"src":"28445:419:17"},{"body":{"nodeType":"YulBlock","src":"28976:58:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"28998:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"29006:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28994:3:17"},"nodeType":"YulFunctionCall","src":"28994:14:17"},{"hexValue":"4f7264657246756c66696c6c6564","kind":"string","nodeType":"YulLiteral","src":"29010:16:17","type":"","value":"OrderFulfilled"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28987:6:17"},"nodeType":"YulFunctionCall","src":"28987:40:17"},"nodeType":"YulExpressionStatement","src":"28987:40:17"}]},"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"28968:6:17","type":""}],"src":"28870:164:17"},{"body":{"nodeType":"YulBlock","src":"29186:220:17","statements":[{"nodeType":"YulAssignment","src":"29196:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"29262:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"29267:2:17","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"29203:58:17"},"nodeType":"YulFunctionCall","src":"29203:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"29196:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"29368:3:17"}],"functionName":{"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulIdentifier","src":"29279:88:17"},"nodeType":"YulFunctionCall","src":"29279:93:17"},"nodeType":"YulExpressionStatement","src":"29279:93:17"},{"nodeType":"YulAssignment","src":"29381:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"29392:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"29397:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29388:3:17"},"nodeType":"YulFunctionCall","src":"29388:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"29381:3:17"}]}]},"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"29174:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"29182:3:17","type":""}],"src":"29040:366:17"},{"body":{"nodeType":"YulBlock","src":"29583:248:17","statements":[{"nodeType":"YulAssignment","src":"29593:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29605:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"29616:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29601:3:17"},"nodeType":"YulFunctionCall","src":"29601:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"29593:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29640:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"29651:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29636:3:17"},"nodeType":"YulFunctionCall","src":"29636:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"29659:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"29665:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"29655:3:17"},"nodeType":"YulFunctionCall","src":"29655:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29629:6:17"},"nodeType":"YulFunctionCall","src":"29629:47:17"},"nodeType":"YulExpressionStatement","src":"29629:47:17"},{"nodeType":"YulAssignment","src":"29685:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"29819:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"29693:124:17"},"nodeType":"YulFunctionCall","src":"29693:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"29685:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"29563:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"29578:4:17","type":""}],"src":"29412:419:17"},{"body":{"nodeType":"YulBlock","src":"29943:57:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"29965:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"29973:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29961:3:17"},"nodeType":"YulFunctionCall","src":"29961:14:17"},{"hexValue":"4f72646572526566756e646564","kind":"string","nodeType":"YulLiteral","src":"29977:15:17","type":"","value":"OrderRefunded"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29954:6:17"},"nodeType":"YulFunctionCall","src":"29954:39:17"},"nodeType":"YulExpressionStatement","src":"29954:39:17"}]},"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"29935:6:17","type":""}],"src":"29837:163:17"},{"body":{"nodeType":"YulBlock","src":"30152:220:17","statements":[{"nodeType":"YulAssignment","src":"30162:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30228:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"30233:2:17","type":"","value":"13"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"30169:58:17"},"nodeType":"YulFunctionCall","src":"30169:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"30162:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30334:3:17"}],"functionName":{"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulIdentifier","src":"30245:88:17"},"nodeType":"YulFunctionCall","src":"30245:93:17"},"nodeType":"YulExpressionStatement","src":"30245:93:17"},{"nodeType":"YulAssignment","src":"30347:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30358:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"30363:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30354:3:17"},"nodeType":"YulFunctionCall","src":"30354:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"30347:3:17"}]}]},"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"30140:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"30148:3:17","type":""}],"src":"30006:366:17"},{"body":{"nodeType":"YulBlock","src":"30549:248:17","statements":[{"nodeType":"YulAssignment","src":"30559:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30571:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"30582:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30567:3:17"},"nodeType":"YulFunctionCall","src":"30567:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30559:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30606:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"30617:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30602:3:17"},"nodeType":"YulFunctionCall","src":"30602:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"30625:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"30631:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"30621:3:17"},"nodeType":"YulFunctionCall","src":"30621:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30595:6:17"},"nodeType":"YulFunctionCall","src":"30595:47:17"},"nodeType":"YulExpressionStatement","src":"30595:47:17"},{"nodeType":"YulAssignment","src":"30651:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"30785:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"30659:124:17"},"nodeType":"YulFunctionCall","src":"30659:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30651:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"30529:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"30544:4:17","type":""}],"src":"30378:419:17"},{"body":{"nodeType":"YulBlock","src":"30909:65:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"30931:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"30939:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30927:3:17"},"nodeType":"YulFunctionCall","src":"30927:14:17"},{"hexValue":"4665654578636565647350726f746f636f6c466565","kind":"string","nodeType":"YulLiteral","src":"30943:23:17","type":"","value":"FeeExceedsProtocolFee"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30920:6:17"},"nodeType":"YulFunctionCall","src":"30920:47:17"},"nodeType":"YulExpressionStatement","src":"30920:47:17"}]},"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"30901:6:17","type":""}],"src":"30803:171:17"},{"body":{"nodeType":"YulBlock","src":"31126:220:17","statements":[{"nodeType":"YulAssignment","src":"31136:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31202:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"31207:2:17","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31143:58:17"},"nodeType":"YulFunctionCall","src":"31143:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"31136:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31308:3:17"}],"functionName":{"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulIdentifier","src":"31219:88:17"},"nodeType":"YulFunctionCall","src":"31219:93:17"},"nodeType":"YulExpressionStatement","src":"31219:93:17"},{"nodeType":"YulAssignment","src":"31321:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31332:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"31337:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31328:3:17"},"nodeType":"YulFunctionCall","src":"31328:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"31321:3:17"}]}]},"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"31114:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"31122:3:17","type":""}],"src":"30980:366:17"},{"body":{"nodeType":"YulBlock","src":"31523:248:17","statements":[{"nodeType":"YulAssignment","src":"31533:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31545:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"31556:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31541:3:17"},"nodeType":"YulFunctionCall","src":"31541:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31533:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31580:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"31591:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31576:3:17"},"nodeType":"YulFunctionCall","src":"31576:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31599:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"31605:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"31595:3:17"},"nodeType":"YulFunctionCall","src":"31595:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31569:6:17"},"nodeType":"YulFunctionCall","src":"31569:47:17"},"nodeType":"YulExpressionStatement","src":"31569:47:17"},{"nodeType":"YulAssignment","src":"31625:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31759:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31633:124:17"},"nodeType":"YulFunctionCall","src":"31633:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31625:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31503:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31518:4:17","type":""}],"src":"31352:419:17"},{"body":{"nodeType":"YulBlock","src":"31903:206:17","statements":[{"nodeType":"YulAssignment","src":"31913:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31925:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"31936:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31921:3:17"},"nodeType":"YulFunctionCall","src":"31921:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31913:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"31993:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32006:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"32017:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32002:3:17"},"nodeType":"YulFunctionCall","src":"32002:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"31949:43:17"},"nodeType":"YulFunctionCall","src":"31949:71:17"},"nodeType":"YulExpressionStatement","src":"31949:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"32074:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32087:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"32098:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32083:3:17"},"nodeType":"YulFunctionCall","src":"32083:18:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"32030:43:17"},"nodeType":"YulFunctionCall","src":"32030:72:17"},"nodeType":"YulExpressionStatement","src":"32030:72:17"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31867:9:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"31879:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"31887:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31898:4:17","type":""}],"src":"31777:332:17"},{"body":{"nodeType":"YulBlock","src":"32155:76:17","statements":[{"body":{"nodeType":"YulBlock","src":"32209:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"32218:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"32221:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"32211:6:17"},"nodeType":"YulFunctionCall","src":"32211:12:17"},"nodeType":"YulExpressionStatement","src":"32211:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32178:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32200:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"32185:14:17"},"nodeType":"YulFunctionCall","src":"32185:21:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"32175:2:17"},"nodeType":"YulFunctionCall","src":"32175:32:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"32168:6:17"},"nodeType":"YulFunctionCall","src":"32168:40:17"},"nodeType":"YulIf","src":"32165:60:17"}]},"name":"validator_revert_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32148:5:17","type":""}],"src":"32115:116:17"},{"body":{"nodeType":"YulBlock","src":"32297:77:17","statements":[{"nodeType":"YulAssignment","src":"32307:22:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"32322:6:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"32316:5:17"},"nodeType":"YulFunctionCall","src":"32316:13:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"32307:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32362:5:17"}],"functionName":{"name":"validator_revert_t_bool","nodeType":"YulIdentifier","src":"32338:23:17"},"nodeType":"YulFunctionCall","src":"32338:30:17"},"nodeType":"YulExpressionStatement","src":"32338:30:17"}]},"name":"abi_decode_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"32275:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"32283:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"32291:5:17","type":""}],"src":"32237:137:17"},{"body":{"nodeType":"YulBlock","src":"32454:271:17","statements":[{"body":{"nodeType":"YulBlock","src":"32500:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"32502:77:17"},"nodeType":"YulFunctionCall","src":"32502:79:17"},"nodeType":"YulExpressionStatement","src":"32502:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"32475:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"32484:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"32471:3:17"},"nodeType":"YulFunctionCall","src":"32471:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"32496:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"32467:3:17"},"nodeType":"YulFunctionCall","src":"32467:32:17"},"nodeType":"YulIf","src":"32464:119:17"},{"nodeType":"YulBlock","src":"32593:125:17","statements":[{"nodeType":"YulVariableDeclaration","src":"32608:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"32622:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"32612:6:17","type":""}]},{"nodeType":"YulAssignment","src":"32637:71:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32680:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"32691:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32676:3:17"},"nodeType":"YulFunctionCall","src":"32676:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"32700:7:17"}],"functionName":{"name":"abi_decode_t_bool_fromMemory","nodeType":"YulIdentifier","src":"32647:28:17"},"nodeType":"YulFunctionCall","src":"32647:61:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"32637:6:17"}]}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"32424:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"32435:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"32447:6:17","type":""}],"src":"32380:345:17"},{"body":{"nodeType":"YulBlock","src":"32759:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"32776:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"32779:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32769:6:17"},"nodeType":"YulFunctionCall","src":"32769:88:17"},"nodeType":"YulExpressionStatement","src":"32769:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"32873:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"32876:4:17","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32866:6:17"},"nodeType":"YulFunctionCall","src":"32866:15:17"},"nodeType":"YulExpressionStatement","src":"32866:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"32897:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"32900:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"32890:6:17"},"nodeType":"YulFunctionCall","src":"32890:15:17"},"nodeType":"YulExpressionStatement","src":"32890:15:17"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"32731:180:17"},{"body":{"nodeType":"YulBlock","src":"32961:147:17","statements":[{"nodeType":"YulAssignment","src":"32971:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"32994:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"32976:17:17"},"nodeType":"YulFunctionCall","src":"32976:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"32971:1:17"}]},{"nodeType":"YulAssignment","src":"33005:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"33028:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"33010:17:17"},"nodeType":"YulFunctionCall","src":"33010:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"33005:1:17"}]},{"nodeType":"YulAssignment","src":"33039:16:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"33050:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"33053:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33046:3:17"},"nodeType":"YulFunctionCall","src":"33046:9:17"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"33039:3:17"}]},{"body":{"nodeType":"YulBlock","src":"33079:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"33081:16:17"},"nodeType":"YulFunctionCall","src":"33081:18:17"},"nodeType":"YulExpressionStatement","src":"33081:18:17"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"33071:1:17"},{"name":"sum","nodeType":"YulIdentifier","src":"33074:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"33068:2:17"},"nodeType":"YulFunctionCall","src":"33068:10:17"},"nodeType":"YulIf","src":"33065:36:17"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"32948:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"32951:1:17","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"32957:3:17","type":""}],"src":"32917:191:17"},{"body":{"nodeType":"YulBlock","src":"33159:149:17","statements":[{"nodeType":"YulAssignment","src":"33169:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"33192:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"33174:17:17"},"nodeType":"YulFunctionCall","src":"33174:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"33169:1:17"}]},{"nodeType":"YulAssignment","src":"33203:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"33226:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"33208:17:17"},"nodeType":"YulFunctionCall","src":"33208:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"33203:1:17"}]},{"nodeType":"YulAssignment","src":"33237:17:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"33249:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"33252:1:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"33245:3:17"},"nodeType":"YulFunctionCall","src":"33245:9:17"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"33237:4:17"}]},{"body":{"nodeType":"YulBlock","src":"33279:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"33281:16:17"},"nodeType":"YulFunctionCall","src":"33281:18:17"},"nodeType":"YulExpressionStatement","src":"33281:18:17"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"33270:4:17"},{"name":"x","nodeType":"YulIdentifier","src":"33276:1:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"33267:2:17"},"nodeType":"YulFunctionCall","src":"33267:11:17"},"nodeType":"YulIf","src":"33264:37:17"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"33145:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"33148:1:17","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"33154:4:17","type":""}],"src":"33114:194:17"},{"body":{"nodeType":"YulBlock","src":"33412:124:17","statements":[{"nodeType":"YulAssignment","src":"33422:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33434:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"33445:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33430:3:17"},"nodeType":"YulFunctionCall","src":"33430:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"33422:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"33502:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33515:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"33526:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33511:3:17"},"nodeType":"YulFunctionCall","src":"33511:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"33458:43:17"},"nodeType":"YulFunctionCall","src":"33458:71:17"},"nodeType":"YulExpressionStatement","src":"33458:71:17"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"33384:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"33396:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"33407:4:17","type":""}],"src":"33314:222:17"},{"body":{"nodeType":"YulBlock","src":"33648:122:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"33670:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"33678:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33666:3:17"},"nodeType":"YulFunctionCall","src":"33666:14:17"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"33682:34:17","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33659:6:17"},"nodeType":"YulFunctionCall","src":"33659:58:17"},"nodeType":"YulExpressionStatement","src":"33659:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"33738:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"33746:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33734:3:17"},"nodeType":"YulFunctionCall","src":"33734:15:17"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"33751:11:17","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33727:6:17"},"nodeType":"YulFunctionCall","src":"33727:36:17"},"nodeType":"YulExpressionStatement","src":"33727:36:17"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"33640:6:17","type":""}],"src":"33542:228:17"},{"body":{"nodeType":"YulBlock","src":"33922:220:17","statements":[{"nodeType":"YulAssignment","src":"33932:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33998:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"34003:2:17","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"33939:58:17"},"nodeType":"YulFunctionCall","src":"33939:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"33932:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34104:3:17"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"34015:88:17"},"nodeType":"YulFunctionCall","src":"34015:93:17"},"nodeType":"YulExpressionStatement","src":"34015:93:17"},{"nodeType":"YulAssignment","src":"34117:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34128:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"34133:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34124:3:17"},"nodeType":"YulFunctionCall","src":"34124:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"34117:3:17"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"33910:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"33918:3:17","type":""}],"src":"33776:366:17"},{"body":{"nodeType":"YulBlock","src":"34319:248:17","statements":[{"nodeType":"YulAssignment","src":"34329:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34341:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34352:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34337:3:17"},"nodeType":"YulFunctionCall","src":"34337:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34329:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34376:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34387:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34372:3:17"},"nodeType":"YulFunctionCall","src":"34372:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34395:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"34401:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"34391:3:17"},"nodeType":"YulFunctionCall","src":"34391:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34365:6:17"},"nodeType":"YulFunctionCall","src":"34365:47:17"},"nodeType":"YulExpressionStatement","src":"34365:47:17"},{"nodeType":"YulAssignment","src":"34421:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34555:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"34429:124:17"},"nodeType":"YulFunctionCall","src":"34429:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34421:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"34299:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"34314:4:17","type":""}],"src":"34148:419:17"},{"body":{"nodeType":"YulBlock","src":"34679:127:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"34701:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"34709:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34697:3:17"},"nodeType":"YulFunctionCall","src":"34697:14:17"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561","kind":"string","nodeType":"YulLiteral","src":"34713:34:17","type":"","value":"Initializable: contract is alrea"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34690:6:17"},"nodeType":"YulFunctionCall","src":"34690:58:17"},"nodeType":"YulExpressionStatement","src":"34690:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"34769:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"34777:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34765:3:17"},"nodeType":"YulFunctionCall","src":"34765:15:17"},{"hexValue":"647920696e697469616c697a6564","kind":"string","nodeType":"YulLiteral","src":"34782:16:17","type":"","value":"dy initialized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34758:6:17"},"nodeType":"YulFunctionCall","src":"34758:41:17"},"nodeType":"YulExpressionStatement","src":"34758:41:17"}]},"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"34671:6:17","type":""}],"src":"34573:233:17"},{"body":{"nodeType":"YulBlock","src":"34958:220:17","statements":[{"nodeType":"YulAssignment","src":"34968:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35034:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"35039:2:17","type":"","value":"46"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"34975:58:17"},"nodeType":"YulFunctionCall","src":"34975:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"34968:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35140:3:17"}],"functionName":{"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulIdentifier","src":"35051:88:17"},"nodeType":"YulFunctionCall","src":"35051:93:17"},"nodeType":"YulExpressionStatement","src":"35051:93:17"},{"nodeType":"YulAssignment","src":"35153:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"35164:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"35169:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35160:3:17"},"nodeType":"YulFunctionCall","src":"35160:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"35153:3:17"}]}]},"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"34946:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"34954:3:17","type":""}],"src":"34812:366:17"},{"body":{"nodeType":"YulBlock","src":"35355:248:17","statements":[{"nodeType":"YulAssignment","src":"35365:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"35377:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"35388:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35373:3:17"},"nodeType":"YulFunctionCall","src":"35373:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"35365:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"35412:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"35423:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35408:3:17"},"nodeType":"YulFunctionCall","src":"35408:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"35431:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"35437:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"35427:3:17"},"nodeType":"YulFunctionCall","src":"35427:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35401:6:17"},"nodeType":"YulFunctionCall","src":"35401:47:17"},"nodeType":"YulExpressionStatement","src":"35401:47:17"},{"nodeType":"YulAssignment","src":"35457:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"35591:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"35465:124:17"},"nodeType":"YulFunctionCall","src":"35465:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"35457:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"35335:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"35350:4:17","type":""}],"src":"35184:419:17"},{"body":{"nodeType":"YulBlock","src":"35662:32:17","statements":[{"nodeType":"YulAssignment","src":"35672:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"35683:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"35672:7:17"}]}]},"name":"cleanup_t_rational_1_by_1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"35644:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"35654:7:17","type":""}],"src":"35609:85:17"},{"body":{"nodeType":"YulBlock","src":"35743:43:17","statements":[{"nodeType":"YulAssignment","src":"35753:27:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"35768:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"35775:4:17","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"35764:3:17"},"nodeType":"YulFunctionCall","src":"35764:16:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"35753:7:17"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"35725:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"35735:7:17","type":""}],"src":"35700:86:17"},{"body":{"nodeType":"YulBlock","src":"35824:28:17","statements":[{"nodeType":"YulAssignment","src":"35834:12:17","value":{"name":"value","nodeType":"YulIdentifier","src":"35841:5:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"35834:3:17"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"35810:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"35820:3:17","type":""}],"src":"35792:60:17"},{"body":{"nodeType":"YulBlock","src":"35924:88:17","statements":[{"nodeType":"YulAssignment","src":"35934:72:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"35998:5:17"}],"functionName":{"name":"cleanup_t_rational_1_by_1","nodeType":"YulIdentifier","src":"35972:25:17"},"nodeType":"YulFunctionCall","src":"35972:32:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"35963:8:17"},"nodeType":"YulFunctionCall","src":"35963:42:17"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"35947:15:17"},"nodeType":"YulFunctionCall","src":"35947:59:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"35934:9:17"}]}]},"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"35904:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"35914:9:17","type":""}],"src":"35858:154:17"},{"body":{"nodeType":"YulBlock","src":"36089:72:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36106:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"36148:5:17"}],"functionName":{"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulIdentifier","src":"36111:36:17"},"nodeType":"YulFunctionCall","src":"36111:43:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36099:6:17"},"nodeType":"YulFunctionCall","src":"36099:56:17"},"nodeType":"YulExpressionStatement","src":"36099:56:17"}]},"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"36077:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"36084:3:17","type":""}],"src":"36018:143:17"},{"body":{"nodeType":"YulBlock","src":"36271:130:17","statements":[{"nodeType":"YulAssignment","src":"36281:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36293:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"36304:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36289:3:17"},"nodeType":"YulFunctionCall","src":"36289:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"36281:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"36367:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36380:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"36391:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36376:3:17"},"nodeType":"YulFunctionCall","src":"36376:17:17"}],"functionName":{"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"36317:49:17"},"nodeType":"YulFunctionCall","src":"36317:77:17"},"nodeType":"YulExpressionStatement","src":"36317:77:17"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"36243:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"36255:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"36266:4:17","type":""}],"src":"36167:234:17"},{"body":{"nodeType":"YulBlock","src":"36513:67:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"36535:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"36543:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36531:3:17"},"nodeType":"YulFunctionCall","src":"36531:14:17"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"36547:25:17","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36524:6:17"},"nodeType":"YulFunctionCall","src":"36524:49:17"},"nodeType":"YulExpressionStatement","src":"36524:49:17"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"36505:6:17","type":""}],"src":"36407:173:17"},{"body":{"nodeType":"YulBlock","src":"36732:220:17","statements":[{"nodeType":"YulAssignment","src":"36742:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36808:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"36813:2:17","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"36749:58:17"},"nodeType":"YulFunctionCall","src":"36749:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"36742:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36914:3:17"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"36825:88:17"},"nodeType":"YulFunctionCall","src":"36825:93:17"},"nodeType":"YulExpressionStatement","src":"36825:93:17"},{"nodeType":"YulAssignment","src":"36927:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36938:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"36943:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36934:3:17"},"nodeType":"YulFunctionCall","src":"36934:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"36927:3:17"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"36720:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"36728:3:17","type":""}],"src":"36586:366:17"},{"body":{"nodeType":"YulBlock","src":"37129:248:17","statements":[{"nodeType":"YulAssignment","src":"37139:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37151:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37162:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37147:3:17"},"nodeType":"YulFunctionCall","src":"37147:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37139:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37186:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37197:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37182:3:17"},"nodeType":"YulFunctionCall","src":"37182:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37205:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"37211:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"37201:3:17"},"nodeType":"YulFunctionCall","src":"37201:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37175:6:17"},"nodeType":"YulFunctionCall","src":"37175:47:17"},"nodeType":"YulExpressionStatement","src":"37175:47:17"},{"nodeType":"YulAssignment","src":"37231:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37365:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37239:124:17"},"nodeType":"YulFunctionCall","src":"37239:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37231:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"37109:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"37124:4:17","type":""}],"src":"36958:419:17"},{"body":{"nodeType":"YulBlock","src":"37489:62:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"37511:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"37519:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37507:3:17"},"nodeType":"YulFunctionCall","src":"37507:14:17"},{"hexValue":"496e76616c69644d65737361676548617368","kind":"string","nodeType":"YulLiteral","src":"37523:20:17","type":"","value":"InvalidMessageHash"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37500:6:17"},"nodeType":"YulFunctionCall","src":"37500:44:17"},"nodeType":"YulExpressionStatement","src":"37500:44:17"}]},"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"37481:6:17","type":""}],"src":"37383:168:17"},{"body":{"nodeType":"YulBlock","src":"37703:220:17","statements":[{"nodeType":"YulAssignment","src":"37713:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37779:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"37784:2:17","type":"","value":"18"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37720:58:17"},"nodeType":"YulFunctionCall","src":"37720:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"37713:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37885:3:17"}],"functionName":{"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulIdentifier","src":"37796:88:17"},"nodeType":"YulFunctionCall","src":"37796:93:17"},"nodeType":"YulExpressionStatement","src":"37796:93:17"},{"nodeType":"YulAssignment","src":"37898:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37909:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"37914:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37905:3:17"},"nodeType":"YulFunctionCall","src":"37905:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"37898:3:17"}]}]},"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"37691:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"37699:3:17","type":""}],"src":"37557:366:17"},{"body":{"nodeType":"YulBlock","src":"38100:248:17","statements":[{"nodeType":"YulAssignment","src":"38110:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38122:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38133:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38118:3:17"},"nodeType":"YulFunctionCall","src":"38118:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38110:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38157:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38168:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38153:3:17"},"nodeType":"YulFunctionCall","src":"38153:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"38176:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"38182:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"38172:3:17"},"nodeType":"YulFunctionCall","src":"38172:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"38146:6:17"},"nodeType":"YulFunctionCall","src":"38146:47:17"},"nodeType":"YulExpressionStatement","src":"38146:47:17"},{"nodeType":"YulAssignment","src":"38202:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"38336:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"38210:124:17"},"nodeType":"YulFunctionCall","src":"38210:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38202:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"38080:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"38095:4:17","type":""}],"src":"37929:419:17"},{"body":{"nodeType":"YulBlock","src":"38508:288:17","statements":[{"nodeType":"YulAssignment","src":"38518:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38530:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38541:2:17","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38526:3:17"},"nodeType":"YulFunctionCall","src":"38526:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38518:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"38598:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38611:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38622:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38607:3:17"},"nodeType":"YulFunctionCall","src":"38607:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"38554:43:17"},"nodeType":"YulFunctionCall","src":"38554:71:17"},"nodeType":"YulExpressionStatement","src":"38554:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"38679:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38692:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38703:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38688:3:17"},"nodeType":"YulFunctionCall","src":"38688:18:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"38635:43:17"},"nodeType":"YulFunctionCall","src":"38635:72:17"},"nodeType":"YulExpressionStatement","src":"38635:72:17"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"38761:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38774:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38785:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38770:3:17"},"nodeType":"YulFunctionCall","src":"38770:18:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"38717:43:17"},"nodeType":"YulFunctionCall","src":"38717:72:17"},"nodeType":"YulExpressionStatement","src":"38717:72:17"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"38464:9:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"38476:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"38484:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"38492:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"38503:4:17","type":""}],"src":"38354:442:17"},{"body":{"nodeType":"YulBlock","src":"38845:190:17","statements":[{"nodeType":"YulAssignment","src":"38855:33:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"38882:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"38864:17:17"},"nodeType":"YulFunctionCall","src":"38864:24:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"38855:5:17"}]},{"body":{"nodeType":"YulBlock","src":"38978:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"38980:16:17"},"nodeType":"YulFunctionCall","src":"38980:18:17"},"nodeType":"YulExpressionStatement","src":"38980:18:17"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"38903:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"38910:66:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"38900:2:17"},"nodeType":"YulFunctionCall","src":"38900:77:17"},"nodeType":"YulIf","src":"38897:103:17"},{"nodeType":"YulAssignment","src":"39009:20:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"39020:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"39027:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39016:3:17"},"nodeType":"YulFunctionCall","src":"39016:13:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"39009:3:17"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"38831:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"38841:3:17","type":""}],"src":"38802:233:17"},{"body":{"nodeType":"YulBlock","src":"39089:362:17","statements":[{"nodeType":"YulAssignment","src":"39099:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39122:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"39104:17:17"},"nodeType":"YulFunctionCall","src":"39104:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"39099:1:17"}]},{"nodeType":"YulAssignment","src":"39133:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"39156:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"39138:17:17"},"nodeType":"YulFunctionCall","src":"39138:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"39133:1:17"}]},{"nodeType":"YulVariableDeclaration","src":"39167:28:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39190:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"39193:1:17"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"39186:3:17"},"nodeType":"YulFunctionCall","src":"39186:9:17"},"variables":[{"name":"product_raw","nodeType":"YulTypedName","src":"39171:11:17","type":""}]},{"nodeType":"YulAssignment","src":"39204:41:17","value":{"arguments":[{"name":"product_raw","nodeType":"YulIdentifier","src":"39233:11:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"39215:17:17"},"nodeType":"YulFunctionCall","src":"39215:30:17"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"39204:7:17"}]},{"body":{"nodeType":"YulBlock","src":"39422:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"39424:16:17"},"nodeType":"YulFunctionCall","src":"39424:18:17"},"nodeType":"YulExpressionStatement","src":"39424:18:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39355:1:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"39348:6:17"},"nodeType":"YulFunctionCall","src":"39348:9:17"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"39378:1:17"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"39385:7:17"},{"name":"x","nodeType":"YulIdentifier","src":"39394:1:17"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"39381:3:17"},"nodeType":"YulFunctionCall","src":"39381:15:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"39375:2:17"},"nodeType":"YulFunctionCall","src":"39375:22:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"39328:2:17"},"nodeType":"YulFunctionCall","src":"39328:83:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"39308:6:17"},"nodeType":"YulFunctionCall","src":"39308:113:17"},"nodeType":"YulIf","src":"39305:139:17"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"39072:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"39075:1:17","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"39081:7:17","type":""}],"src":"39041:410:17"},{"body":{"nodeType":"YulBlock","src":"39485:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"39502:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"39505:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39495:6:17"},"nodeType":"YulFunctionCall","src":"39495:88:17"},"nodeType":"YulExpressionStatement","src":"39495:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"39599:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"39602:4:17","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39592:6:17"},"nodeType":"YulFunctionCall","src":"39592:15:17"},"nodeType":"YulExpressionStatement","src":"39592:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"39623:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"39626:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"39616:6:17"},"nodeType":"YulFunctionCall","src":"39616:15:17"},"nodeType":"YulExpressionStatement","src":"39616:15:17"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"39457:180:17"},{"body":{"nodeType":"YulBlock","src":"39685:143:17","statements":[{"nodeType":"YulAssignment","src":"39695:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39718:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"39700:17:17"},"nodeType":"YulFunctionCall","src":"39700:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"39695:1:17"}]},{"nodeType":"YulAssignment","src":"39729:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"39752:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"39734:17:17"},"nodeType":"YulFunctionCall","src":"39734:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"39729:1:17"}]},{"body":{"nodeType":"YulBlock","src":"39776:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"39778:16:17"},"nodeType":"YulFunctionCall","src":"39778:18:17"},"nodeType":"YulExpressionStatement","src":"39778:18:17"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"39773:1:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"39766:6:17"},"nodeType":"YulFunctionCall","src":"39766:9:17"},"nodeType":"YulIf","src":"39763:35:17"},{"nodeType":"YulAssignment","src":"39808:14:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"39817:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"39820:1:17"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"39813:3:17"},"nodeType":"YulFunctionCall","src":"39813:9:17"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"39808:1:17"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"39674:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"39677:1:17","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"39683:1:17","type":""}],"src":"39643:185:17"},{"body":{"nodeType":"YulBlock","src":"39893:81:17","statements":[{"nodeType":"YulAssignment","src":"39903:65:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"39960:5:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"39943:16:17"},"nodeType":"YulFunctionCall","src":"39943:23:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"39934:8:17"},"nodeType":"YulFunctionCall","src":"39934:33:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"39916:17:17"},"nodeType":"YulFunctionCall","src":"39916:52:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"39903:9:17"}]}]},"name":"convert_t_uint96_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"39873:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"39883:9:17","type":""}],"src":"39834:140:17"},{"body":{"nodeType":"YulBlock","src":"40044:65:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40061:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"40096:5:17"}],"functionName":{"name":"convert_t_uint96_to_t_uint256","nodeType":"YulIdentifier","src":"40066:29:17"},"nodeType":"YulFunctionCall","src":"40066:36:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40054:6:17"},"nodeType":"YulFunctionCall","src":"40054:49:17"},"nodeType":"YulExpressionStatement","src":"40054:49:17"}]},"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"40032:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"40039:3:17","type":""}],"src":"39980:129:17"},{"body":{"nodeType":"YulBlock","src":"40179:82:17","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"40202:3:17"},{"name":"src","nodeType":"YulIdentifier","src":"40207:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"40212:6:17"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"40189:12:17"},"nodeType":"YulFunctionCall","src":"40189:30:17"},"nodeType":"YulExpressionStatement","src":"40189:30:17"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"40239:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"40244:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40235:3:17"},"nodeType":"YulFunctionCall","src":"40235:16:17"},{"kind":"number","nodeType":"YulLiteral","src":"40253:1:17","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40228:6:17"},"nodeType":"YulFunctionCall","src":"40228:27:17"},"nodeType":"YulExpressionStatement","src":"40228:27:17"}]},"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"40161:3:17","type":""},{"name":"dst","nodeType":"YulTypedName","src":"40166:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"40171:6:17","type":""}],"src":"40115:146:17"},{"body":{"nodeType":"YulBlock","src":"40393:215:17","statements":[{"nodeType":"YulAssignment","src":"40403:78:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40469:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"40474:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40410:58:17"},"nodeType":"YulFunctionCall","src":"40410:71:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"40403:3:17"}]},{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"40528:5:17"},{"name":"pos","nodeType":"YulIdentifier","src":"40535:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"40540:6:17"}],"functionName":{"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"40491:36:17"},"nodeType":"YulFunctionCall","src":"40491:56:17"},"nodeType":"YulExpressionStatement","src":"40491:56:17"},{"nodeType":"YulAssignment","src":"40556:46:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40567:3:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"40594:6:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"40572:21:17"},"nodeType":"YulFunctionCall","src":"40572:29:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40563:3:17"},"nodeType":"YulFunctionCall","src":"40563:39:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"40556:3:17"}]}]},"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"40366:5:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"40373:6:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"40381:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"40389:3:17","type":""}],"src":"40291:317:17"},{"body":{"nodeType":"YulBlock","src":"40853:534:17","statements":[{"nodeType":"YulAssignment","src":"40863:27:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40875:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"40886:3:17","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40871:3:17"},"nodeType":"YulFunctionCall","src":"40871:19:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40863:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"40944:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40957:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"40968:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40953:3:17"},"nodeType":"YulFunctionCall","src":"40953:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"40900:43:17"},"nodeType":"YulFunctionCall","src":"40900:71:17"},"nodeType":"YulExpressionStatement","src":"40900:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"41025:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41038:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"41049:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41034:3:17"},"nodeType":"YulFunctionCall","src":"41034:18:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"40981:43:17"},"nodeType":"YulFunctionCall","src":"40981:72:17"},"nodeType":"YulExpressionStatement","src":"40981:72:17"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"41106:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41119:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"41130:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41115:3:17"},"nodeType":"YulFunctionCall","src":"41115:18:17"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"41063:42:17"},"nodeType":"YulFunctionCall","src":"41063:71:17"},"nodeType":"YulExpressionStatement","src":"41063:71:17"},{"expression":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"41188:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41201:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"41212:2:17","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41197:3:17"},"nodeType":"YulFunctionCall","src":"41197:18:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"41144:43:17"},"nodeType":"YulFunctionCall","src":"41144:72:17"},"nodeType":"YulExpressionStatement","src":"41144:72:17"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41237:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"41248:3:17","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41233:3:17"},"nodeType":"YulFunctionCall","src":"41233:19:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"41258:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"41264:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"41254:3:17"},"nodeType":"YulFunctionCall","src":"41254:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41226:6:17"},"nodeType":"YulFunctionCall","src":"41226:49:17"},"nodeType":"YulExpressionStatement","src":"41226:49:17"},{"nodeType":"YulAssignment","src":"41284:96:17","value":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"41358:6:17"},{"name":"value5","nodeType":"YulIdentifier","src":"41366:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"41375:4:17"}],"functionName":{"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"41292:65:17"},"nodeType":"YulFunctionCall","src":"41292:88:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"41284:4:17"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_bytes32_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_bytes32_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"40785:9:17","type":""},{"name":"value5","nodeType":"YulTypedName","src":"40797:6:17","type":""},{"name":"value4","nodeType":"YulTypedName","src":"40805:6:17","type":""},{"name":"value3","nodeType":"YulTypedName","src":"40813:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"40821:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"40829:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"40837:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"40848:4:17","type":""}],"src":"40614:773:17"},{"body":{"nodeType":"YulBlock","src":"41437:172:17","statements":[{"nodeType":"YulAssignment","src":"41447:24:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"41469:1:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"41452:16:17"},"nodeType":"YulFunctionCall","src":"41452:19:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"41447:1:17"}]},{"nodeType":"YulAssignment","src":"41480:24:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"41502:1:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"41485:16:17"},"nodeType":"YulFunctionCall","src":"41485:19:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"41480:1:17"}]},{"nodeType":"YulAssignment","src":"41513:17:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"41525:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"41528:1:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"41521:3:17"},"nodeType":"YulFunctionCall","src":"41521:9:17"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"41513:4:17"}]},{"body":{"nodeType":"YulBlock","src":"41580:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"41582:16:17"},"nodeType":"YulFunctionCall","src":"41582:18:17"},"nodeType":"YulExpressionStatement","src":"41582:18:17"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"41546:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"41552:26:17","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"41543:2:17"},"nodeType":"YulFunctionCall","src":"41543:36:17"},"nodeType":"YulIf","src":"41540:62:17"}]},"name":"checked_sub_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"41423:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"41426:1:17","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"41432:4:17","type":""}],"src":"41393:216:17"},{"body":{"nodeType":"YulBlock","src":"41673:80:17","statements":[{"nodeType":"YulAssignment","src":"41683:64:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"41739:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"41722:16:17"},"nodeType":"YulFunctionCall","src":"41722:23:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"41713:8:17"},"nodeType":"YulFunctionCall","src":"41713:33:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"41696:16:17"},"nodeType":"YulFunctionCall","src":"41696:51:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"41683:9:17"}]}]},"name":"convert_t_uint64_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"41653:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"41663:9:17","type":""}],"src":"41615:138:17"},{"body":{"nodeType":"YulBlock","src":"41822:64:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41839:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"41873:5:17"}],"functionName":{"name":"convert_t_uint64_to_t_uint96","nodeType":"YulIdentifier","src":"41844:28:17"},"nodeType":"YulFunctionCall","src":"41844:35:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41832:6:17"},"nodeType":"YulFunctionCall","src":"41832:48:17"},"nodeType":"YulExpressionStatement","src":"41832:48:17"}]},"name":"abi_encode_t_uint64_to_t_uint96_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"41810:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"41817:3:17","type":""}],"src":"41759:127:17"},{"body":{"nodeType":"YulBlock","src":"42016:204:17","statements":[{"nodeType":"YulAssignment","src":"42026:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42038:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"42049:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42034:3:17"},"nodeType":"YulFunctionCall","src":"42034:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42026:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"42106:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42119:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"42130:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42115:3:17"},"nodeType":"YulFunctionCall","src":"42115:17:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"42062:43:17"},"nodeType":"YulFunctionCall","src":"42062:71:17"},"nodeType":"YulExpressionStatement","src":"42062:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"42185:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42198:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"42209:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42194:3:17"},"nodeType":"YulFunctionCall","src":"42194:18:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint96_fromStack","nodeType":"YulIdentifier","src":"42143:41:17"},"nodeType":"YulFunctionCall","src":"42143:70:17"},"nodeType":"YulExpressionStatement","src":"42143:70:17"}]},"name":"abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"41980:9:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"41992:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"42000:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"42011:4:17","type":""}],"src":"41892:328:17"},{"body":{"nodeType":"YulBlock","src":"42332:76:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"42354:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"42362:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42350:3:17"},"nodeType":"YulFunctionCall","src":"42350:14:17"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"42366:34:17","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42343:6:17"},"nodeType":"YulFunctionCall","src":"42343:58:17"},"nodeType":"YulExpressionStatement","src":"42343:58:17"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"42324:6:17","type":""}],"src":"42226:182:17"},{"body":{"nodeType":"YulBlock","src":"42560:220:17","statements":[{"nodeType":"YulAssignment","src":"42570:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42636:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"42641:2:17","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42577:58:17"},"nodeType":"YulFunctionCall","src":"42577:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"42570:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42742:3:17"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"42653:88:17"},"nodeType":"YulFunctionCall","src":"42653:93:17"},"nodeType":"YulExpressionStatement","src":"42653:93:17"},{"nodeType":"YulAssignment","src":"42755:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42766:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"42771:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42762:3:17"},"nodeType":"YulFunctionCall","src":"42762:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"42755:3:17"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"42548:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"42556:3:17","type":""}],"src":"42414:366:17"},{"body":{"nodeType":"YulBlock","src":"42957:248:17","statements":[{"nodeType":"YulAssignment","src":"42967:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42979:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"42990:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42975:3:17"},"nodeType":"YulFunctionCall","src":"42975:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42967:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43014:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"43025:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43010:3:17"},"nodeType":"YulFunctionCall","src":"43010:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43033:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"43039:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"43029:3:17"},"nodeType":"YulFunctionCall","src":"43029:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43003:6:17"},"nodeType":"YulFunctionCall","src":"43003:47:17"},"nodeType":"YulExpressionStatement","src":"43003:47:17"},{"nodeType":"YulAssignment","src":"43059:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43193:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43067:124:17"},"nodeType":"YulFunctionCall","src":"43067:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43059:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"42937:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"42952:4:17","type":""}],"src":"42786:419:17"},{"body":{"nodeType":"YulBlock","src":"43317:124:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"43339:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"43347:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43335:3:17"},"nodeType":"YulFunctionCall","src":"43335:14:17"},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069","kind":"string","nodeType":"YulLiteral","src":"43351:34:17","type":"","value":"Initializable: contract is not i"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43328:6:17"},"nodeType":"YulFunctionCall","src":"43328:58:17"},"nodeType":"YulExpressionStatement","src":"43328:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"43407:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"43415:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43403:3:17"},"nodeType":"YulFunctionCall","src":"43403:15:17"},{"hexValue":"6e697469616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"43420:13:17","type":"","value":"nitializing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43396:6:17"},"nodeType":"YulFunctionCall","src":"43396:38:17"},"nodeType":"YulExpressionStatement","src":"43396:38:17"}]},"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"43309:6:17","type":""}],"src":"43211:230:17"},{"body":{"nodeType":"YulBlock","src":"43593:220:17","statements":[{"nodeType":"YulAssignment","src":"43603:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43669:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"43674:2:17","type":"","value":"43"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43610:58:17"},"nodeType":"YulFunctionCall","src":"43610:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"43603:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43775:3:17"}],"functionName":{"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulIdentifier","src":"43686:88:17"},"nodeType":"YulFunctionCall","src":"43686:93:17"},"nodeType":"YulExpressionStatement","src":"43686:93:17"},{"nodeType":"YulAssignment","src":"43788:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43799:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"43804:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43795:3:17"},"nodeType":"YulFunctionCall","src":"43795:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"43788:3:17"}]}]},"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"43581:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"43589:3:17","type":""}],"src":"43447:366:17"},{"body":{"nodeType":"YulBlock","src":"43990:248:17","statements":[{"nodeType":"YulAssignment","src":"44000:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44012:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"44023:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44008:3:17"},"nodeType":"YulFunctionCall","src":"44008:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44000:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44047:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"44058:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44043:3:17"},"nodeType":"YulFunctionCall","src":"44043:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44066:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"44072:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"44062:3:17"},"nodeType":"YulFunctionCall","src":"44062:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44036:6:17"},"nodeType":"YulFunctionCall","src":"44036:47:17"},"nodeType":"YulExpressionStatement","src":"44036:47:17"},{"nodeType":"YulAssignment","src":"44092:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44226:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44100:124:17"},"nodeType":"YulFunctionCall","src":"44100:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44092:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"43970:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"43985:4:17","type":""}],"src":"43819:419:17"},{"body":{"nodeType":"YulBlock","src":"44350:60:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"44372:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"44380:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44368:3:17"},"nodeType":"YulFunctionCall","src":"44368:14:17"},{"hexValue":"5061757361626c653a20706175736564","kind":"string","nodeType":"YulLiteral","src":"44384:18:17","type":"","value":"Pausable: paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44361:6:17"},"nodeType":"YulFunctionCall","src":"44361:42:17"},"nodeType":"YulExpressionStatement","src":"44361:42:17"}]},"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"44342:6:17","type":""}],"src":"44244:166:17"},{"body":{"nodeType":"YulBlock","src":"44562:220:17","statements":[{"nodeType":"YulAssignment","src":"44572:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44638:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"44643:2:17","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44579:58:17"},"nodeType":"YulFunctionCall","src":"44579:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"44572:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44744:3:17"}],"functionName":{"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulIdentifier","src":"44655:88:17"},"nodeType":"YulFunctionCall","src":"44655:93:17"},"nodeType":"YulExpressionStatement","src":"44655:93:17"},{"nodeType":"YulAssignment","src":"44757:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44768:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"44773:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44764:3:17"},"nodeType":"YulFunctionCall","src":"44764:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"44757:3:17"}]}]},"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"44550:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"44558:3:17","type":""}],"src":"44416:366:17"},{"body":{"nodeType":"YulBlock","src":"44959:248:17","statements":[{"nodeType":"YulAssignment","src":"44969:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44981:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"44992:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44977:3:17"},"nodeType":"YulFunctionCall","src":"44977:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44969:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45016:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"45027:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45012:3:17"},"nodeType":"YulFunctionCall","src":"45012:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45035:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"45041:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"45031:3:17"},"nodeType":"YulFunctionCall","src":"45031:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45005:6:17"},"nodeType":"YulFunctionCall","src":"45005:47:17"},"nodeType":"YulExpressionStatement","src":"45005:47:17"},{"nodeType":"YulAssignment","src":"45061:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45195:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45069:124:17"},"nodeType":"YulFunctionCall","src":"45069:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45061:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"44939:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"44954:4:17","type":""}],"src":"44788:419:17"},{"body":{"nodeType":"YulBlock","src":"45319:61:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"45341:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"45349:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45337:3:17"},"nodeType":"YulFunctionCall","src":"45337:14:17"},{"hexValue":"546f6b656e4e6f74537570706f72746564","kind":"string","nodeType":"YulLiteral","src":"45353:19:17","type":"","value":"TokenNotSupported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45330:6:17"},"nodeType":"YulFunctionCall","src":"45330:43:17"},"nodeType":"YulExpressionStatement","src":"45330:43:17"}]},"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"45311:6:17","type":""}],"src":"45213:167:17"},{"body":{"nodeType":"YulBlock","src":"45532:220:17","statements":[{"nodeType":"YulAssignment","src":"45542:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45608:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"45613:2:17","type":"","value":"17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45549:58:17"},"nodeType":"YulFunctionCall","src":"45549:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"45542:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45714:3:17"}],"functionName":{"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulIdentifier","src":"45625:88:17"},"nodeType":"YulFunctionCall","src":"45625:93:17"},"nodeType":"YulExpressionStatement","src":"45625:93:17"},{"nodeType":"YulAssignment","src":"45727:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45738:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"45743:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45734:3:17"},"nodeType":"YulFunctionCall","src":"45734:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"45727:3:17"}]}]},"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"45520:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"45528:3:17","type":""}],"src":"45386:366:17"},{"body":{"nodeType":"YulBlock","src":"45929:248:17","statements":[{"nodeType":"YulAssignment","src":"45939:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45951:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"45962:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45947:3:17"},"nodeType":"YulFunctionCall","src":"45947:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45939:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45986:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"45997:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45982:3:17"},"nodeType":"YulFunctionCall","src":"45982:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46005:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"46011:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"46001:3:17"},"nodeType":"YulFunctionCall","src":"46001:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45975:6:17"},"nodeType":"YulFunctionCall","src":"45975:47:17"},"nodeType":"YulExpressionStatement","src":"45975:47:17"},{"nodeType":"YulAssignment","src":"46031:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46165:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46039:124:17"},"nodeType":"YulFunctionCall","src":"46039:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46031:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"45909:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"45924:4:17","type":""}],"src":"45758:419:17"},{"body":{"nodeType":"YulBlock","src":"46289:56:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"46311:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"46319:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46307:3:17"},"nodeType":"YulFunctionCall","src":"46307:14:17"},{"hexValue":"416d6f756e7449735a65726f","kind":"string","nodeType":"YulLiteral","src":"46323:14:17","type":"","value":"AmountIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46300:6:17"},"nodeType":"YulFunctionCall","src":"46300:38:17"},"nodeType":"YulExpressionStatement","src":"46300:38:17"}]},"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"46281:6:17","type":""}],"src":"46183:162:17"},{"body":{"nodeType":"YulBlock","src":"46497:220:17","statements":[{"nodeType":"YulAssignment","src":"46507:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46573:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"46578:2:17","type":"","value":"12"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46514:58:17"},"nodeType":"YulFunctionCall","src":"46514:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"46507:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46679:3:17"}],"functionName":{"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulIdentifier","src":"46590:88:17"},"nodeType":"YulFunctionCall","src":"46590:93:17"},"nodeType":"YulExpressionStatement","src":"46590:93:17"},{"nodeType":"YulAssignment","src":"46692:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46703:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"46708:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46699:3:17"},"nodeType":"YulFunctionCall","src":"46699:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"46692:3:17"}]}]},"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"46485:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"46493:3:17","type":""}],"src":"46351:366:17"},{"body":{"nodeType":"YulBlock","src":"46894:248:17","statements":[{"nodeType":"YulAssignment","src":"46904:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46916:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"46927:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46912:3:17"},"nodeType":"YulFunctionCall","src":"46912:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46904:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46951:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"46962:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46947:3:17"},"nodeType":"YulFunctionCall","src":"46947:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46970:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"46976:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"46966:3:17"},"nodeType":"YulFunctionCall","src":"46966:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46940:6:17"},"nodeType":"YulFunctionCall","src":"46940:47:17"},"nodeType":"YulExpressionStatement","src":"46940:47:17"},{"nodeType":"YulAssignment","src":"46996:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"47130:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"47004:124:17"},"nodeType":"YulFunctionCall","src":"47004:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46996:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"46874:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"46889:4:17","type":""}],"src":"46723:419:17"},{"body":{"nodeType":"YulBlock","src":"47254:60:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"47276:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"47284:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47272:3:17"},"nodeType":"YulFunctionCall","src":"47272:14:17"},{"hexValue":"5468726f775a65726f41646472657373","kind":"string","nodeType":"YulLiteral","src":"47288:18:17","type":"","value":"ThrowZeroAddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"47265:6:17"},"nodeType":"YulFunctionCall","src":"47265:42:17"},"nodeType":"YulExpressionStatement","src":"47265:42:17"}]},"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"47246:6:17","type":""}],"src":"47148:166:17"},{"body":{"nodeType":"YulBlock","src":"47466:220:17","statements":[{"nodeType":"YulAssignment","src":"47476:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"47542:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"47547:2:17","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"47483:58:17"},"nodeType":"YulFunctionCall","src":"47483:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"47476:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"47648:3:17"}],"functionName":{"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulIdentifier","src":"47559:88:17"},"nodeType":"YulFunctionCall","src":"47559:93:17"},"nodeType":"YulExpressionStatement","src":"47559:93:17"},{"nodeType":"YulAssignment","src":"47661:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"47672:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"47677:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47668:3:17"},"nodeType":"YulFunctionCall","src":"47668:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"47661:3:17"}]}]},"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"47454:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"47462:3:17","type":""}],"src":"47320:366:17"},{"body":{"nodeType":"YulBlock","src":"47863:248:17","statements":[{"nodeType":"YulAssignment","src":"47873:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47885:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"47896:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47881:3:17"},"nodeType":"YulFunctionCall","src":"47881:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47873:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"47920:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"47931:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"47916:3:17"},"nodeType":"YulFunctionCall","src":"47916:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"47939:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"47945:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"47935:3:17"},"nodeType":"YulFunctionCall","src":"47935:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"47909:6:17"},"nodeType":"YulFunctionCall","src":"47909:47:17"},"nodeType":"YulExpressionStatement","src":"47909:47:17"},{"nodeType":"YulAssignment","src":"47965:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"48099:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"47973:124:17"},"nodeType":"YulFunctionCall","src":"47973:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47965:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"47843:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"47858:4:17","type":""}],"src":"47692:419:17"},{"body":{"nodeType":"YulBlock","src":"48223:69:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"48245:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"48253:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48241:3:17"},"nodeType":"YulFunctionCall","src":"48241:14:17"},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","kind":"string","nodeType":"YulLiteral","src":"48257:27:17","type":"","value":"InvalidSenderFeeRecipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"48234:6:17"},"nodeType":"YulFunctionCall","src":"48234:51:17"},"nodeType":"YulExpressionStatement","src":"48234:51:17"}]},"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"48215:6:17","type":""}],"src":"48117:175:17"},{"body":{"nodeType":"YulBlock","src":"48444:220:17","statements":[{"nodeType":"YulAssignment","src":"48454:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48520:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"48525:2:17","type":"","value":"25"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"48461:58:17"},"nodeType":"YulFunctionCall","src":"48461:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"48454:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48626:3:17"}],"functionName":{"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulIdentifier","src":"48537:88:17"},"nodeType":"YulFunctionCall","src":"48537:93:17"},"nodeType":"YulExpressionStatement","src":"48537:93:17"},{"nodeType":"YulAssignment","src":"48639:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"48650:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"48655:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48646:3:17"},"nodeType":"YulFunctionCall","src":"48646:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"48639:3:17"}]}]},"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"48432:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"48440:3:17","type":""}],"src":"48298:366:17"},{"body":{"nodeType":"YulBlock","src":"48841:248:17","statements":[{"nodeType":"YulAssignment","src":"48851:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48863:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"48874:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48859:3:17"},"nodeType":"YulFunctionCall","src":"48859:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48851:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"48898:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"48909:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"48894:3:17"},"nodeType":"YulFunctionCall","src":"48894:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"48917:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"48923:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"48913:3:17"},"nodeType":"YulFunctionCall","src":"48913:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"48887:6:17"},"nodeType":"YulFunctionCall","src":"48887:47:17"},"nodeType":"YulExpressionStatement","src":"48887:47:17"},{"nodeType":"YulAssignment","src":"48943:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"49077:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"48951:124:17"},"nodeType":"YulFunctionCall","src":"48951:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"48943:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"48821:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"48836:4:17","type":""}],"src":"48670:419:17"},{"body":{"nodeType":"YulBlock","src":"49201:64:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"49223:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"49231:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49219:3:17"},"nodeType":"YulFunctionCall","src":"49219:14:17"},{"hexValue":"5061757361626c653a206e6f7420706175736564","kind":"string","nodeType":"YulLiteral","src":"49235:22:17","type":"","value":"Pausable: not paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"49212:6:17"},"nodeType":"YulFunctionCall","src":"49212:46:17"},"nodeType":"YulExpressionStatement","src":"49212:46:17"}]},"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"49193:6:17","type":""}],"src":"49095:170:17"},{"body":{"nodeType":"YulBlock","src":"49417:220:17","statements":[{"nodeType":"YulAssignment","src":"49427:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"49493:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"49498:2:17","type":"","value":"20"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"49434:58:17"},"nodeType":"YulFunctionCall","src":"49434:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"49427:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"49599:3:17"}],"functionName":{"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulIdentifier","src":"49510:88:17"},"nodeType":"YulFunctionCall","src":"49510:93:17"},"nodeType":"YulExpressionStatement","src":"49510:93:17"},{"nodeType":"YulAssignment","src":"49612:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"49623:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"49628:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49619:3:17"},"nodeType":"YulFunctionCall","src":"49619:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"49612:3:17"}]}]},"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"49405:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"49413:3:17","type":""}],"src":"49271:366:17"},{"body":{"nodeType":"YulBlock","src":"49814:248:17","statements":[{"nodeType":"YulAssignment","src":"49824:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"49836:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"49847:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49832:3:17"},"nodeType":"YulFunctionCall","src":"49832:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"49824:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"49871:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"49882:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"49867:3:17"},"nodeType":"YulFunctionCall","src":"49867:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"49890:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"49896:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"49886:3:17"},"nodeType":"YulFunctionCall","src":"49886:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"49860:6:17"},"nodeType":"YulFunctionCall","src":"49860:47:17"},"nodeType":"YulExpressionStatement","src":"49860:47:17"},{"nodeType":"YulAssignment","src":"49916:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"50050:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"49924:124:17"},"nodeType":"YulFunctionCall","src":"49924:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"49916:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"49794:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"49809:4:17","type":""}],"src":"49643:419:17"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n // struct SharedStructs.Institution -> struct SharedStructs.Institution\n function abi_encode_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr(value, pos) {\n let tail := add(pos, 0x40)\n\n {\n // code\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x00))\n }\n\n {\n // name\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x20))\n }\n\n }\n\n function abi_encodeUpdatedPos_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr(value0, pos) -> updatedPos {\n abi_encode_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr(value0, pos)\n updatedPos := add(pos, 0x40)\n }\n\n function array_nextElement_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // struct SharedStructs.Institution[] -> struct SharedStructs.Institution[]\n function abi_encode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_struct$_Institution_$3449_memory_ptr_to_t_struct$_Institution_$3449_memory_ptr(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f() {\n revert(0, 0)\n }\n\n function revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421() {\n revert(0, 0)\n }\n\n // struct SharedStructs.Institution\n function abi_decode_t_struct$_Institution_$3449_memory_ptr(headStart, end) -> value {\n if slt(sub(end, headStart), 0x40) { revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f() }\n value := allocate_memory(0x40)\n\n {\n // code\n\n let offset := 0\n\n mstore(add(value, 0x00), abi_decode_t_bytes32(add(headStart, offset), end))\n\n }\n\n {\n // name\n\n let offset := 32\n\n mstore(add(value, 0x20), abi_decode_t_bytes32(add(headStart, offset), end))\n\n }\n\n }\n\n // struct SharedStructs.Institution[]\n function abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let srcEnd := add(offset, mul(length, 0x40))\n if gt(srcEnd, end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let src := offset } lt(src, srcEnd) { src := add(src, 0x40) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_struct$_Institution_$3449_memory_ptr(elementPos, end))\n dst := add(dst, 0x20)\n }\n }\n\n // struct SharedStructs.Institution[]\n function abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function validator_revert_t_uint64(value) {\n if iszero(eq(value, cleanup_t_uint64(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint64(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint64(value)\n }\n\n function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_bytes32(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_bool_to_t_bool(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function cleanup_t_uint96(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffff)\n }\n\n function abi_encode_t_uint96_to_t_uint96(value, pos) {\n mstore(pos, cleanup_t_uint96(value))\n }\n\n // struct IGateway.Order -> struct IGateway.Order\n function abi_encode_t_struct$_Order_$3196_memory_ptr_to_t_struct$_Order_$3196_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x0140)\n\n {\n // sender\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x00))\n }\n\n {\n // token\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderFeeRecipient\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x40))\n }\n\n {\n // senderFee\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // protocolFee\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n {\n // isFulfilled\n\n let memberValue0 := mload(add(value, 0xa0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xa0))\n }\n\n {\n // isRefunded\n\n let memberValue0 := mload(add(value, 0xc0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xc0))\n }\n\n {\n // refundAddress\n\n let memberValue0 := mload(add(value, 0xe0))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0xe0))\n }\n\n {\n // currentBPS\n\n let memberValue0 := mload(add(value, 0x0100))\n abi_encode_t_uint96_to_t_uint96(memberValue0, add(pos, 0x0100))\n }\n\n {\n // amount\n\n let memberValue0 := mload(add(value, 0x0120))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x0120))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_Order_$3196_memory_ptr__to_t_struct$_Order_$3196_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 320)\n\n abi_encode_t_struct$_Order_$3196_memory_ptr_to_t_struct$_Order_$3196_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n // struct SharedStructs.InstitutionByCode -> struct SharedStructs.InstitutionByCode\n function abi_encode_t_struct$_InstitutionByCode_$3454_memory_ptr_to_t_struct$_InstitutionByCode_$3454_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x40)\n\n {\n // name\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x00))\n }\n\n {\n // currency\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x20))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_InstitutionByCode_$3454_memory_ptr__to_t_struct$_InstitutionByCode_$3454_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_struct$_InstitutionByCode_$3454_memory_ptr_to_t_struct$_InstitutionByCode_$3454_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_uint96(value) {\n if iszero(eq(value, cleanup_t_uint96(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint96(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint96(value)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n // string\n function abi_decode_t_string_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_tuple_t_addresst_uint256t_bytes32t_uint96t_addresst_uint256t_addresst_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8 {\n if slt(sub(dataEnd, headStart), 256) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint96(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 192\n\n value6 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 224))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value7, value8 := abi_decode_t_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value) -> length {\n\n length := sload(value)\n\n }\n\n function array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function shift_right_0_unsigned(value) -> newValue {\n newValue :=\n\n shr(0, value)\n\n }\n\n function cleanup_from_storage_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function extract_from_storage_value_offset_0t_bytes32(slot_value) -> value {\n value := cleanup_from_storage_t_bytes32(shift_right_0_unsigned(slot_value))\n }\n\n // struct SharedStructs.Institution -> struct SharedStructs.Institution\n function abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value, pos) {\n let tail := add(pos, 0x40)\n let slotValue := 0\n\n {\n // code\n slotValue := sload(add(value, 0x00))\n let memberValue0 := extract_from_storage_value_offset_0t_bytes32(slotValue)\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x00))\n }\n\n {\n // name\n slotValue := sload(add(value, 0x01))\n let memberValue0 := extract_from_storage_value_offset_0t_bytes32(slotValue)\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x20))\n }\n\n }\n\n function abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value0, pos) -> updatedPos {\n abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value0, pos)\n updatedPos := add(pos, 0x40)\n }\n\n function array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(ptr) -> next {\n next := add(ptr, 0x02)\n }\n\n // struct SharedStructs.Institution[] -> struct SharedStructs.Institution[]\n function abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := srcPtr\n pos := abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(memPtr) {\n\n mstore(add(memPtr, 0), \"OnlyAggregator\")\n\n }\n\n function abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderFulfilled\")\n\n }\n\n function abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderRefunded\")\n\n }\n\n function abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 13)\n store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(memPtr) {\n\n mstore(add(memPtr, 0), \"FeeExceedsProtocolFee\")\n\n }\n\n function abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is alrea\")\n\n mstore(add(memPtr, 32), \"dy initialized\")\n\n }\n\n function abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_rational_1_by_1(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_rational_1_by_1_to_t_uint8(value) -> converted {\n converted := cleanup_t_uint8(identity(cleanup_t_rational_1_by_1(value)))\n }\n\n function abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_rational_1_by_1_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidMessageHash\")\n\n }\n\n function abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function convert_t_uint96_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint96(value)))\n }\n\n function abi_encode_t_uint96_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_uint96_to_t_uint256(value))\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n // string -> string\n function abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n\n copy_calldata_to_memory_with_cleanup(start, pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_bytes32_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_bytes32_t_string_memory_ptr__fromStack_reversed(headStart , value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint96_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value3, add(headStart, 96))\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(value4, value5, tail)\n\n }\n\n function checked_sub_t_uint96(x, y) -> diff {\n x := cleanup_t_uint96(x)\n y := cleanup_t_uint96(y)\n diff := sub(x, y)\n\n if gt(diff, 0xffffffffffffffffffffffff) { panic_error_0x11() }\n\n }\n\n function convert_t_uint64_to_t_uint96(value) -> converted {\n converted := cleanup_t_uint96(identity(cleanup_t_uint64(value)))\n }\n\n function abi_encode_t_uint64_to_t_uint96_fromStack(value, pos) {\n mstore(pos, convert_t_uint64_to_t_uint96(value))\n }\n\n function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint64_to_t_uint96_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is not i\")\n\n mstore(add(memPtr, 32), \"nitializing\")\n\n }\n\n function abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenNotSupported\")\n\n }\n\n function abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 17)\n store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(memPtr) {\n\n mstore(add(memPtr, 0), \"AmountIsZero\")\n\n }\n\n function abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 12)\n store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(memPtr) {\n\n mstore(add(memPtr, 0), \"ThrowZeroAddress\")\n\n }\n\n function abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidSenderFeeRecipient\")\n\n }\n\n function abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106101375760003560e01c806379ba5097116100b8578063c22801031161007c578063c2280103146102dd578063cd9924001461030d578063d12ff20a14610329578063e30c397814610359578063f22ee70414610377578063f2fde38b146103a757610137565b806379ba5097146102825780638129fc1c1461028c5780638456cb59146102965780638da5cb5b146102a0578063b810c636146102be57610137565b80635c975abb116100ff5780635c975abb146101ca578063715018a6146101e857806371eedb88146101f257806375151b6314610222578063768c6ec01461025257610137565b8063026213381461013c578063322008821461016c5780633f4ba83a1461018857806340ebc6771461019257806347094e2e146101ae575b600080fd5b6101566004803603810190610151919061285d565b6103c3565b6040516101639190612977565b60405180910390f35b61018660048036038101906101819190612b47565b610449565b005b6101906105be565b005b6101ac60048036038101906101a79190612c01565b6105d0565b005b6101c860048036038101906101c39190612c81565b610898565b005b6101d2610903565b6040516101df9190612cc9565b60405180910390f35b6101f061091a565b005b61020c60048036038101906102079190612d1a565b61092e565b6040516102199190612cc9565b60405180910390f35b61023c60048036038101906102379190612d5a565b610dce565b6040516102499190612cc9565b60405180910390f35b61026c6004803603810190610267919061285d565b610e2a565b6040516102799190612ea7565b60405180910390f35b61028a611043565b005b6102946110d0565b005b61029e611220565b005b6102a8611232565b6040516102b59190612ed2565b60405180910390f35b6102c661125c565b6040516102d4929190612f0b565b60405180910390f35b6102f760048036038101906102f2919061285d565b611281565b6040516103049190612f63565b60405180910390f35b61032760048036038101906103229190612f7e565b6112c2565b005b610343600480360381019061033e9190613058565b611447565b604051610350919061313d565b60405180910390f35b61036161198d565b60405161036e9190612ed2565b60405180910390f35b610391600480360381019061038c9190613158565b6119b7565b60405161039e9190612cc9565b60405180910390f35b6103c160048036038101906103bc9190612d5a565b612013565b005b606060cd6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561043e578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906103f8565b505050509050919050565b6104516120c0565b60cd6000838152602001908152602001600020600061047091906126eb565b60005b815181101561056f5760cd60008481526020019081526020016000208282815181106104a2576104a16131bf565b5b60200260200101519080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550506040518060400160405280838381518110610507576105066131bf565b5b60200260200101516020015181526020018481525060ce6000848481518110610533576105326131bf565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610473565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516105b29190613308565b60405180910390a25050565b6105c66120c0565b6105ce61213e565b565b6105d86120c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063e90613387565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361074a578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790613419565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610848565b7f61676772656761746f72000000000000000000000000000000000000000000008303610847578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f8906134ab565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610893578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6108a06120c0565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516108f891906134cb565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b6109226120c0565b61092c60006121a1565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613532565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c9061359e565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff1615610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a819061360a565b60405180910390fd5b826101016000848152602001908152602001600020600401541015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613676565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610b78929190613696565b6020604051808303816000875af1158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906136eb565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610c709190613747565b610c7a919061377b565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610d2a9190613747565b6040518363ffffffff1660e01b8152600401610d47929190613696565b6020604051808303816000875af1158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a91906136eb565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610dbb91906137af565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610e205760019050610e25565b600090505b919050565b610e3261270f565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b600061104d6121d2565b90508073ffffffffffffffffffffffffffffffffffffffff1661106e61198d565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061383c565b60405180910390fd5b6110cd816121a1565b50565b60008060019054906101000a900460ff161590508080156111015750600160008054906101000a900460ff1660ff16105b8061112e5750611110306121da565b15801561112d5750600160008054906101000a900460ff1660ff16145b5b61116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906138ce565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156111aa576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506111bc6121fd565b6111c4612256565b801561121d5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516112149190613940565b60405180910390a15b50565b6112286120c0565b6112306122af565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b6112896127cc565b60ce6000838152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b6112ca6120c0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613387565b60405180910390fd5b60018114806113485750600281145b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906139a7565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611442578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161143991906137af565b60405180910390a35b505050565b6000611451612312565b61145e8a8a86898961235c565b600083839050036114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a13565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d6114ce9190613747565b6040518463ffffffff1660e01b81526004016114ec93929190613a33565b6020604051808303816000875af115801561150b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152f91906136eb565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061158190613a6a565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516020016115d9929190613696565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6116229190613ab2565b61162c9190613b23565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6116f4919061377b565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161197796959493929190613bc1565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613532565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061359e565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff1615611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a9061360a565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611b979190613c1d565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611ec9576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611df057610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611d19929190613696565b6020604051808303816000875af1158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c91906136eb565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611ec8578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611e83929190613696565b6020604051808303816000875af1158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec691906136eb565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611efb9190613ab2565b611f059190613b23565b90508061010160008881526020019081526020016000206007016000828254611f2e919061377b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611f70929190613696565b6020604051808303816000875af1158015611f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb391906136eb565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ffd929190613c8e565b60405180910390a3600192505050949350505050565b61201b6120c0565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661207b611232565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6120c86121d2565b73ffffffffffffffffffffffffffffffffffffffff166120e6611232565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613d03565b60405180910390fd5b565b61214661250f565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61218a6121d2565b6040516121979190612ed2565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556121cf81612558565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390613d95565b60405180910390fd5b61225461261e565b565b600060019054906101000a900460ff166122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613d95565b60405180910390fd5b6122ad61267f565b565b6122b7612312565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122fb6121d2565b6040516123089190612ed2565b60405180910390a1565b61231a610903565b1561235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190613e01565b60405180910390fd5b565b600160cc60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d590613e6d565b60405180910390fd5b60008403612421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241890613ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248790613f45565b60405180910390fd5b6000811461250857600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe90613fb1565b60405180910390fd5b5b5050505050565b612517610903565b612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d9061401d565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1661266d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266490613d95565b60405180910390fd5b61267d6126786121d2565b6121a1565b565b600060019054906101000a900460ff166126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c590613d95565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061270c91906127ec565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b604051806040016040528060008019168152602001600080191681525090565b5b8082111561280f576000808201600090556001820160009055506002016127ed565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61283a81612827565b811461284557600080fd5b50565b60008135905061285781612831565b92915050565b6000602082840312156128735761287261281d565b5b600061288184828501612848565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128bf81612827565b82525050565b6040820160008201516128db60008501826128b6565b5060208201516128ee60208501826128b6565b50505050565b600061290083836128c5565b60408301905092915050565b6000602082019050919050565b60006129248261288a565b61292e8185612895565b9350612939836128a6565b8060005b8381101561296a57815161295188826128f4565b975061295c8361290c565b92505060018101905061293d565b5085935050505092915050565b600060208201905081810360008301526129918184612919565b905092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129e78261299e565b810181811067ffffffffffffffff82111715612a0657612a056129af565b5b80604052505050565b6000612a19612813565b9050612a2582826129de565b919050565b600067ffffffffffffffff821115612a4557612a446129af565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215612a7657612a75612a5b565b5b612a806040612a0f565b90506000612a9084828501612848565b6000830152506020612aa484828501612848565b60208301525092915050565b6000612ac3612abe84612a2a565b612a0f565b90508083825260208201905060408402830185811115612ae657612ae5612a56565b5b835b81811015612b0f5780612afb8882612a60565b845260208401935050604081019050612ae8565b5050509392505050565b600082601f830112612b2e57612b2d612999565b5b8135612b3e848260208601612ab0565b91505092915050565b60008060408385031215612b5e57612b5d61281d565b5b6000612b6c85828601612848565b925050602083013567ffffffffffffffff811115612b8d57612b8c612822565b5b612b9985828601612b19565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bce82612ba3565b9050919050565b612bde81612bc3565b8114612be957600080fd5b50565b600081359050612bfb81612bd5565b92915050565b60008060408385031215612c1857612c1761281d565b5b6000612c2685828601612848565b9250506020612c3785828601612bec565b9150509250929050565b600067ffffffffffffffff82169050919050565b612c5e81612c41565b8114612c6957600080fd5b50565b600081359050612c7b81612c55565b92915050565b600060208284031215612c9757612c9661281d565b5b6000612ca584828501612c6c565b91505092915050565b60008115159050919050565b612cc381612cae565b82525050565b6000602082019050612cde6000830184612cba565b92915050565b6000819050919050565b612cf781612ce4565b8114612d0257600080fd5b50565b600081359050612d1481612cee565b92915050565b60008060408385031215612d3157612d3061281d565b5b6000612d3f85828601612d05565b9250506020612d5085828601612848565b9150509250929050565b600060208284031215612d7057612d6f61281d565b5b6000612d7e84828501612bec565b91505092915050565b612d9081612bc3565b82525050565b612d9f81612ce4565b82525050565b612dae81612cae565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612dd581612db4565b82525050565b61014082016000820151612df26000850182612d87565b506020820151612e056020850182612d87565b506040820151612e186040850182612d87565b506060820151612e2b6060850182612d96565b506080820151612e3e6080850182612d96565b5060a0820151612e5160a0850182612da5565b5060c0820151612e6460c0850182612da5565b5060e0820151612e7760e0850182612d87565b50610100820151612e8c610100850182612dcc565b50610120820151612ea1610120850182612d96565b50505050565b600061014082019050612ebd6000830184612ddb565b92915050565b612ecc81612bc3565b82525050565b6000602082019050612ee76000830184612ec3565b92915050565b612ef681612c41565b82525050565b612f0581612ce4565b82525050565b6000604082019050612f206000830185612eed565b612f2d6020830184612efc565b9392505050565b604082016000820151612f4a60008501826128b6565b506020820151612f5d60208501826128b6565b50505050565b6000604082019050612f786000830184612f34565b92915050565b600080600060608486031215612f9757612f9661281d565b5b6000612fa586828701612848565b9350506020612fb686828701612bec565b9250506040612fc786828701612d05565b9150509250925092565b612fda81612db4565b8114612fe557600080fd5b50565b600081359050612ff781612fd1565b92915050565b600080fd5b60008083601f84011261301857613017612999565b5b8235905067ffffffffffffffff81111561303557613034612ffd565b5b60208301915083600182028301111561305157613050612a56565b5b9250929050565b60008060008060008060008060006101008a8c03121561307b5761307a61281d565b5b60006130898c828d01612bec565b995050602061309a8c828d01612d05565b98505060406130ab8c828d01612848565b97505060606130bc8c828d01612fe8565b96505060806130cd8c828d01612bec565b95505060a06130de8c828d01612d05565b94505060c06130ef8c828d01612bec565b93505060e08a013567ffffffffffffffff8111156131105761310f612822565b5b61311c8c828d01613002565b92509250509295985092959850929598565b61313781612827565b82525050565b6000602082019050613152600083018461312e565b92915050565b600080600080608085870312156131725761317161281d565b5b600061318087828801612848565b945050602061319187828801612848565b93505060406131a287828801612bec565b92505060606131b387828801612c6c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b60006132386132338361320e565b61321b565b9050919050565b60408201600080830154905061325481613225565b61326160008601826128b6565b506001830154905061327281613225565b61327f60208601826128b6565b5050505050565b6000613292838361323f565b60408301905092915050565b6000600282019050919050565b60006132b6826131ee565b6132c08185612895565b93506132cb836131f9565b8060005b838110156132fb57816132e28882613286565b97506132ed8361329e565b9250506001810190506132cf565b5085935050505092915050565b6000602082019050818103600083015261332281846132ab565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061337160158361332a565b915061337c8261333b565b602082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b600061340360258361332a565b915061340e826133a7565b604082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b600061349560278361332a565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b60006020820190506134e06000830184612eed565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b600061351c600e8361332a565b9150613527826134e6565b602082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b6000613588600e8361332a565b915061359382613552565b602082019050919050565b600060208201905081810360008301526135b78161357b565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006135f4600d8361332a565b91506135ff826135be565b602082019050919050565b60006020820190508181036000830152613623816135e7565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b600061366060158361332a565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b60006040820190506136ab6000830185612ec3565b6136b86020830184612efc565b9392505050565b6136c881612cae565b81146136d357600080fd5b50565b6000815190506136e5816136bf565b92915050565b6000602082840312156137015761370061281d565b5b600061370f848285016136d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375282612ce4565b915061375d83612ce4565b925082820190508082111561377557613774613718565b5b92915050565b600061378682612ce4565b915061379183612ce4565b92508282039050818111156137a9576137a8613718565b5b92915050565b60006020820190506137c46000830184612efc565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b600061382660298361332a565b9150613831826137ca565b604082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006138b8602e8361332a565b91506138c38261385c565b604082019050919050565b600060208201905081810360008301526138e7816138ab565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600061392a613925613920846138ee565b613905565b6138f8565b9050919050565b61393a8161390f565b82525050565b60006020820190506139556000830184613931565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b600061399160178361332a565b915061399c8261395b565b602082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006139fd60128361332a565b9150613a08826139c7565b602082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b6000606082019050613a486000830186612ec3565b613a556020830185612ec3565b613a626040830184612efc565b949350505050565b6000613a7582612ce4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aa757613aa6613718565b5b600182019050919050565b6000613abd82612ce4565b9150613ac883612ce4565b9250828202613ad681612ce4565b91508282048414831517613aed57613aec613718565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b2e82612ce4565b9150613b3983612ce4565b925082613b4957613b48613af4565b5b828204905092915050565b6000613b6f613b6a613b6584612db4565b613905565b612ce4565b9050919050565b613b7f81613b54565b82525050565b82818337600083830152505050565b6000613ba0838561332a565b9350613bad838584613b85565b613bb68361299e565b840190509392505050565b600060a082019050613bd66000830189612efc565b613be3602083018861312e565b613bf06040830187613b76565b613bfd606083018661312e565b8181036080830152613c10818486613b94565b9050979650505050505050565b6000613c2882612db4565b9150613c3383612db4565b925082820390506bffffffffffffffffffffffff811115613c5757613c56613718565b5b92915050565b6000613c78613c73613c6e84612c41565b613905565b612db4565b9050919050565b613c8881613c5d565b82525050565b6000604082019050613ca3600083018561312e565b613cb06020830184613c7f565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ced60208361332a565b9150613cf882613cb7565b602082019050919050565b60006020820190508181036000830152613d1c81613ce0565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613d7f602b8361332a565b9150613d8a82613d23565b604082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613deb60108361332a565b9150613df682613db5565b602082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613e5760118361332a565b9150613e6282613e21565b602082019050919050565b60006020820190508181036000830152613e8681613e4a565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613ec3600c8361332a565b9150613ece82613e8d565b602082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613f2f60108361332a565b9150613f3a82613ef9565b602082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613f9b60198361332a565b9150613fa682613f65565b602082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061400760148361332a565b915061401282613fd1565b602082019050919050565b6000602082019050818103600083015261403681613ffa565b905091905056fea26469706673582212207dab2d8943229ee0ffe5f5e542da3ea20341c382d0e9de16603ee6cdba0d8e8f64736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x137 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79BA5097 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xC2280103 GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xC2280103 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0xD12FF20A EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x359 JUMPI DUP1 PUSH4 0xF22EE704 EQ PUSH2 0x377 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3A7 JUMPI PUSH2 0x137 JUMP JUMPDEST DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x296 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2A0 JUMPI DUP1 PUSH4 0xB810C636 EQ PUSH2 0x2BE JUMPI PUSH2 0x137 JUMP JUMPDEST DUP1 PUSH4 0x5C975ABB GT PUSH2 0xFF JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1E8 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x252 JUMPI PUSH2 0x137 JUMP JUMPDEST DUP1 PUSH4 0x2621338 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x32200882 EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x188 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x47094E2E EQ PUSH2 0x1AE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x156 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x151 SWAP2 SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH2 0x3C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x163 SWAP2 SWAP1 PUSH2 0x2977 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x186 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x181 SWAP2 SWAP1 PUSH2 0x2B47 JUMP JUMPDEST PUSH2 0x449 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x190 PUSH2 0x5BE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x2C01 JUMP JUMPDEST PUSH2 0x5D0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x2C81 JUMP JUMPDEST PUSH2 0x898 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D2 PUSH2 0x903 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DF SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH2 0x91A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x2D1A JUMP JUMPDEST PUSH2 0x92E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x2D5A JUMP JUMPDEST PUSH2 0xDCE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x267 SWAP2 SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH2 0xE2A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x279 SWAP2 SWAP1 PUSH2 0x2EA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28A PUSH2 0x1043 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x294 PUSH2 0x10D0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x29E PUSH2 0x1220 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A8 PUSH2 0x1232 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B5 SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C6 PUSH2 0x125C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP3 SWAP2 SWAP1 PUSH2 0x2F0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0x285D JUMP JUMPDEST PUSH2 0x1281 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x304 SWAP2 SWAP1 PUSH2 0x2F63 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x327 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x2F7E JUMP JUMPDEST PUSH2 0x12C2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x343 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33E SWAP2 SWAP1 PUSH2 0x3058 JUMP JUMPDEST PUSH2 0x1447 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x350 SWAP2 SWAP1 PUSH2 0x313D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x361 PUSH2 0x198D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36E SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x391 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38C SWAP2 SWAP1 PUSH2 0x3158 JUMP JUMPDEST PUSH2 0x19B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x2CC9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3BC SWAP2 SWAP1 PUSH2 0x2D5A JUMP JUMPDEST PUSH2 0x2013 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x43E JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3F8 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x451 PUSH2 0x20C0 JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x470 SWAP2 SWAP1 PUSH2 0x26EB JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x56F JUMPI PUSH1 0xCD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x4A2 JUMPI PUSH2 0x4A1 PUSH2 0x31BF JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x507 JUMPI PUSH2 0x506 PUSH2 0x31BF JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP PUSH1 0xCE PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x533 JUMPI PUSH2 0x532 PUSH2 0x31BF JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP DUP1 PUSH1 0x1 ADD SWAP1 POP PUSH2 0x473 JUMP JUMPDEST POP DUP2 PUSH32 0x58F3A30EC15A8D3E09FA65F9EF10219BC7A9A99D872A4ED895C37C2E761AC2AC PUSH1 0xCD PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x5B2 SWAP2 SWAP1 PUSH2 0x3308 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x5C6 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x5CE PUSH2 0x213E JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x5D8 PUSH2 0x20C0 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x647 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x63E SWAP1 PUSH2 0x3387 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x74A JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x700 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6F7 SWAP1 PUSH2 0x3419 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x848 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x847 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x801 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F8 SWAP1 PUSH2 0x34AB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x893 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8A0 PUSH2 0x20C0 JUMP JUMPDEST DUP1 PUSH1 0x98 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x1CE29A697A4765BD17D91DF93BA75B250B629ECF030553FF1F6AB59F15AE6C7B DUP2 PUSH1 0x40 MLOAD PUSH2 0x8F8 SWAP2 SWAP1 PUSH2 0x34CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x922 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x92C PUSH1 0x0 PUSH2 0x21A1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B7 SWAP1 PUSH2 0x3532 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA25 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA1C SWAP1 PUSH2 0x359E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA81 SWAP1 PUSH2 0x360A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0xAE4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xADB SWAP1 PUSH2 0x3676 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB78 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB97 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xBBB SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP4 PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0xC70 SWAP2 SWAP1 PUSH2 0x3747 JUMP JUMPDEST PUSH2 0xC7A SWAP2 SWAP1 PUSH2 0x377B JUMP JUMPDEST SWAP1 POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0xD2A SWAP2 SWAP1 PUSH2 0x3747 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD47 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD66 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD8A SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xDBB SWAP2 SWAP1 PUSH2 0x37AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SUB PUSH2 0xE20 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xE25 JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE32 PUSH2 0x270F JUMP JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x104D PUSH2 0x21D2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x106E PUSH2 0x198D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x10C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10BB SWAP1 PUSH2 0x383C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x10CD DUP2 PUSH2 0x21A1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1101 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x112E JUMPI POP PUSH2 0x1110 ADDRESS PUSH2 0x21DA JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x112D JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x116D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1164 SWAP1 PUSH2 0x38CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x11AA JUMPI PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x11BC PUSH2 0x21FD JUMP JUMPDEST PUSH2 0x11C4 PUSH2 0x2256 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x121D JUMPI PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1214 SWAP2 SWAP1 PUSH2 0x3940 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x1228 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x1230 PUSH2 0x22AF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x97 SLOAD SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x1289 PUSH2 0x27CC JUMP JUMPDEST PUSH1 0xCE PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12CA PUSH2 0x20C0 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1339 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1330 SWAP1 PUSH2 0x3387 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x1348 JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x1387 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x137E SWAP1 PUSH2 0x39A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1442 JUMPI DUP1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x1439 SWAP2 SWAP1 PUSH2 0x37AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1451 PUSH2 0x2312 JUMP JUMPDEST PUSH2 0x145E DUP11 DUP11 DUP7 DUP10 DUP10 PUSH2 0x235C JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0x14A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x149B SWAP1 PUSH2 0x3A13 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP14 PUSH2 0x14CE SWAP2 SWAP1 PUSH2 0x3747 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14EC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A33 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x150B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x152F SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1581 SWAP1 PUSH2 0x3A6A JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x15D9 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH1 0x97 SLOAD PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP12 PUSH2 0x1622 SWAP2 SWAP1 PUSH2 0x3AB2 JUMP JUMPDEST PUSH2 0x162C SWAP2 SWAP1 PUSH2 0x3B23 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP13 PUSH2 0x16F4 SWAP2 SWAP1 PUSH2 0x377B JUMP JUMPDEST DUP2 MSTORE POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x3BDD0D86E09A22D7CE596118BD3CA5EC73EA47533A465BE37621E913ED2BF333 DUP5 DUP7 DUP14 DUP16 DUP12 DUP12 PUSH1 0x40 MLOAD PUSH2 0x1977 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3BC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A49 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A40 SWAP1 PUSH2 0x3532 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1AAE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AA5 SWAP1 PUSH2 0x359E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1B13 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B0A SWAP1 PUSH2 0x360A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1B97 SWAP2 SWAP1 PUSH2 0x3C1D JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1EC9 JUMPI PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ PUSH2 0x1DF0 JUMPI PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D19 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D38 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1D5C SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ PUSH2 0x1EC8 JUMPI DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E83 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EA2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1EC6 SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x97 SLOAD DUP5 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1EFB SWAP2 SWAP1 PUSH2 0x3AB2 JUMP JUMPDEST PUSH2 0x1F05 SWAP2 SWAP1 PUSH2 0x3B23 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F2E SWAP2 SWAP1 PUSH2 0x377B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP7 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F70 SWAP3 SWAP2 SWAP1 PUSH2 0x3696 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F8F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1FB3 SWAP2 SWAP1 PUSH2 0x36EB JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH32 0x98ECE21E01A01CBE1D1C0DAD3B053C8FBD368F99BE78BE958FCF1D1D13FD249A DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1FFD SWAP3 SWAP2 SWAP1 PUSH2 0x3C8E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP3 POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x201B PUSH2 0x20C0 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x207B PUSH2 0x1232 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x20C8 PUSH2 0x21D2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20E6 PUSH2 0x1232 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x213C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2133 SWAP1 PUSH2 0x3D03 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2146 PUSH2 0x250F JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x218A PUSH2 0x21D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2197 SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x21CF DUP2 PUSH2 0x2558 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x224C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2243 SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2254 PUSH2 0x261E JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x22A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x229C SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x22AD PUSH2 0x267F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x22B7 PUSH2 0x2312 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x22FB PUSH2 0x21D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2308 SWAP2 SWAP1 PUSH2 0x2ED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x231A PUSH2 0x903 JUMP JUMPDEST ISZERO PUSH2 0x235A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2351 SWAP1 PUSH2 0x3E01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ PUSH2 0x23DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x23D5 SWAP1 PUSH2 0x3E6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 SUB PUSH2 0x2421 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2418 SWAP1 PUSH2 0x3ED9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2490 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2487 SWAP1 PUSH2 0x3F45 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 EQ PUSH2 0x2508 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2507 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24FE SWAP1 PUSH2 0x3FB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2517 PUSH2 0x903 JUMP JUMPDEST PUSH2 0x2556 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x254D SWAP1 PUSH2 0x401D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x266D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2664 SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x267D PUSH2 0x2678 PUSH2 0x21D2 JUMP JUMPDEST PUSH2 0x21A1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x26CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x26C5 SWAP1 PUSH2 0x3D95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x270C SWAP2 SWAP1 PUSH2 0x27EC JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP1 NOT AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 NOT AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x280F JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0x27ED JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x283A DUP2 PUSH2 0x2827 JUMP JUMPDEST DUP2 EQ PUSH2 0x2845 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2857 DUP2 PUSH2 0x2831 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2873 JUMPI PUSH2 0x2872 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2881 DUP5 DUP3 DUP6 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x28BF DUP2 PUSH2 0x2827 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x28DB PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x28EE PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2900 DUP4 DUP4 PUSH2 0x28C5 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2924 DUP3 PUSH2 0x288A JUMP JUMPDEST PUSH2 0x292E DUP2 DUP6 PUSH2 0x2895 JUMP JUMPDEST SWAP4 POP PUSH2 0x2939 DUP4 PUSH2 0x28A6 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x296A JUMPI DUP2 MLOAD PUSH2 0x2951 DUP9 DUP3 PUSH2 0x28F4 JUMP JUMPDEST SWAP8 POP PUSH2 0x295C DUP4 PUSH2 0x290C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x293D JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2991 DUP2 DUP5 PUSH2 0x2919 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x29E7 DUP3 PUSH2 0x299E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2A06 JUMPI PUSH2 0x2A05 PUSH2 0x29AF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A19 PUSH2 0x2813 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A25 DUP3 DUP3 PUSH2 0x29DE JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A45 JUMPI PUSH2 0x2A44 PUSH2 0x29AF JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A76 JUMPI PUSH2 0x2A75 PUSH2 0x2A5B JUMP JUMPDEST JUMPDEST PUSH2 0x2A80 PUSH1 0x40 PUSH2 0x2A0F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2A90 DUP5 DUP3 DUP6 ADD PUSH2 0x2848 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x2AA4 DUP5 DUP3 DUP6 ADD PUSH2 0x2848 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AC3 PUSH2 0x2ABE DUP5 PUSH2 0x2A2A JUMP JUMPDEST PUSH2 0x2A0F JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x40 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x2AE6 JUMPI PUSH2 0x2AE5 PUSH2 0x2A56 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2B0F JUMPI DUP1 PUSH2 0x2AFB DUP9 DUP3 PUSH2 0x2A60 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x40 DUP2 ADD SWAP1 POP PUSH2 0x2AE8 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2B2E JUMPI PUSH2 0x2B2D PUSH2 0x2999 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2B3E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2AB0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2B5E JUMPI PUSH2 0x2B5D PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B6C DUP6 DUP3 DUP7 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2B8D JUMPI PUSH2 0x2B8C PUSH2 0x2822 JUMP JUMPDEST JUMPDEST PUSH2 0x2B99 DUP6 DUP3 DUP7 ADD PUSH2 0x2B19 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BCE DUP3 PUSH2 0x2BA3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BDE DUP2 PUSH2 0x2BC3 JUMP JUMPDEST DUP2 EQ PUSH2 0x2BE9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2BFB DUP2 PUSH2 0x2BD5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2C18 JUMPI PUSH2 0x2C17 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2C26 DUP6 DUP3 DUP7 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2C37 DUP6 DUP3 DUP7 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C5E DUP2 PUSH2 0x2C41 JUMP JUMPDEST DUP2 EQ PUSH2 0x2C69 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C7B DUP2 PUSH2 0x2C55 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2C97 JUMPI PUSH2 0x2C96 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CA5 DUP5 DUP3 DUP6 ADD PUSH2 0x2C6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2CC3 DUP2 PUSH2 0x2CAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CDE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CBA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2CF7 DUP2 PUSH2 0x2CE4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2D02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2D14 DUP2 PUSH2 0x2CEE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D31 JUMPI PUSH2 0x2D30 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D3F DUP6 DUP3 DUP7 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D50 DUP6 DUP3 DUP7 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D70 JUMPI PUSH2 0x2D6F PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D7E DUP5 DUP3 DUP6 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2D90 DUP2 PUSH2 0x2BC3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2D9F DUP2 PUSH2 0x2CE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2DAE DUP2 PUSH2 0x2CAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DD5 DUP2 PUSH2 0x2DB4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2DF2 PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2E05 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x2E18 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x2E2B PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x2D96 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x2E3E PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x2D96 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x2E51 PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x2DA5 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x2E64 PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x2DA5 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x2E77 PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x2D87 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x2E8C PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x2DCC JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x2EA1 PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x2D96 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x2EBD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2DDB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2ECC DUP2 PUSH2 0x2BC3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2EE7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EC3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2EF6 DUP2 PUSH2 0x2C41 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F05 DUP2 PUSH2 0x2CE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2F20 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2EED JUMP JUMPDEST PUSH2 0x2F2D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2F4A PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2F5D PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2F78 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F34 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2F97 JUMPI PUSH2 0x2F96 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2FA5 DUP7 DUP3 DUP8 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2FB6 DUP7 DUP3 DUP8 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2FC7 DUP7 DUP3 DUP8 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x2FDA DUP2 PUSH2 0x2DB4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2FE5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FF7 DUP2 PUSH2 0x2FD1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3018 JUMPI PUSH2 0x3017 PUSH2 0x2999 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3035 JUMPI PUSH2 0x3034 PUSH2 0x2FFD JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x3051 JUMPI PUSH2 0x3050 PUSH2 0x2A56 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x100 DUP11 DUP13 SUB SLT ISZERO PUSH2 0x307B JUMPI PUSH2 0x307A PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3089 DUP13 DUP3 DUP14 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP10 POP POP PUSH1 0x20 PUSH2 0x309A DUP13 DUP3 DUP14 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x40 PUSH2 0x30AB DUP13 DUP3 DUP14 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 PUSH2 0x30BC DUP13 DUP3 DUP14 ADD PUSH2 0x2FE8 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x80 PUSH2 0x30CD DUP13 DUP3 DUP14 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP6 POP POP PUSH1 0xA0 PUSH2 0x30DE DUP13 DUP3 DUP14 ADD PUSH2 0x2D05 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xC0 PUSH2 0x30EF DUP13 DUP3 DUP14 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP4 POP POP PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3110 JUMPI PUSH2 0x310F PUSH2 0x2822 JUMP JUMPDEST JUMPDEST PUSH2 0x311C DUP13 DUP3 DUP14 ADD PUSH2 0x3002 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH2 0x3137 DUP2 PUSH2 0x2827 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3152 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x312E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x3172 JUMPI PUSH2 0x3171 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3180 DUP8 DUP3 DUP9 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x3191 DUP8 DUP3 DUP9 ADD PUSH2 0x2848 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x31A2 DUP8 DUP3 DUP9 ADD PUSH2 0x2BEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x31B3 DUP8 DUP3 DUP9 ADD PUSH2 0x2C6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3238 PUSH2 0x3233 DUP4 PUSH2 0x320E JUMP JUMPDEST PUSH2 0x321B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3254 DUP2 PUSH2 0x3225 JUMP JUMPDEST PUSH2 0x3261 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP PUSH1 0x1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3272 DUP2 PUSH2 0x3225 JUMP JUMPDEST PUSH2 0x327F PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x28B6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3292 DUP4 DUP4 PUSH2 0x323F JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32B6 DUP3 PUSH2 0x31EE JUMP JUMPDEST PUSH2 0x32C0 DUP2 DUP6 PUSH2 0x2895 JUMP JUMPDEST SWAP4 POP PUSH2 0x32CB DUP4 PUSH2 0x31F9 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x32FB JUMPI DUP2 PUSH2 0x32E2 DUP9 DUP3 PUSH2 0x3286 JUMP JUMPDEST SWAP8 POP PUSH2 0x32ED DUP4 PUSH2 0x329E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x32CF JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3322 DUP2 DUP5 PUSH2 0x32AB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3371 PUSH1 0x15 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x337C DUP3 PUSH2 0x333B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33A0 DUP2 PUSH2 0x3364 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3403 PUSH1 0x25 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x340E DUP3 PUSH2 0x33A7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3432 DUP2 PUSH2 0x33F6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3495 PUSH1 0x27 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x34A0 DUP3 PUSH2 0x3439 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34C4 DUP2 PUSH2 0x3488 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x34E0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x351C PUSH1 0xE DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3527 DUP3 PUSH2 0x34E6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x354B DUP2 PUSH2 0x350F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3588 PUSH1 0xE DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3593 DUP3 PUSH2 0x3552 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35B7 DUP2 PUSH2 0x357B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35F4 PUSH1 0xD DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x35FF DUP3 PUSH2 0x35BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3623 DUP2 PUSH2 0x35E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3660 PUSH1 0x15 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x366B DUP3 PUSH2 0x362A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x368F DUP2 PUSH2 0x3653 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x36AB PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x36B8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x36C8 DUP2 PUSH2 0x2CAE JUMP JUMPDEST DUP2 EQ PUSH2 0x36D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x36E5 DUP2 PUSH2 0x36BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3701 JUMPI PUSH2 0x3700 PUSH2 0x281D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x370F DUP5 DUP3 DUP6 ADD PUSH2 0x36D6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3752 DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x375D DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3775 JUMPI PUSH2 0x3774 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3786 DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3791 DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x37A9 JUMPI PUSH2 0x37A8 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37C4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3826 PUSH1 0x29 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3831 DUP3 PUSH2 0x37CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3855 DUP2 PUSH2 0x3819 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38B8 PUSH1 0x2E DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x38C3 DUP3 PUSH2 0x385C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38E7 DUP2 PUSH2 0x38AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x392A PUSH2 0x3925 PUSH2 0x3920 DUP5 PUSH2 0x38EE JUMP JUMPDEST PUSH2 0x3905 JUMP JUMPDEST PUSH2 0x38F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x393A DUP2 PUSH2 0x390F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3955 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3931 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3991 PUSH1 0x17 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x399C DUP3 PUSH2 0x395B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39C0 DUP2 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39FD PUSH1 0x12 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3A08 DUP3 PUSH2 0x39C7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A2C DUP2 PUSH2 0x39F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3A48 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x3A55 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2EC3 JUMP JUMPDEST PUSH2 0x3A62 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2EFC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A75 DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x3AA7 JUMPI PUSH2 0x3AA6 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3ABD DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3AC8 DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3AD6 DUP2 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x3AED JUMPI PUSH2 0x3AEC PUSH2 0x3718 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3B2E DUP3 PUSH2 0x2CE4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3B39 DUP4 PUSH2 0x2CE4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3B49 JUMPI PUSH2 0x3B48 PUSH2 0x3AF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B6F PUSH2 0x3B6A PUSH2 0x3B65 DUP5 PUSH2 0x2DB4 JUMP JUMPDEST PUSH2 0x3905 JUMP JUMPDEST PUSH2 0x2CE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B7F DUP2 PUSH2 0x3B54 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BA0 DUP4 DUP6 PUSH2 0x332A JUMP JUMPDEST SWAP4 POP PUSH2 0x3BAD DUP4 DUP6 DUP5 PUSH2 0x3B85 JUMP JUMPDEST PUSH2 0x3BB6 DUP4 PUSH2 0x299E JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3BD6 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x2EFC JUMP JUMPDEST PUSH2 0x3BE3 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x3BF0 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x3B76 JUMP JUMPDEST PUSH2 0x3BFD PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x312E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x3C10 DUP2 DUP5 DUP7 PUSH2 0x3B94 JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C28 DUP3 PUSH2 0x2DB4 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C33 DUP4 PUSH2 0x2DB4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3C57 JUMPI PUSH2 0x3C56 PUSH2 0x3718 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C78 PUSH2 0x3C73 PUSH2 0x3C6E DUP5 PUSH2 0x2C41 JUMP JUMPDEST PUSH2 0x3905 JUMP JUMPDEST PUSH2 0x2DB4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3C88 DUP2 PUSH2 0x3C5D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3CA3 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x3CB0 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3C7F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CED PUSH1 0x20 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3CF8 DUP3 PUSH2 0x3CB7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D1C DUP2 PUSH2 0x3CE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D7F PUSH1 0x2B DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3D8A DUP3 PUSH2 0x3D23 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DAE DUP2 PUSH2 0x3D72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DEB PUSH1 0x10 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3DF6 DUP3 PUSH2 0x3DB5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E1A DUP2 PUSH2 0x3DDE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E57 PUSH1 0x11 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3E62 DUP3 PUSH2 0x3E21 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E86 DUP2 PUSH2 0x3E4A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3EC3 PUSH1 0xC DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3ECE DUP3 PUSH2 0x3E8D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EF2 DUP2 PUSH2 0x3EB6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F2F PUSH1 0x10 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3F3A DUP3 PUSH2 0x3EF9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F5E DUP2 PUSH2 0x3F22 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F9B PUSH1 0x19 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x3FA6 DUP3 PUSH2 0x3F65 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FCA DUP2 PUSH2 0x3F8E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4007 PUSH1 0x14 DUP4 PUSH2 0x332A JUMP JUMPDEST SWAP2 POP PUSH2 0x4012 DUP3 PUSH2 0x3FD1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4036 DUP2 PUSH2 0x3FFA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0xAB2D8943229EE0FFE5F5E542DA3EA20341C382D0E9DE16603EE6CDBA0D8E DUP16 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ","sourceMap":"451:7373:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7503:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2323:539:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1482:56:10;;;:::i;:::-;;3394:551:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2995:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1879:84:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2085:101:1;;;:::i;:::-;;5756:926:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7071:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6915:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2031:212:0;;;:::i;:::-;;856:114:10;;;:::i;:::-;;1386:52;;;:::i;:::-;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7713:109:10;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;7275:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1773:335:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1770:1395:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4222:1495:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7503:164:10;7584:34;7631:21;:32;7653:9;7631:32;;;;;;;;;;;7624:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7503:164;;;:::o;2323:539:11:-;1355:13:1;:11;:13::i;:::-;2461:21:11::1;:31;2483:8;2461:31;;;;;;;;;;;;2454:38;;;;:::i;:::-;2501:6;2496:283;2513:12;:19;2509:1;:23;2496:283;;;2541:21;:31;2563:8;2541:31;;;;;;;;;;;2578:12;2591:1;2578:15;;;;;;;;:::i;:::-;;;;;;;;2541:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651:94;;;;;;;;2695:12;2708:1;2695:15;;;;;;;;:::i;:::-;;;;;;;;:20;;;2651:94;;;;2731:8;2651:94;;::::0;2599:27:::1;:49;2627:12;2640:1;2627:15;;;;;;;;:::i;:::-;;;;;;;;:20;;;2599:49;;;;;;;;;;;:146;;;;;;;;;;;;;;;;;;;2766:3;;;;;2496:283;;;;2816:8;2787:71;2826:21;:31;2848:8;2826:31;;;;;;;;;;;2787:71;;;;;;:::i;:::-;;;;;;;;2323:539:::0;;:::o;1482:56:10:-;1355:13:1;:11;:13::i;:::-;1524:10:10::1;:8;:10::i;:::-;1482:56::o:0;3394:551:11:-;1355:13:1;:11;:13::i;:::-;3502:1:11::1;3485:19;;:5;:19;;::::0;3477:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3534:12;3554:18;:4;:18:::0;3550:326:::1;;3606:5;3587:24;;:15;;;;;;;;;;;:24;;::::0;3579:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3676:5;3658:15;;:23;;;;;;;;;;;;;;;;;;3696:4;3686:14;;3550:326;;;3715:20;:4;:20:::0;3711:165:::1;;3772:5;3750:27;;:18;;;;;;;;;;;:27;;::::0;3742:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3847:5;3826:18;;:26;;;;;;;;;;;;;;;;;;3867:4;3857:14;;3711:165;3550:326;3883:7;3879:63;;;3931:5;3902:35;;3925:4;3902:35;;;;;;;;;;3879:63;3473:472;3394:551:::0;;:::o;2995:170::-;1355:13:1;:11;:13::i;:::-;3094:19:11::1;3073:18;;:40;;;;;;;;;;;;;;;;;;3122:39;3141:19;3122:39;;;;;;:::i;:::-;;;;;;;;2995:170:::0;:::o;1879:84:3:-;1926:4;1949:7;;;;;;;;;;;1942:14;;1879:84;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;5756:926:10:-;5837:4;1105:18;;;;;;;;;;;1091:32;;:10;:32;;;1083:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5907:5:::1;:15;5913:8;5907:15;;;;;;;;;;;:27;;;;;;;;;;;;5906:28;5898:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;5966:5;:15;5972:8;5966:15;;;;;;;;;;;:26;;;;;;;;;;;;5965:27;5957:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;6053:4;6022:5;:15;6028:8;6022:15;;;;;;;;;;;:27;;;:35;;6014:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;6136:5;:15;6142:8;6136:15;;;;;;;;;;;:21;;;;;;;;;;;;6129:38;;;6168:15;;;;;;;;;;;6185:4;6129:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6248:4;6219:5;:15;6225:8;6219:15;;;;;;;;;;;:26;;;:33;;;;;;;;;;;;;;;;;;6285:1;6256:5;:15;6262:8;6256:15;;;;;;;;;;;:26;;;:30;;;;;;;;;;;;;;;;;;6325:20;6403:4;6373:5;:15;6379:8;6373:15;;;;;;;;;;;:27;;;6348:5;:15;6354:8;6348:15;;;;;;;;;;;:22;;;:52;;;;:::i;:::-;:59;;;;:::i;:::-;6325:82;;6484:5;:15;6490:8;6484:15;;;;;;;;;;;:21;;;;;;;;;;;;6477:38;;;6520:5;:15;6526:8;6520:15;;;;;;;;;;;:29;;;;;;;;;;;;6569:5;:15;6575:8;6569:15;;;;;;;;;;;:25;;;6554:12;:40;;;;:::i;:::-;6477:121;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6653:8;6633:29;6647:4;6633:29;;;;;;:::i;:::-;;;;;;;;6674:4;6667:11;;;5756:926:::0;;;;:::o;7071:142::-;7136:4;7179:1;7150:17;:25;7168:6;7150:25;;;;;;;;;;;;;;;;:30;7146:47;;7189:4;7182:11;;;;7146:47;7204:5;7197:12;;7071:142;;;;:::o;6915:107::-;6978:12;;:::i;:::-;7003:5;:15;7009:8;7003:15;;;;;;;;;;;6996:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6915:107;;;:::o;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;856:114:10:-;3279:19:2;3302:13;;;;;;;;;;;3301:14;3279:36;;3347:14;:34;;;;;3380:1;3365:12;;;;;;;;;;:16;;;3347:34;3346:108;;;;3388:44;3426:4;3388:29;:44::i;:::-;3387:45;:66;;;;;3452:1;3436:12;;;;;;;;;;:17;;;3387:66;3346:108;3325:201;;;;;;;;;;;;:::i;:::-;;;;;;;;;3551:1;3536:12;;:16;;;;;;;;;;;;;;;;;;3566:14;3562:65;;;3612:4;3596:13;;:20;;;;;;;;;;;;;;;;;;3562:65;913:7:10::1;903;:17;;;;924:21;:19;:21::i;:::-;949:17;:15;:17::i;:::-;3651:14:2::0;3647:99;;;3697:5;3681:13;;:21;;;;;;;;;;;;;;;;;;3721:14;3733:1;3721:14;;;;;;:::i;:::-;;;;;;;;3647:99;3269:483;856:114:10:o;1386:52::-;1355:13:1;:11;:13::i;:::-;1426:8:10::1;:6;:8::i;:::-;1386:52::o:0;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;7713:109:10:-;7761:6;7769:7;7790:18;;;;;;;;;;;7810:7;;7782:36;;;;7713:109;;:::o;7275:171::-;7357:38;;:::i;:::-;7408:27;:34;7436:5;7408:34;;;;;;;;;;;7401:41;;;;;;;;;;;;;;;;;;;;;;;;;;;7275:171;;;:::o;1773:335:11:-;1355:13:1;:11;:13::i;:::-;1894:1:11::1;1877:19;;:5;:19;;::::0;1869:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1944:1;1934:6;:11;:26;;;;1959:1;1949:6;:11;1934:26;1926:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1996:15;:4;:15:::0;1992:113:::1;;2045:6;2018:17;:24;2036:5;2018:24;;;;;;;;;;;;;;;:33;;;;2086:5;2061:39;;2080:4;2061:39;2093:6;2061:39;;;;;;:::i;:::-;;;;;;;;1992:113;1773:335:::0;;;:::o;1770:1395:10:-;2017:15;1503:19:3;:17;:19::i;:::-;2068:74:10::1;2077:6;2085:7;2094:14;2110:19;2131:10;2068:8;:74::i;:::-;2210:1;2187:11;;2181:25;;:30:::0;2173:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2294:6;2287:27;;;2315:10;2335:4;2352:10;2342:7;:20;;;;:::i;:::-;2287:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2418:6;:18;2425:10;2418:18;;;;;;;;;;;;;;;;:20;;;;;;;;;:::i;:::-;;;;;;2523:10;2535:6;:18;2542:10;2535:18;;;;;;;;;;;;;;;;2512:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2502:53;;;;;;2492:63;;2584:20;2640:7;;2618:18;;;;;;;;;;;2608:28;;:7;:28;;;;:::i;:::-;2607:40;;;;:::i;:::-;2584:63;;2668:298;;;;;;;;2687:10;2668:298;;;;;;2709:6;2668:298;;;;;;2740:19;2668:298;;;;;;2775:10;2668:298;;;;2803:12;2668:298;;;;2833:5;2668:298;;;;;;2855:5;2668:298;;;;;;2880:14;2668:298;;;;;;2918:7;;2668:298;;;;;;;;2949:12;2939:7;:22;;;;:::i;:::-;2668:298;;::::0;2651:5:::1;:14;2657:7;2651:14;;;;;;;;;;;:315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3060:5;:14;3066:7;3060:14;;;;;;;;;;;:21;;;3049:6;3006:155;;3023:5;:14;3029:7;3023:14;;;;;;;;;;;:21;;;;;;;;;;;;3006:155;;;3086:12;3103:7;3115:5;3125:16;3146:11;;3006:155;;;;;;;;;;;:::i;:::-;;;;;;;;2034:1131;1770:1395:::0;;;;;;;;;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;4222:1495:10:-;4374:4;1105:18;;;;;;;;;;;1091:32;;:10;:32;;;1083:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4444:5:::1;:15;4450:8;4444:15;;;;;;;;;;;:27;;;;;;;;;;;;4443:28;4435:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4503:5;:15;4509:8;4503:15;;;;;;;;;;;:26;;;;;;;;;;;;4502:27;4494:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;4584:13;4600:5;:15;4606:8;4600:15;;;;;;;;;;;:21;;;;;;;;;;;;4584:37;;4718:14;4688:44;;:5;:15;4694:8;4688:15;;;;;;;;;;;:26;;;:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4771:1;4741:5;:15;4747:8;4741:15;;;;;;;;;;;:26;;;;;;;;;;;;:31;;::::0;4737:604:::1;;4854:4;4824:5;:15;4830:8;4824:15;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;4897:1;4868:5;:15;4874:8;4868:15;;;;;;;;;;;:25;;;:30;4864:321;;4940:5;:15;4946:8;4940:15;;;;;;;;;;;:21;;;;;;;;;;;;4933:38;;;4978:5;:15;4984:8;4978:15;;;;;;;;;;;:34;;;;;;;;;;;;5019:5;:15;5025:8;5019:15;;;;;;;;;;;:25;;;4933:117;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5148:5;:15;5154:8;5148:15;;;;;;;;;;;:25;;;5107:5;:15;5113:8;5107:15;;;;;;;;;;;:34;;;;;;;;;;;;5080:99;;;;;;;;;;;;4864:321;5225:1;5194:5;:15;5200:8;5194:15;;;;;;;;;;;:27;;;:32;5190:147;;5270:5;5263:22;;;5286:15;;;;;;;;;;;5303:5;:15;5309:8;5303:15;;;;;;;;;;;:27;;;5263:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5190:147;4737:604;5381:31;5459:7;;5441:14;5416:39;;:5;:15;5422:8;5416:15;;;;;;;;;;;:22;;;:39;;;;:::i;:::-;5415:51;;;;:::i;:::-;5381:85;;5496:23;5470:5;:15;5476:8;5470:15;;;;;;;;;;;:22;;;:49;;;;;;;:::i;:::-;;;;;;;;5530:5;5523:22;;;5546:18;5566:23;5523:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5662:18;5624:73;;5652:8;5624:73;5637:13;5682:14;5624:73;;;;;;;:::i;:::-;;;;;;;;5709:4;5702:11;;;;4222:1495:::0;;;;;;:::o;1436:178:0:-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;2697:117:3:-;1750:16;:14;:16::i;:::-;2765:5:::1;2755:7;;:15;;;;;;;;;;;;;;;;;;2785:22;2794:12;:10;:12::i;:::-;2785:22;;;;;;:::i;:::-;;;;;;;;2697:117::o:0;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;1423:320:4:-;1483:4;1735:1;1713:7;:19;;;:23;1706:30;;1423:320;;;:::o;889:100:0:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;956:26:0::1;:24;:26::i;:::-;889:100::o:0;1084:97:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1147:27:3::1;:25;:27::i;:::-;1084:97::o:0;2450:115::-;1503:19;:17;:19::i;:::-;2519:4:::1;2509:7;;:14;;;;;;;;;;;;;;;;;;2538:20;2545:12;:10;:12::i;:::-;2538:20;;;;;;:::i;:::-;;;;;;;;2450:115::o:0;2031:106::-;2101:8;:6;:8::i;:::-;2100:9;2092:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:106::o;3558:427:10:-;3750:1;3721:17;:25;3739:6;3721:25;;;;;;;;;;;;;;;;:30;3713:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3796:1;3785:7;:12;3777:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;3852:1;3826:28;;:14;:28;;;3818:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3898:1;3884:10;:15;3880:102;;3945:1;3914:33;;:19;:33;;;3906:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3880:102;3558:427;;;;;:::o;2209:106:3:-;2275:8;:6;:8::i;:::-;2267:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2209:106::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;1125:111::-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1197:32:1::1;1216:12;:10;:12::i;:::-;1197:18;:32::i;:::-;1125:111::o:0;1187:95:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1270:5:3::1;1260:7;;:15;;;;;;;;;;;;;;;;;;1187:95::o:0;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:17:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:143::-;1121:6;1155:5;1149:12;1139:22;;1025:143;;;:::o;1174:213::-;1302:11;1336:6;1331:3;1324:19;1376:4;1371:3;1367:14;1352:29;;1174:213;;;;:::o;1393:161::-;1489:4;1512:3;1504:11;;1542:4;1537:3;1533:14;1525:22;;1393:161;;;:::o;1560:108::-;1637:24;1655:5;1637:24;:::i;:::-;1632:3;1625:37;1560:108;;:::o;1750:505::-;1895:4;1890:3;1886:14;1982:4;1975:5;1971:16;1965:23;2001:63;2058:4;2053:3;2049:14;2035:12;2001:63;:::i;:::-;1910:164;2156:4;2149:5;2145:16;2139:23;2175:63;2232:4;2227:3;2223:14;2209:12;2175:63;:::i;:::-;2084:164;1864:391;1750:505;;:::o;2261:295::-;2388:10;2409:104;2509:3;2501:6;2409:104;:::i;:::-;2545:4;2540:3;2536:14;2522:28;;2261:295;;;;:::o;2562:142::-;2661:4;2693;2688:3;2684:14;2676:22;;2562:142;;;:::o;2790:964::-;2967:3;2996:83;3073:5;2996:83;:::i;:::-;3095:115;3203:6;3198:3;3095:115;:::i;:::-;3088:122;;3234:85;3313:5;3234:85;:::i;:::-;3342:7;3373:1;3358:371;3383:6;3380:1;3377:13;3358:371;;;3459:6;3453:13;3486:121;3603:3;3588:13;3486:121;:::i;:::-;3479:128;;3630:89;3712:6;3630:89;:::i;:::-;3620:99;;3418:311;3405:1;3402;3398:9;3393:14;;3358:371;;;3362:14;3745:3;3738:10;;2972:782;;;2790:964;;;;:::o;3760:489::-;3961:4;3999:2;3988:9;3984:18;3976:26;;4048:9;4042:4;4038:20;4034:1;4023:9;4019:17;4012:47;4076:166;4237:4;4228:6;4076:166;:::i;:::-;4068:174;;3760:489;;;;:::o;4255:117::-;4364:1;4361;4354:12;4378:102;4419:6;4470:2;4466:7;4461:2;4454:5;4450:14;4446:28;4436:38;;4378:102;;;:::o;4486:180::-;4534:77;4531:1;4524:88;4631:4;4628:1;4621:15;4655:4;4652:1;4645:15;4672:281;4755:27;4777:4;4755:27;:::i;:::-;4747:6;4743:40;4885:6;4873:10;4870:22;4849:18;4837:10;4834:34;4831:62;4828:88;;;4896:18;;:::i;:::-;4828:88;4936:10;4932:2;4925:22;4715:238;4672:281;;:::o;4959:129::-;4993:6;5020:20;;:::i;:::-;5010:30;;5049:33;5077:4;5069:6;5049:33;:::i;:::-;4959:129;;;:::o;5094:340::-;5200:4;5290:18;5282:6;5279:30;5276:56;;;5312:18;;:::i;:::-;5276:56;5362:4;5354:6;5350:17;5342:25;;5422:4;5416;5412:15;5404:23;;5094:340;;;:::o;5440:117::-;5549:1;5546;5539:12;5563:117;5672:1;5669;5662:12;5849:578;5927:5;5971:4;5959:9;5954:3;5950:19;5946:30;5943:117;;;5979:79;;:::i;:::-;5943:117;6078:21;6094:4;6078:21;:::i;:::-;6069:30;;6158:1;6198:49;6243:3;6234:6;6223:9;6219:22;6198:49;:::i;:::-;6191:4;6184:5;6180:16;6173:75;6109:150;6318:2;6359:49;6404:3;6395:6;6384:9;6380:22;6359:49;:::i;:::-;6352:4;6345:5;6341:16;6334:75;6269:151;5849:578;;;;:::o;6475:797::-;6600:5;6625:110;6641:93;6727:6;6641:93;:::i;:::-;6625:110;:::i;:::-;6616:119;;6755:5;6784:6;6777:5;6770:21;6818:4;6811:5;6807:16;6800:23;;6871:4;6863:6;6859:17;6851:6;6847:30;6900:3;6892:6;6889:15;6886:122;;;6919:79;;:::i;:::-;6886:122;7034:6;7017:249;7051:6;7046:3;7043:15;7017:249;;;7126:3;7155:66;7217:3;7205:10;7155:66;:::i;:::-;7150:3;7143:79;7251:4;7246:3;7242:14;7235:21;;7093:173;7077:4;7072:3;7068:14;7061:21;;7017:249;;;7021:21;6606:666;;6475:797;;;;;:::o;7320:428::-;7420:5;7469:3;7462:4;7454:6;7450:17;7446:27;7436:122;;7477:79;;:::i;:::-;7436:122;7594:6;7581:20;7619:123;7738:3;7730:6;7723:4;7715:6;7711:17;7619:123;:::i;:::-;7610:132;;7426:322;7320:428;;;;:::o;7754:742::-;7876:6;7884;7933:2;7921:9;7912:7;7908:23;7904:32;7901:119;;;7939:79;;:::i;:::-;7901:119;8059:1;8084:53;8129:7;8120:6;8109:9;8105:22;8084:53;:::i;:::-;8074:63;;8030:117;8214:2;8203:9;8199:18;8186:32;8245:18;8237:6;8234:30;8231:117;;;8267:79;;:::i;:::-;8231:117;8372:107;8471:7;8462:6;8451:9;8447:22;8372:107;:::i;:::-;8362:117;;8157:332;7754:742;;;;;:::o;8502:126::-;8539:7;8579:42;8572:5;8568:54;8557:65;;8502:126;;;:::o;8634:96::-;8671:7;8700:24;8718:5;8700:24;:::i;:::-;8689:35;;8634:96;;;:::o;8736:122::-;8809:24;8827:5;8809:24;:::i;:::-;8802:5;8799:35;8789:63;;8848:1;8845;8838:12;8789:63;8736:122;:::o;8864:139::-;8910:5;8948:6;8935:20;8926:29;;8964:33;8991:5;8964:33;:::i;:::-;8864:139;;;;:::o;9009:474::-;9077:6;9085;9134:2;9122:9;9113:7;9109:23;9105:32;9102:119;;;9140:79;;:::i;:::-;9102:119;9260:1;9285:53;9330:7;9321:6;9310:9;9306:22;9285:53;:::i;:::-;9275:63;;9231:117;9387:2;9413:53;9458:7;9449:6;9438:9;9434:22;9413:53;:::i;:::-;9403:63;;9358:118;9009:474;;;;;:::o;9489:101::-;9525:7;9565:18;9558:5;9554:30;9543:41;;9489:101;;;:::o;9596:120::-;9668:23;9685:5;9668:23;:::i;:::-;9661:5;9658:34;9648:62;;9706:1;9703;9696:12;9648:62;9596:120;:::o;9722:137::-;9767:5;9805:6;9792:20;9783:29;;9821:32;9847:5;9821:32;:::i;:::-;9722:137;;;;:::o;9865:327::-;9923:6;9972:2;9960:9;9951:7;9947:23;9943:32;9940:119;;;9978:79;;:::i;:::-;9940:119;10098:1;10123:52;10167:7;10158:6;10147:9;10143:22;10123:52;:::i;:::-;10113:62;;10069:116;9865:327;;;;:::o;10198:90::-;10232:7;10275:5;10268:13;10261:21;10250:32;;10198:90;;;:::o;10294:109::-;10375:21;10390:5;10375:21;:::i;:::-;10370:3;10363:34;10294:109;;:::o;10409:210::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10547:65;10609:1;10598:9;10594:17;10585:6;10547:65;:::i;:::-;10409:210;;;;:::o;10625:77::-;10662:7;10691:5;10680:16;;10625:77;;;:::o;10708:122::-;10781:24;10799:5;10781:24;:::i;:::-;10774:5;10771:35;10761:63;;10820:1;10817;10810:12;10761:63;10708:122;:::o;10836:139::-;10882:5;10920:6;10907:20;10898:29;;10936:33;10963:5;10936:33;:::i;:::-;10836:139;;;;:::o;10981:474::-;11049:6;11057;11106:2;11094:9;11085:7;11081:23;11077:32;11074:119;;;11112:79;;:::i;:::-;11074:119;11232:1;11257:53;11302:7;11293:6;11282:9;11278:22;11257:53;:::i;:::-;11247:63;;11203:117;11359:2;11385:53;11430:7;11421:6;11410:9;11406:22;11385:53;:::i;:::-;11375:63;;11330:118;10981:474;;;;;:::o;11461:329::-;11520:6;11569:2;11557:9;11548:7;11544:23;11540:32;11537:119;;;11575:79;;:::i;:::-;11537:119;11695:1;11720:53;11765:7;11756:6;11745:9;11741:22;11720:53;:::i;:::-;11710:63;;11666:117;11461:329;;;;:::o;11796:108::-;11873:24;11891:5;11873:24;:::i;:::-;11868:3;11861:37;11796:108;;:::o;11910:::-;11987:24;12005:5;11987:24;:::i;:::-;11982:3;11975:37;11910:108;;:::o;12024:99::-;12095:21;12110:5;12095:21;:::i;:::-;12090:3;12083:34;12024:99;;:::o;12129:109::-;12165:7;12205:26;12198:5;12194:38;12183:49;;12129:109;;;:::o;12244:105::-;12319:23;12336:5;12319:23;:::i;:::-;12314:3;12307:36;12244:105;;:::o;12409:1950::-;12552:6;12547:3;12543:16;12643:4;12636:5;12632:16;12626:23;12662:63;12719:4;12714:3;12710:14;12696:12;12662:63;:::i;:::-;12569:166;12818:4;12811:5;12807:16;12801:23;12837:63;12894:4;12889:3;12885:14;12871:12;12837:63;:::i;:::-;12745:165;13006:4;12999:5;12995:16;12989:23;13025:63;13082:4;13077:3;13073:14;13059:12;13025:63;:::i;:::-;12920:178;13185:4;13178:5;13174:16;13168:23;13204:63;13261:4;13256:3;13252:14;13238:12;13204:63;:::i;:::-;13108:169;13366:4;13359:5;13355:16;13349:23;13385:63;13442:4;13437:3;13433:14;13419:12;13385:63;:::i;:::-;13287:171;13547:4;13540:5;13536:16;13530:23;13566:57;13617:4;13612:3;13608:14;13594:12;13566:57;:::i;:::-;13468:165;13721:4;13714:5;13710:16;13704:23;13740:57;13791:4;13786:3;13782:14;13768:12;13740:57;:::i;:::-;13643:164;13898:4;13891:5;13887:16;13881:23;13917:63;13974:4;13969:3;13965:14;13951:12;13917:63;:::i;:::-;13817:173;14078:6;14071:5;14067:18;14061:25;14099:63;14154:6;14149:3;14145:16;14131:12;14099:63;:::i;:::-;14000:172;14256:6;14249:5;14245:18;14239:25;14277:65;14334:6;14329:3;14325:16;14311:12;14277:65;:::i;:::-;14182:170;12521:1838;12409:1950;;:::o;14365:315::-;14504:4;14542:3;14531:9;14527:19;14519:27;;14556:117;14670:1;14659:9;14655:17;14646:6;14556:117;:::i;:::-;14365:315;;;;:::o;14686:118::-;14773:24;14791:5;14773:24;:::i;:::-;14768:3;14761:37;14686:118;;:::o;14810:222::-;14903:4;14941:2;14930:9;14926:18;14918:26;;14954:71;15022:1;15011:9;15007:17;14998:6;14954:71;:::i;:::-;14810:222;;;;:::o;15038:115::-;15123:23;15140:5;15123:23;:::i;:::-;15118:3;15111:36;15038:115;;:::o;15159:118::-;15246:24;15264:5;15246:24;:::i;:::-;15241:3;15234:37;15159:118;;:::o;15283:328::-;15402:4;15440:2;15429:9;15425:18;15417:26;;15453:69;15519:1;15508:9;15504:17;15495:6;15453:69;:::i;:::-;15532:72;15600:2;15589:9;15585:18;15576:6;15532:72;:::i;:::-;15283:328;;;;;:::o;15705:531::-;15872:4;15867:3;15863:14;15959:4;15952:5;15948:16;15942:23;15978:63;16035:4;16030:3;16026:14;16012:12;15978:63;:::i;:::-;15887:164;16137:4;16130:5;16126:16;16120:23;16156:63;16213:4;16208:3;16204:14;16190:12;16156:63;:::i;:::-;16061:168;15841:395;15705:531;;:::o;16242:362::-;16405:4;16443:2;16432:9;16428:18;16420:26;;16456:141;16594:1;16583:9;16579:17;16570:6;16456:141;:::i;:::-;16242:362;;;;:::o;16610:619::-;16687:6;16695;16703;16752:2;16740:9;16731:7;16727:23;16723:32;16720:119;;;16758:79;;:::i;:::-;16720:119;16878:1;16903:53;16948:7;16939:6;16928:9;16924:22;16903:53;:::i;:::-;16893:63;;16849:117;17005:2;17031:53;17076:7;17067:6;17056:9;17052:22;17031:53;:::i;:::-;17021:63;;16976:118;17133:2;17159:53;17204:7;17195:6;17184:9;17180:22;17159:53;:::i;:::-;17149:63;;17104:118;16610:619;;;;;:::o;17235:120::-;17307:23;17324:5;17307:23;:::i;:::-;17300:5;17297:34;17287:62;;17345:1;17342;17335:12;17287:62;17235:120;:::o;17361:137::-;17406:5;17444:6;17431:20;17422:29;;17460:32;17486:5;17460:32;:::i;:::-;17361:137;;;;:::o;17504:117::-;17613:1;17610;17603:12;17641:553;17699:8;17709:6;17759:3;17752:4;17744:6;17740:17;17736:27;17726:122;;17767:79;;:::i;:::-;17726:122;17880:6;17867:20;17857:30;;17910:18;17902:6;17899:30;17896:117;;;17932:79;;:::i;:::-;17896:117;18046:4;18038:6;18034:17;18022:29;;18100:3;18092:4;18084:6;18080:17;18070:8;18066:32;18063:41;18060:128;;;18107:79;;:::i;:::-;18060:128;17641:553;;;;;:::o;18200:1547::-;18333:6;18341;18349;18357;18365;18373;18381;18389;18397;18446:3;18434:9;18425:7;18421:23;18417:33;18414:120;;;18453:79;;:::i;:::-;18414:120;18573:1;18598:53;18643:7;18634:6;18623:9;18619:22;18598:53;:::i;:::-;18588:63;;18544:117;18700:2;18726:53;18771:7;18762:6;18751:9;18747:22;18726:53;:::i;:::-;18716:63;;18671:118;18828:2;18854:53;18899:7;18890:6;18879:9;18875:22;18854:53;:::i;:::-;18844:63;;18799:118;18956:2;18982:52;19026:7;19017:6;19006:9;19002:22;18982:52;:::i;:::-;18972:62;;18927:117;19083:3;19110:53;19155:7;19146:6;19135:9;19131:22;19110:53;:::i;:::-;19100:63;;19054:119;19212:3;19239:53;19284:7;19275:6;19264:9;19260:22;19239:53;:::i;:::-;19229:63;;19183:119;19341:3;19368:53;19413:7;19404:6;19393:9;19389:22;19368:53;:::i;:::-;19358:63;;19312:119;19498:3;19487:9;19483:19;19470:33;19530:18;19522:6;19519:30;19516:117;;;19552:79;;:::i;:::-;19516:117;19665:65;19722:7;19713:6;19702:9;19698:22;19665:65;:::i;:::-;19647:83;;;;19441:299;18200:1547;;;;;;;;;;;:::o;19753:118::-;19840:24;19858:5;19840:24;:::i;:::-;19835:3;19828:37;19753:118;;:::o;19877:222::-;19970:4;20008:2;19997:9;19993:18;19985:26;;20021:71;20089:1;20078:9;20074:17;20065:6;20021:71;:::i;:::-;19877:222;;;;:::o;20105:763::-;20190:6;20198;20206;20214;20263:3;20251:9;20242:7;20238:23;20234:33;20231:120;;;20270:79;;:::i;:::-;20231:120;20390:1;20415:53;20460:7;20451:6;20440:9;20436:22;20415:53;:::i;:::-;20405:63;;20361:117;20517:2;20543:53;20588:7;20579:6;20568:9;20564:22;20543:53;:::i;:::-;20533:63;;20488:118;20645:2;20671:53;20716:7;20707:6;20696:9;20692:22;20671:53;:::i;:::-;20661:63;;20616:118;20773:2;20799:52;20843:7;20834:6;20823:9;20819:22;20799:52;:::i;:::-;20789:62;;20744:117;20105:763;;;;;;;:::o;20874:180::-;20922:77;20919:1;20912:88;21019:4;21016:1;21009:15;21043:4;21040:1;21033:15;21060:137;21150:6;21184:5;21178:12;21168:22;;21060:137;;;:::o;21203:182::-;21293:4;21316:3;21308:11;;21339:3;21336:1;21329:14;21373:4;21370:1;21360:18;21352:26;;21203:182;;;:::o;21391:102::-;21433:8;21480:5;21477:1;21473:13;21452:34;;21391:102;;;:::o;21499:90::-;21549:7;21578:5;21567:16;;21499:90;;;:::o;21595:166::-;21664:5;21689:66;21720:34;21743:10;21720:34;:::i;:::-;21689:66;:::i;:::-;21680:75;;21595:166;;;:::o;21843:689::-;21985:4;21980:3;21976:14;22016:1;22091:4;22084:5;22080:16;22074:23;22061:36;;22130:55;22175:9;22130:55;:::i;:::-;22198:63;22255:4;22250:3;22246:14;22232:12;22198:63;:::i;:::-;22027:244;22345:4;22338:5;22334:16;22328:23;22315:36;;22384:55;22429:9;22384:55;:::i;:::-;22452:63;22509:4;22504:3;22500:14;22486:12;22452:63;:::i;:::-;22281:244;21954:578;;21843:689;;:::o;22538:289::-;22662:10;22683:101;22780:3;22772:6;22683:101;:::i;:::-;22816:4;22811:3;22807:14;22793:28;;22538:289;;;;:::o;22833:136::-;22926:4;22958;22953:3;22949:14;22941:22;;22833:136;;;:::o;23055:930::-;23226:3;23255:77;23326:5;23255:77;:::i;:::-;23348:115;23456:6;23451:3;23348:115;:::i;:::-;23341:122;;23487:79;23560:5;23487:79;:::i;:::-;23589:7;23620:1;23605:355;23630:6;23627:1;23624:13;23605:355;;;23700:6;23726:118;23840:3;23825:13;23726:118;:::i;:::-;23719:125;;23867:83;23943:6;23867:83;:::i;:::-;23857:93;;23665:295;23652:1;23649;23645:9;23640:14;;23605:355;;;23609:14;23976:3;23969:10;;23231:754;;;23055:930;;;;:::o;23991:477::-;24186:4;24224:2;24213:9;24209:18;24201:26;;24273:9;24267:4;24263:20;24259:1;24248:9;24244:17;24237:47;24301:160;24456:4;24447:6;24301:160;:::i;:::-;24293:168;;23991:477;;;;:::o;24474:169::-;24558:11;24592:6;24587:3;24580:19;24632:4;24627:3;24623:14;24608:29;;24474:169;;;;:::o;24649:171::-;24789:23;24785:1;24777:6;24773:14;24766:47;24649:171;:::o;24826:366::-;24968:3;24989:67;25053:2;25048:3;24989:67;:::i;:::-;24982:74;;25065:93;25154:3;25065:93;:::i;:::-;25183:2;25178:3;25174:12;25167:19;;24826:366;;;:::o;25198:419::-;25364:4;25402:2;25391:9;25387:18;25379:26;;25451:9;25445:4;25441:20;25437:1;25426:9;25422:17;25415:47;25479:131;25605:4;25479:131;:::i;:::-;25471:139;;25198:419;;;:::o;25623:224::-;25763:34;25759:1;25751:6;25747:14;25740:58;25832:7;25827:2;25819:6;25815:15;25808:32;25623:224;:::o;25853:366::-;25995:3;26016:67;26080:2;26075:3;26016:67;:::i;:::-;26009:74;;26092:93;26181:3;26092:93;:::i;:::-;26210:2;26205:3;26201:12;26194:19;;25853:366;;;:::o;26225:419::-;26391:4;26429:2;26418:9;26414:18;26406:26;;26478:9;26472:4;26468:20;26464:1;26453:9;26449:17;26442:47;26506:131;26632:4;26506:131;:::i;:::-;26498:139;;26225:419;;;:::o;26650:226::-;26790:34;26786:1;26778:6;26774:14;26767:58;26859:9;26854:2;26846:6;26842:15;26835:34;26650:226;:::o;26882:366::-;27024:3;27045:67;27109:2;27104:3;27045:67;:::i;:::-;27038:74;;27121:93;27210:3;27121:93;:::i;:::-;27239:2;27234:3;27230:12;27223:19;;26882:366;;;:::o;27254:419::-;27420:4;27458:2;27447:9;27443:18;27435:26;;27507:9;27501:4;27497:20;27493:1;27482:9;27478:17;27471:47;27535:131;27661:4;27535:131;:::i;:::-;27527:139;;27254:419;;;:::o;27679:218::-;27770:4;27808:2;27797:9;27793:18;27785:26;;27821:69;27887:1;27876:9;27872:17;27863:6;27821:69;:::i;:::-;27679:218;;;;:::o;27903:164::-;28043:16;28039:1;28031:6;28027:14;28020:40;27903:164;:::o;28073:366::-;28215:3;28236:67;28300:2;28295:3;28236:67;:::i;:::-;28229:74;;28312:93;28401:3;28312:93;:::i;:::-;28430:2;28425:3;28421:12;28414:19;;28073:366;;;:::o;28445:419::-;28611:4;28649:2;28638:9;28634:18;28626:26;;28698:9;28692:4;28688:20;28684:1;28673:9;28669:17;28662:47;28726:131;28852:4;28726:131;:::i;:::-;28718:139;;28445:419;;;:::o;28870:164::-;29010:16;29006:1;28998:6;28994:14;28987:40;28870:164;:::o;29040:366::-;29182:3;29203:67;29267:2;29262:3;29203:67;:::i;:::-;29196:74;;29279:93;29368:3;29279:93;:::i;:::-;29397:2;29392:3;29388:12;29381:19;;29040:366;;;:::o;29412:419::-;29578:4;29616:2;29605:9;29601:18;29593:26;;29665:9;29659:4;29655:20;29651:1;29640:9;29636:17;29629:47;29693:131;29819:4;29693:131;:::i;:::-;29685:139;;29412:419;;;:::o;29837:163::-;29977:15;29973:1;29965:6;29961:14;29954:39;29837:163;:::o;30006:366::-;30148:3;30169:67;30233:2;30228:3;30169:67;:::i;:::-;30162:74;;30245:93;30334:3;30245:93;:::i;:::-;30363:2;30358:3;30354:12;30347:19;;30006:366;;;:::o;30378:419::-;30544:4;30582:2;30571:9;30567:18;30559:26;;30631:9;30625:4;30621:20;30617:1;30606:9;30602:17;30595:47;30659:131;30785:4;30659:131;:::i;:::-;30651:139;;30378:419;;;:::o;30803:171::-;30943:23;30939:1;30931:6;30927:14;30920:47;30803:171;:::o;30980:366::-;31122:3;31143:67;31207:2;31202:3;31143:67;:::i;:::-;31136:74;;31219:93;31308:3;31219:93;:::i;:::-;31337:2;31332:3;31328:12;31321:19;;30980:366;;;:::o;31352:419::-;31518:4;31556:2;31545:9;31541:18;31533:26;;31605:9;31599:4;31595:20;31591:1;31580:9;31576:17;31569:47;31633:131;31759:4;31633:131;:::i;:::-;31625:139;;31352:419;;;:::o;31777:332::-;31898:4;31936:2;31925:9;31921:18;31913:26;;31949:71;32017:1;32006:9;32002:17;31993:6;31949:71;:::i;:::-;32030:72;32098:2;32087:9;32083:18;32074:6;32030:72;:::i;:::-;31777:332;;;;;:::o;32115:116::-;32185:21;32200:5;32185:21;:::i;:::-;32178:5;32175:32;32165:60;;32221:1;32218;32211:12;32165:60;32115:116;:::o;32237:137::-;32291:5;32322:6;32316:13;32307:22;;32338:30;32362:5;32338:30;:::i;:::-;32237:137;;;;:::o;32380:345::-;32447:6;32496:2;32484:9;32475:7;32471:23;32467:32;32464:119;;;32502:79;;:::i;:::-;32464:119;32622:1;32647:61;32700:7;32691:6;32680:9;32676:22;32647:61;:::i;:::-;32637:71;;32593:125;32380:345;;;;:::o;32731:180::-;32779:77;32776:1;32769:88;32876:4;32873:1;32866:15;32900:4;32897:1;32890:15;32917:191;32957:3;32976:20;32994:1;32976:20;:::i;:::-;32971:25;;33010:20;33028:1;33010:20;:::i;:::-;33005:25;;33053:1;33050;33046:9;33039:16;;33074:3;33071:1;33068:10;33065:36;;;33081:18;;:::i;:::-;33065:36;32917:191;;;;:::o;33114:194::-;33154:4;33174:20;33192:1;33174:20;:::i;:::-;33169:25;;33208:20;33226:1;33208:20;:::i;:::-;33203:25;;33252:1;33249;33245:9;33237:17;;33276:1;33270:4;33267:11;33264:37;;;33281:18;;:::i;:::-;33264:37;33114:194;;;;:::o;33314:222::-;33407:4;33445:2;33434:9;33430:18;33422:26;;33458:71;33526:1;33515:9;33511:17;33502:6;33458:71;:::i;:::-;33314:222;;;;:::o;33542:228::-;33682:34;33678:1;33670:6;33666:14;33659:58;33751:11;33746:2;33738:6;33734:15;33727:36;33542:228;:::o;33776:366::-;33918:3;33939:67;34003:2;33998:3;33939:67;:::i;:::-;33932:74;;34015:93;34104:3;34015:93;:::i;:::-;34133:2;34128:3;34124:12;34117:19;;33776:366;;;:::o;34148:419::-;34314:4;34352:2;34341:9;34337:18;34329:26;;34401:9;34395:4;34391:20;34387:1;34376:9;34372:17;34365:47;34429:131;34555:4;34429:131;:::i;:::-;34421:139;;34148:419;;;:::o;34573:233::-;34713:34;34709:1;34701:6;34697:14;34690:58;34782:16;34777:2;34769:6;34765:15;34758:41;34573:233;:::o;34812:366::-;34954:3;34975:67;35039:2;35034:3;34975:67;:::i;:::-;34968:74;;35051:93;35140:3;35051:93;:::i;:::-;35169:2;35164:3;35160:12;35153:19;;34812:366;;;:::o;35184:419::-;35350:4;35388:2;35377:9;35373:18;35365:26;;35437:9;35431:4;35427:20;35423:1;35412:9;35408:17;35401:47;35465:131;35591:4;35465:131;:::i;:::-;35457:139;;35184:419;;;:::o;35609:85::-;35654:7;35683:5;35672:16;;35609:85;;;:::o;35700:86::-;35735:7;35775:4;35768:5;35764:16;35753:27;;35700:86;;;:::o;35792:60::-;35820:3;35841:5;35834:12;;35792:60;;;:::o;35858:154::-;35914:9;35947:59;35963:42;35972:32;35998:5;35972:32;:::i;:::-;35963:42;:::i;:::-;35947:59;:::i;:::-;35934:72;;35858:154;;;:::o;36018:143::-;36111:43;36148:5;36111:43;:::i;:::-;36106:3;36099:56;36018:143;;:::o;36167:234::-;36266:4;36304:2;36293:9;36289:18;36281:26;;36317:77;36391:1;36380:9;36376:17;36367:6;36317:77;:::i;:::-;36167:234;;;;:::o;36407:173::-;36547:25;36543:1;36535:6;36531:14;36524:49;36407:173;:::o;36586:366::-;36728:3;36749:67;36813:2;36808:3;36749:67;:::i;:::-;36742:74;;36825:93;36914:3;36825:93;:::i;:::-;36943:2;36938:3;36934:12;36927:19;;36586:366;;;:::o;36958:419::-;37124:4;37162:2;37151:9;37147:18;37139:26;;37211:9;37205:4;37201:20;37197:1;37186:9;37182:17;37175:47;37239:131;37365:4;37239:131;:::i;:::-;37231:139;;36958:419;;;:::o;37383:168::-;37523:20;37519:1;37511:6;37507:14;37500:44;37383:168;:::o;37557:366::-;37699:3;37720:67;37784:2;37779:3;37720:67;:::i;:::-;37713:74;;37796:93;37885:3;37796:93;:::i;:::-;37914:2;37909:3;37905:12;37898:19;;37557:366;;;:::o;37929:419::-;38095:4;38133:2;38122:9;38118:18;38110:26;;38182:9;38176:4;38172:20;38168:1;38157:9;38153:17;38146:47;38210:131;38336:4;38210:131;:::i;:::-;38202:139;;37929:419;;;:::o;38354:442::-;38503:4;38541:2;38530:9;38526:18;38518:26;;38554:71;38622:1;38611:9;38607:17;38598:6;38554:71;:::i;:::-;38635:72;38703:2;38692:9;38688:18;38679:6;38635:72;:::i;:::-;38717;38785:2;38774:9;38770:18;38761:6;38717:72;:::i;:::-;38354:442;;;;;;:::o;38802:233::-;38841:3;38864:24;38882:5;38864:24;:::i;:::-;38855:33;;38910:66;38903:5;38900:77;38897:103;;38980:18;;:::i;:::-;38897:103;39027:1;39020:5;39016:13;39009:20;;38802:233;;;:::o;39041:410::-;39081:7;39104:20;39122:1;39104:20;:::i;:::-;39099:25;;39138:20;39156:1;39138:20;:::i;:::-;39133:25;;39193:1;39190;39186:9;39215:30;39233:11;39215:30;:::i;:::-;39204:41;;39394:1;39385:7;39381:15;39378:1;39375:22;39355:1;39348:9;39328:83;39305:139;;39424:18;;:::i;:::-;39305:139;39089:362;39041:410;;;;:::o;39457:180::-;39505:77;39502:1;39495:88;39602:4;39599:1;39592:15;39626:4;39623:1;39616:15;39643:185;39683:1;39700:20;39718:1;39700:20;:::i;:::-;39695:25;;39734:20;39752:1;39734:20;:::i;:::-;39729:25;;39773:1;39763:35;;39778:18;;:::i;:::-;39763:35;39820:1;39817;39813:9;39808:14;;39643:185;;;;:::o;39834:140::-;39883:9;39916:52;39934:33;39943:23;39960:5;39943:23;:::i;:::-;39934:33;:::i;:::-;39916:52;:::i;:::-;39903:65;;39834:140;;;:::o;39980:129::-;40066:36;40096:5;40066:36;:::i;:::-;40061:3;40054:49;39980:129;;:::o;40115:146::-;40212:6;40207:3;40202;40189:30;40253:1;40244:6;40239:3;40235:16;40228:27;40115:146;;;:::o;40291:317::-;40389:3;40410:71;40474:6;40469:3;40410:71;:::i;:::-;40403:78;;40491:56;40540:6;40535:3;40528:5;40491:56;:::i;:::-;40572:29;40594:6;40572:29;:::i;:::-;40567:3;40563:39;40556:46;;40291:317;;;;;:::o;40614:773::-;40848:4;40886:3;40875:9;40871:19;40863:27;;40900:71;40968:1;40957:9;40953:17;40944:6;40900:71;:::i;:::-;40981:72;41049:2;41038:9;41034:18;41025:6;40981:72;:::i;:::-;41063:71;41130:2;41119:9;41115:18;41106:6;41063:71;:::i;:::-;41144:72;41212:2;41201:9;41197:18;41188:6;41144:72;:::i;:::-;41264:9;41258:4;41254:20;41248:3;41237:9;41233:19;41226:49;41292:88;41375:4;41366:6;41358;41292:88;:::i;:::-;41284:96;;40614:773;;;;;;;;;:::o;41393:216::-;41432:4;41452:19;41469:1;41452:19;:::i;:::-;41447:24;;41485:19;41502:1;41485:19;:::i;:::-;41480:24;;41528:1;41525;41521:9;41513:17;;41552:26;41546:4;41543:36;41540:62;;;41582:18;;:::i;:::-;41540:62;41393:216;;;;:::o;41615:138::-;41663:9;41696:51;41713:33;41722:23;41739:5;41722:23;:::i;:::-;41713:33;:::i;:::-;41696:51;:::i;:::-;41683:64;;41615:138;;;:::o;41759:127::-;41844:35;41873:5;41844:35;:::i;:::-;41839:3;41832:48;41759:127;;:::o;41892:328::-;42011:4;42049:2;42038:9;42034:18;42026:26;;42062:71;42130:1;42119:9;42115:17;42106:6;42062:71;:::i;:::-;42143:70;42209:2;42198:9;42194:18;42185:6;42143:70;:::i;:::-;41892:328;;;;;:::o;42226:182::-;42366:34;42362:1;42354:6;42350:14;42343:58;42226:182;:::o;42414:366::-;42556:3;42577:67;42641:2;42636:3;42577:67;:::i;:::-;42570:74;;42653:93;42742:3;42653:93;:::i;:::-;42771:2;42766:3;42762:12;42755:19;;42414:366;;;:::o;42786:419::-;42952:4;42990:2;42979:9;42975:18;42967:26;;43039:9;43033:4;43029:20;43025:1;43014:9;43010:17;43003:47;43067:131;43193:4;43067:131;:::i;:::-;43059:139;;42786:419;;;:::o;43211:230::-;43351:34;43347:1;43339:6;43335:14;43328:58;43420:13;43415:2;43407:6;43403:15;43396:38;43211:230;:::o;43447:366::-;43589:3;43610:67;43674:2;43669:3;43610:67;:::i;:::-;43603:74;;43686:93;43775:3;43686:93;:::i;:::-;43804:2;43799:3;43795:12;43788:19;;43447:366;;;:::o;43819:419::-;43985:4;44023:2;44012:9;44008:18;44000:26;;44072:9;44066:4;44062:20;44058:1;44047:9;44043:17;44036:47;44100:131;44226:4;44100:131;:::i;:::-;44092:139;;43819:419;;;:::o;44244:166::-;44384:18;44380:1;44372:6;44368:14;44361:42;44244:166;:::o;44416:366::-;44558:3;44579:67;44643:2;44638:3;44579:67;:::i;:::-;44572:74;;44655:93;44744:3;44655:93;:::i;:::-;44773:2;44768:3;44764:12;44757:19;;44416:366;;;:::o;44788:419::-;44954:4;44992:2;44981:9;44977:18;44969:26;;45041:9;45035:4;45031:20;45027:1;45016:9;45012:17;45005:47;45069:131;45195:4;45069:131;:::i;:::-;45061:139;;44788:419;;;:::o;45213:167::-;45353:19;45349:1;45341:6;45337:14;45330:43;45213:167;:::o;45386:366::-;45528:3;45549:67;45613:2;45608:3;45549:67;:::i;:::-;45542:74;;45625:93;45714:3;45625:93;:::i;:::-;45743:2;45738:3;45734:12;45727:19;;45386:366;;;:::o;45758:419::-;45924:4;45962:2;45951:9;45947:18;45939:26;;46011:9;46005:4;46001:20;45997:1;45986:9;45982:17;45975:47;46039:131;46165:4;46039:131;:::i;:::-;46031:139;;45758:419;;;:::o;46183:162::-;46323:14;46319:1;46311:6;46307:14;46300:38;46183:162;:::o;46351:366::-;46493:3;46514:67;46578:2;46573:3;46514:67;:::i;:::-;46507:74;;46590:93;46679:3;46590:93;:::i;:::-;46708:2;46703:3;46699:12;46692:19;;46351:366;;;:::o;46723:419::-;46889:4;46927:2;46916:9;46912:18;46904:26;;46976:9;46970:4;46966:20;46962:1;46951:9;46947:17;46940:47;47004:131;47130:4;47004:131;:::i;:::-;46996:139;;46723:419;;;:::o;47148:166::-;47288:18;47284:1;47276:6;47272:14;47265:42;47148:166;:::o;47320:366::-;47462:3;47483:67;47547:2;47542:3;47483:67;:::i;:::-;47476:74;;47559:93;47648:3;47559:93;:::i;:::-;47677:2;47672:3;47668:12;47661:19;;47320:366;;;:::o;47692:419::-;47858:4;47896:2;47885:9;47881:18;47873:26;;47945:9;47939:4;47935:20;47931:1;47920:9;47916:17;47909:47;47973:131;48099:4;47973:131;:::i;:::-;47965:139;;47692:419;;;:::o;48117:175::-;48257:27;48253:1;48245:6;48241:14;48234:51;48117:175;:::o;48298:366::-;48440:3;48461:67;48525:2;48520:3;48461:67;:::i;:::-;48454:74;;48537:93;48626:3;48537:93;:::i;:::-;48655:2;48650:3;48646:12;48639:19;;48298:366;;;:::o;48670:419::-;48836:4;48874:2;48863:9;48859:18;48851:26;;48923:9;48917:4;48913:20;48909:1;48898:9;48894:17;48887:47;48951:131;49077:4;48951:131;:::i;:::-;48943:139;;48670:419;;;:::o;49095:170::-;49235:22;49231:1;49223:6;49219:14;49212:46;49095:170;:::o;49271:366::-;49413:3;49434:67;49498:2;49493:3;49434:67;:::i;:::-;49427:74;;49510:93;49599:3;49510:93;:::i;:::-;49628:2;49623:3;49619:12;49612:19;;49271:366;;;:::o;49643:419::-;49809:4;49847:2;49836:9;49832:18;49824:26;;49896:9;49890:4;49886:20;49882:1;49871:9;49867:17;49860:47;49924:131;50050:4;49924:131;:::i;:::-;49916:139;;49643:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"3299800","executionCost":"infinite","totalCost":"infinite"},"external":{"acceptOwnership()":"54681","createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":"infinite","getFeeDetails()":"4804","getOrderInfo(bytes32)":"infinite","getSupportedInstitutionByCode(bytes32)":"infinite","getSupportedInstitutions(bytes32)":"infinite","initialize()":"191278","isTokenSupported(address)":"2970","owner()":"2611","pause()":"infinite","paused()":"2502","pendingOwner()":"2610","refund(uint256,bytes32)":"infinite","renounceOwnership()":"54714","setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","settle(bytes32,bytes32,address,uint64)":"infinite","transferOwnership(address)":"infinite","unpause()":"infinite","updateProtocolAddress(bytes32,address)":"31161","updateProtocolFee(uint64)":"infinite"},"internal":{"_handler(address,uint256,address,address,uint256)":"infinite"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":"d12ff20a","getFeeDetails()":"b810c636","getOrderInfo(bytes32)":"768c6ec0","getSupportedInstitutionByCode(bytes32)":"c2280103","getSupportedInstitutions(bytes32)":"02621338","initialize()":"8129fc1c","isTokenSupported(address)":"75151b63","owner()":"8da5cb5b","pause()":"8456cb59","paused()":"5c975abb","pendingOwner()":"e30c3978","refund(uint256,bytes32)":"71eedb88","renounceOwnership()":"715018a6","setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":"32200882","settingManagerBool(bytes32,address,uint256)":"cd992400","settle(bytes32,bytes32,address,uint64)":"f22ee704","transferOwnership(address)":"f2fde38b","unpause()":"3f4ba83a","updateProtocolAddress(bytes32,address)":"40ebc677","updateProtocolFee(uint64)":"47094e2e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"institutionCode\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"settlePercent\",\"type\":\"uint96\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"protocolFee\",\"type\":\"uint64\"}],\"name\":\"ProtocolFeeUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"indexed\":false,\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"institutions\",\"type\":\"tuple[]\"}],\"name\":\"SupportedInstitutionsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_institutionCode\",\"type\":\"bytes32\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getFeeDetails\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_code\",\"type\":\"bytes32\"}],\"name\":\"getSupportedInstitutionByCode\",\"outputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.InstitutionByCode\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_currency\",\"type\":\"bytes32\"}],\"name\":\"getSupportedInstitutions\",\"outputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"institutions\",\"type\":\"tuple[]\"}],\"name\":\"setSupportedInstitutions\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_protocolFeePercent\",\"type\":\"uint64\"}],\"name\":\"updateProtocolFee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"institutionCode\":\"The code of the institution.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint96)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)\":{\"details\":\"See {createOrder-IGateway}. \"},\"getFeeDetails()\":{\"details\":\"See {getFeeDetails-IGateway}. \"},\"getOrderInfo(bytes32)\":{\"details\":\"See {getOrderInfo-IGateway}. \"},\"getSupportedInstitutionByCode(bytes32)\":{\"details\":\"See {getSupportedInstitutionByCode-IGateway}. \"},\"getSupportedInstitutions(bytes32)\":{\"details\":\"See {getSupportedInstitutions-IGateway}. \"},\"initialize()\":{\"details\":\"Initialize function.\"},\"isTokenSupported(address)\":{\"details\":\"See {isTokenSupported-IGateway}. \"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"Pause the contract.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"refund(uint256,bytes32)\":{\"details\":\"See {refund-IGateway}. \"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"setSupportedInstitutions(bytes32,(bytes32,bytes32)[])\":{\"details\":\"Sets the supported institutions for a specific currency.\",\"params\":{\"currency\":\"The currency for which the institutions are being set.\",\"institutions\":\"The array of institutions to be set.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"settle(bytes32,bytes32,address,uint64)\":{\"details\":\"See {settle-IGateway}. \"},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner.\"},\"unpause()\":{\"details\":\"Unpause the contract.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}},\"updateProtocolFee(uint64)\":{\"details\":\"Updates the protocol fee percentage.\",\"params\":{\"_protocolFeePercent\":\"The new protocol fee percentage to be set.\"}}},\"title\":\"Gateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"This contract serves as a gateway for creating orders and managing settlements.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Gateway.sol\":\"Gateway\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership} and {acceptOwnership}.\\n *\\n * This module is used through inheritance. It will make available all functions\\n * from parent (Ownable).\\n */\\nabstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/Gateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\\n\\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\\nimport {IGateway, IERC20} from './interfaces/IGateway.sol';\\nimport {SharedStructs} from './libraries/SharedStructs.sol';\\n\\n/**\\n * @title Gateway\\n * @notice This contract serves as a gateway for creating orders and managing settlements.\\n */\\ncontract Gateway is IGateway, GatewaySettingManager, PausableUpgradeable {\\n\\tstruct fee {\\n\\t\\tuint256 protocolFee;\\n\\t\\tuint256 liquidityProviderAmount;\\n\\t}\\n\\n\\tmapping(bytes32 => Order) private order;\\n\\tmapping(address => uint256) private _nonce;\\n\\tuint256[50] private __gap;\\n\\n\\t/// @custom:oz-upgrades-unsafe-allow constructor\\n\\tconstructor() {\\n\\t\\t_disableInitializers();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Initialize function.\\n\\t */\\n\\tfunction initialize() external initializer {\\n\\t\\tMAX_BPS = 100_000;\\n\\t\\t__Ownable2Step_init();\\n\\t\\t__Pausable_init();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Modifier that allows only the aggregator to call a function.\\n\\t */\\n\\tmodifier onlyAggregator() {\\n\\t\\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\\n\\t\\t_;\\n\\t}\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Pause the contract.\\n\\t */\\n\\tfunction pause() external onlyOwner {\\n\\t\\t_pause();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Unpause the contract.\\n\\t */\\n\\tfunction unpause() external onlyOwner {\\n\\t\\t_unpause();\\n\\t}\\n\\n\\t/* ##################################################################\\n USER CALLS\\n ################################################################## */\\n\\t/** @dev See {createOrder-IGateway}. */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tbytes32 _institutionCode,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external whenNotPaused returns (bytes32 orderId) {\\n\\t\\t// checks that are required\\n\\t\\t_handler(_token, _amount, _refundAddress, _senderFeeRecipient, _senderFee);\\n\\n\\t\\t// validate messageHash\\n\\t\\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\\n\\n\\t\\t// transfer token from msg.sender to contract\\n\\t\\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\\n\\n\\t\\t// increase users nonce to avoid replay attacks\\n\\t\\t_nonce[msg.sender]++;\\n\\n\\t\\t// generate transaction id for the transaction\\n\\t\\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender]));\\n\\n\\t\\t// update transaction\\n\\t\\tuint256 _protocolFee = (_amount * protocolFeePercent) / MAX_BPS;\\n\\t\\torder[orderId] = Order({\\n\\t\\t\\tsender: msg.sender,\\n\\t\\t\\ttoken: _token,\\n\\t\\t\\tsenderFeeRecipient: _senderFeeRecipient,\\n\\t\\t\\tsenderFee: _senderFee,\\n\\t\\t\\tprotocolFee: _protocolFee,\\n\\t\\t\\tisFulfilled: false,\\n\\t\\t\\tisRefunded: false,\\n\\t\\t\\trefundAddress: _refundAddress,\\n\\t\\t\\tcurrentBPS: uint64(MAX_BPS),\\n\\t\\t\\tamount: _amount - _protocolFee\\n\\t\\t});\\n\\n\\t\\t// emit order created event\\n\\t\\temit OrderCreated(\\n\\t\\t\\torder[orderId].sender,\\n\\t\\t\\t_token,\\n\\t\\t\\torder[orderId].amount,\\n\\t\\t\\t_protocolFee,\\n\\t\\t\\torderId,\\n\\t\\t\\t_rate,\\n\\t\\t\\t_institutionCode,\\n\\t\\t\\tmessageHash\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Internal function to handle order creation.\\n\\t * @param _token The address of the token being traded.\\n\\t * @param _amount The amount of tokens being traded.\\n\\t * @param _refundAddress The address to refund the tokens in case of cancellation.\\n\\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\\n\\t * @param _senderFee The amount of the sender fee.\\n\\t */\\n\\tfunction _handler(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\taddress _refundAddress,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee\\n\\t) internal view {\\n\\t\\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\\n\\t\\trequire(_amount != 0, 'AmountIsZero');\\n\\t\\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\\n\\n\\t\\tif (_senderFee != 0) {\\n\\t\\t\\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\\n\\t\\t}\\n\\t}\\n\\n\\t/* ##################################################################\\n AGGREGATOR FUNCTIONS\\n ################################################################## */\\n\\t/** @dev See {settle-IGateway}. */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\n\\t\\t// load the token into memory\\n\\t\\taddress token = order[_orderId].token;\\n\\n\\t\\t// subtract sum of amount based on the input _settlePercent\\n\\t\\torder[_orderId].currentBPS -= _settlePercent;\\n\\n\\t\\tif (order[_orderId].currentBPS == 0) {\\n\\t\\t\\t// update the transaction to be fulfilled\\n\\t\\t\\torder[_orderId].isFulfilled = true;\\n\\n\\t\\t\\tif (order[_orderId].senderFee != 0) {\\n\\t\\t\\t\\t// transfer sender fee\\n\\t\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\t\\torder[_orderId].senderFee\\n\\t\\t\\t\\t);\\n\\n\\t\\t\\t\\t// emit event\\n\\t\\t\\t\\temit SenderFeeTransferred(\\n\\t\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\t\\torder[_orderId].senderFee\\n\\t\\t\\t\\t);\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (order[_orderId].protocolFee != 0) {\\n\\t\\t\\t\\t// transfer protocol fee\\n\\t\\t\\t\\tIERC20(token).transfer(treasuryAddress, order[_orderId].protocolFee);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// transfer to liquidity provider\\n\\t\\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / MAX_BPS;\\n\\t\\torder[_orderId].amount -= liquidityProviderAmount;\\n\\t\\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\\n\\n\\t\\t// emit settled event\\n\\t\\temit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/** @dev See {refund-IGateway}. */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\t\\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\\n\\n\\t\\t// transfer refund fee to the treasury\\n\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\\n\\n\\t\\t// reset state values\\n\\t\\torder[_orderId].isRefunded = true;\\n\\t\\torder[_orderId].currentBPS = 0;\\n\\n\\t\\t// deduct fee from order amount\\n\\t\\tuint256 refundAmount = order[_orderId].amount + order[_orderId].protocolFee - _fee;\\n\\n\\t\\t// transfer refund amount and sender fee to the refund address\\n\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\torder[_orderId].refundAddress,\\n\\t\\t\\trefundAmount + order[_orderId].senderFee\\n\\t\\t);\\n\\n\\t\\t// emit refunded event\\n\\t\\temit OrderRefunded(_fee, _orderId);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/* ##################################################################\\n VIEW CALLS\\n ################################################################## */\\n\\t/** @dev See {getOrderInfo-IGateway}. */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\\n\\t\\treturn order[_orderId];\\n\\t}\\n\\n\\t/** @dev See {isTokenSupported-IGateway}. */\\n\\tfunction isTokenSupported(address _token) external view returns (bool) {\\n\\t\\tif (_isTokenSupported[_token] == 1) return true;\\n\\t\\treturn false;\\n\\t}\\n\\n\\t/** @dev See {getSupportedInstitutionByCode-IGateway}. */\\n\\tfunction getSupportedInstitutionByCode(\\n\\t\\tbytes32 _code\\n\\t) external view returns (SharedStructs.InstitutionByCode memory) {\\n\\t\\treturn supportedInstitutionsByCode[_code];\\n\\t}\\n\\n\\t/** @dev See {getSupportedInstitutions-IGateway}. */\\n\\tfunction getSupportedInstitutions(\\n\\t\\tbytes32 _currency\\n\\t) external view returns (SharedStructs.Institution[] memory) {\\n\\t\\treturn supportedInstitutions[_currency];\\n\\t}\\n\\n\\t/** @dev See {getFeeDetails-IGateway}. */\\n\\tfunction getFeeDetails() external view returns (uint64, uint256) {\\n\\t\\treturn (protocolFeePercent, MAX_BPS);\\n\\t}\\n}\\n\",\"keccak256\":\"0xaa729b847614f6478fd6b30d1097627c331ff6e44dfdda23d769e534468979bd\",\"license\":\"UNLICENSED\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\nimport {SharedStructs} from './libraries/SharedStructs.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\n\\t// this should decrease if more slots are needed on this contract to avoid collisions with base contract\\n\\tuint256[50] private __gap;\\n\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\tmapping(bytes32 => SharedStructs.Institution[]) internal supportedInstitutions;\\n\\tmapping(bytes32 => SharedStructs.InstitutionByCode) internal supportedInstitutionsByCode;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent SupportedInstitutionsUpdated(\\n\\t\\tbytes32 indexed currency,\\n\\t\\tSharedStructs.Institution[] institutions\\n\\t);\\n\\tevent ProtocolFeeUpdated(uint64 protocolFee);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets the supported institutions for a specific currency.\\n\\t * @param currency The currency for which the institutions are being set.\\n\\t * @param institutions The array of institutions to be set.\\n\\t */\\n\\tfunction setSupportedInstitutions(\\n\\t\\tbytes32 currency,\\n\\t\\tSharedStructs.Institution[] memory institutions\\n\\t) external onlyOwner {\\n\\t\\tdelete supportedInstitutions[currency];\\n\\t\\tfor (uint i; i < institutions.length; ) {\\n\\t\\t\\tsupportedInstitutions[currency].push(institutions[i]);\\n\\t\\t\\tsupportedInstitutionsByCode[institutions[i].code] = SharedStructs.InstitutionByCode({\\n\\t\\t\\t\\tname: institutions[i].name,\\n\\t\\t\\t\\tcurrency: currency\\n\\t\\t\\t});\\n\\t\\t\\tunchecked {\\n\\t\\t\\t\\t++i;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\temit SupportedInstitutionsUpdated(currency, supportedInstitutions[currency]);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates the protocol fee percentage.\\n\\t * @param _protocolFeePercent The new protocol fee percentage to be set.\\n\\t */\\n\\tfunction updateProtocolFee(uint64 _protocolFeePercent) external onlyOwner {\\n\\t\\tprotocolFeePercent = _protocolFeePercent;\\n\\t\\temit ProtocolFeeUpdated(_protocolFeePercent);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n}\\n\",\"keccak256\":\"0x7bf3fc733cbf8f2815924c2f10199aa0836d3b5d5b5b92b10cd4855d65773477\",\"license\":\"UNLICENSED\"},\"contracts/interfaces/IGateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\nimport {SharedStructs} from '../libraries/SharedStructs.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGateway {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param institutionCode The code of the institution.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tbytes32 institutionCode,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint96 settlePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing transaction metadata.\\n\\t * @param identifier The identifier of the transaction.\\n\\t * @param institution The institution of the transaction.\\n\\t * @param name The name of the transaction.\\n\\t * @param currency The currency of the transaction.\\n\\t * @param liquidityProviderID The ID of the liquidity provider.\\n\\t */\\n\\tstruct TransactionMetadata {\\n\\t\\tbytes8 identifier;\\n\\t\\tbytes8 institution;\\n\\t\\tbytes8 name;\\n\\t\\tbytes8 currency;\\n\\t\\tuint256 liquidityProviderID;\\n\\t}\\n\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _institutionCode The institution code of the sender.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tbytes32 _institutionCode,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n\\n\\t/**\\n\\t * @notice Gets the fee details of Gateway.\\n\\t * @return protocolReward The protocol reward amount.\\n\\t * @return max_bps The maximum basis points.\\n\\t */\\n\\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\\n\\n\\t/**\\n\\t * @notice Gets the details of a supported institution by code.\\n\\t * @param _code The institution code.\\n\\t * @return InstitutionByCode The institution details.\\n\\t */\\n\\tfunction getSupportedInstitutionByCode(\\n\\t\\tbytes32 _code\\n\\t) external view returns (SharedStructs.InstitutionByCode memory);\\n\\n\\t/**\\n\\t * @notice Gets the details of supported institutions by currency.\\n\\t * @param _currency The currency code.\\n\\t * @return Institutions An array of institutions.\\n\\t */\\n\\tfunction getSupportedInstitutions(\\n\\t\\tbytes32 _currency\\n\\t) external view returns (SharedStructs.Institution[] memory);\\n}\\n\",\"keccak256\":\"0x77ba391c63b01a9fd7bf719379efe762a15566708694c52f62dcb4731d3f4821\",\"license\":\"UNLICENSED\"},\"contracts/libraries/SharedStructs.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nlibrary SharedStructs {\\n /**\\n * @dev Struct representing an institution.\\n * @param code The code of the institution.\\n * @param name The name of the institution.\\n */\\n struct Institution {\\n bytes32 code;\\n bytes32 name;\\n }\\n\\n /**\\n * @dev Struct representing an institution by code.\\n * @param name The name of the institution.\\n * @param currency The currency of the institution.\\n */\\n struct InstitutionByCode {\\n bytes32 name;\\n bytes32 currency;\\n }\\n}\",\"keccak256\":\"0x6c50c51961ec2a2740e0f3cbfc2bdb7b80a5c728dec92ebb98d84893ac8adb5a\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/Gateway.sol:Gateway","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/Gateway.sol:Gateway","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/Gateway.sol:Gateway","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/Gateway.sol:Gateway","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":2260,"contract":"contracts/Gateway.sol:Gateway","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":2262,"contract":"contracts/Gateway.sol:Gateway","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":2264,"contract":"contracts/Gateway.sol:Gateway","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":2266,"contract":"contracts/Gateway.sol:Gateway","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":2270,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"154","type":"t_array(t_uint256)50_storage"},{"astId":2274,"contract":"contracts/Gateway.sol:Gateway","label":"_isTokenSupported","offset":0,"slot":"204","type":"t_mapping(t_address,t_uint256)"},{"astId":2280,"contract":"contracts/Gateway.sol:Gateway","label":"supportedInstitutions","offset":0,"slot":"205","type":"t_mapping(t_bytes32,t_array(t_struct(Institution)3449_storage)dyn_storage)"},{"astId":2285,"contract":"contracts/Gateway.sol:Gateway","label":"supportedInstitutionsByCode","offset":0,"slot":"206","type":"t_mapping(t_bytes32,t_struct(InstitutionByCode)3454_storage)"},{"astId":430,"contract":"contracts/Gateway.sol:Gateway","label":"_paused","offset":0,"slot":"207","type":"t_bool"},{"astId":535,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"208","type":"t_array(t_uint256)49_storage"},{"astId":1664,"contract":"contracts/Gateway.sol:Gateway","label":"order","offset":0,"slot":"257","type":"t_mapping(t_bytes32,t_struct(Order)3196_storage)"},{"astId":1668,"contract":"contracts/Gateway.sol:Gateway","label":"_nonce","offset":0,"slot":"258","type":"t_mapping(t_address,t_uint256)"},{"astId":1672,"contract":"contracts/Gateway.sol:Gateway","label":"__gap","offset":0,"slot":"259","type":"t_array(t_uint256)50_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_struct(Institution)3449_storage)dyn_storage":{"base":"t_struct(Institution)3449_storage","encoding":"dynamic_array","label":"struct SharedStructs.Institution[]","numberOfBytes":"32"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_bytes32,t_array(t_struct(Institution)3449_storage)dyn_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct SharedStructs.Institution[])","numberOfBytes":"32","value":"t_array(t_struct(Institution)3449_storage)dyn_storage"},"t_mapping(t_bytes32,t_struct(InstitutionByCode)3454_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct SharedStructs.InstitutionByCode)","numberOfBytes":"32","value":"t_struct(InstitutionByCode)3454_storage"},"t_mapping(t_bytes32,t_struct(Order)3196_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct IGateway.Order)","numberOfBytes":"32","value":"t_struct(Order)3196_storage"},"t_struct(Institution)3449_storage":{"encoding":"inplace","label":"struct SharedStructs.Institution","members":[{"astId":3446,"contract":"contracts/Gateway.sol:Gateway","label":"code","offset":0,"slot":"0","type":"t_bytes32"},{"astId":3448,"contract":"contracts/Gateway.sol:Gateway","label":"name","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_struct(InstitutionByCode)3454_storage":{"encoding":"inplace","label":"struct SharedStructs.InstitutionByCode","members":[{"astId":3451,"contract":"contracts/Gateway.sol:Gateway","label":"name","offset":0,"slot":"0","type":"t_bytes32"},{"astId":3453,"contract":"contracts/Gateway.sol:Gateway","label":"currency","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_struct(Order)3196_storage":{"encoding":"inplace","label":"struct IGateway.Order","members":[{"astId":3177,"contract":"contracts/Gateway.sol:Gateway","label":"sender","offset":0,"slot":"0","type":"t_address"},{"astId":3179,"contract":"contracts/Gateway.sol:Gateway","label":"token","offset":0,"slot":"1","type":"t_address"},{"astId":3181,"contract":"contracts/Gateway.sol:Gateway","label":"senderFeeRecipient","offset":0,"slot":"2","type":"t_address"},{"astId":3183,"contract":"contracts/Gateway.sol:Gateway","label":"senderFee","offset":0,"slot":"3","type":"t_uint256"},{"astId":3185,"contract":"contracts/Gateway.sol:Gateway","label":"protocolFee","offset":0,"slot":"4","type":"t_uint256"},{"astId":3187,"contract":"contracts/Gateway.sol:Gateway","label":"isFulfilled","offset":0,"slot":"5","type":"t_bool"},{"astId":3189,"contract":"contracts/Gateway.sol:Gateway","label":"isRefunded","offset":1,"slot":"5","type":"t_bool"},{"astId":3191,"contract":"contracts/Gateway.sol:Gateway","label":"refundAddress","offset":2,"slot":"5","type":"t_address"},{"astId":3193,"contract":"contracts/Gateway.sol:Gateway","label":"currentBPS","offset":0,"slot":"6","type":"t_uint96"},{"astId":3195,"contract":"contracts/Gateway.sol:Gateway","label":"amount","offset":0,"slot":"7","type":"t_uint256"}],"numberOfBytes":"256"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"},"t_uint96":{"encoding":"inplace","label":"uint96","numberOfBytes":"12"}}},"userdoc":{"kind":"user","methods":{},"notice":"This contract serves as a gateway for creating orders and managing settlements.","version":1}}},"contracts/GatewaySettingManager.sol":{"GatewaySettingManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"protocolFee","type":"uint64"}],"name":"ProtocolFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"currency","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"indexed":false,"internalType":"struct SharedStructs.Institution[]","name":"institutions","type":"tuple[]"}],"name":"SupportedInstitutionsUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"currency","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"internalType":"struct SharedStructs.Institution[]","name":"institutions","type":"tuple[]"}],"name":"setSupportedInstitutions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_protocolFeePercent","type":"uint64"}],"name":"updateProtocolFee","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"owner()":{"details":"Returns the address of the current owner."},"pendingOwner()":{"details":"Returns the address of the pending owner."},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."},"setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":{"details":"Sets the supported institutions for a specific currency.","params":{"currency":"The currency for which the institutions are being set.","institutions":"The array of institutions to be set."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"transferOwnership(address)":{"details":"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}},"updateProtocolFee(uint64)":{"details":"Updates the protocol fee percentage.","params":{"_protocolFeePercent":"The new protocol fee percentage to be set."}}},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"608060405234801561001057600080fd5b5061146a806100206000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c806379ba50971161006657806379ba5097146100f65780638da5cb5b14610100578063cd9924001461011e578063e30c39781461013a578063f2fde38b1461015857610093565b8063322008821461009857806340ebc677146100b457806347094e2e146100d0578063715018a6146100ec575b600080fd5b6100b260048036038101906100ad9190610d03565b610174565b005b6100ce60048036038101906100c99190610dbd565b6102e9565b005b6100ea60048036038101906100e59190610e3d565b6105b1565b005b6100f461061c565b005b6100fe610630565b005b6101086106bd565b6040516101159190610e79565b60405180910390f35b61013860048036038101906101339190610eca565b6106e7565b005b61014261086c565b60405161014f9190610e79565b60405180910390f35b610172600480360381019061016d9190610f1d565b610896565b005b61017c610943565b60cd6000838152602001908152602001600020600061019b9190610ac0565b60005b815181101561029a5760cd60008481526020019081526020016000208282815181106101cd576101cc610f4a565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061023257610231610f4a565b5b60200260200101516020015181526020018481525060ce600084848151811061025e5761025d610f4a565b5b6020026020010151600001518152602001908152602001600020600082015181600001556020820151816001015590505080600101905061019e565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516102dd91906110b3565b60405180910390a25050565b6102f1610943565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035790611132565b60405180910390fd5b60007f74726561737572790000000000000000000000000000000000000000000000008303610463578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610410906111c4565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610561565b7f61676772656761746f72000000000000000000000000000000000000000000008303610560578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361051a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051190611256565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b80156105ac578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6105b9610943565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516106119190611285565b60405180910390a150565b610624610943565b61062e60006109c1565b565b600061063a6109f2565b90508073ffffffffffffffffffffffffffffffffffffffff1661065b61086c565b73ffffffffffffffffffffffffffffffffffffffff16146106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890611312565b60405180910390fd5b6106ba816109c1565b50565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106ef610943565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590611132565b60405180910390fd5b600181148061076d5750600281145b6107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a39061137e565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303610867578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161085e91906113ad565b60405180910390a35b505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61089e610943565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166108fe6106bd565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61094b6109f2565b73ffffffffffffffffffffffffffffffffffffffff166109696106bd565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611414565b60405180910390fd5b565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556109ef816109fa565b50565b600033905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5080546000825560020290600052602060002090810190610ae19190610ae4565b50565b5b80821115610b0757600080820160009055600182016000905550600201610ae5565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610b3281610b1f565b8114610b3d57600080fd5b50565b600081359050610b4f81610b29565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610ba382610b5a565b810181811067ffffffffffffffff82111715610bc257610bc1610b6b565b5b80604052505050565b6000610bd5610b0b565b9050610be18282610b9a565b919050565b600067ffffffffffffffff821115610c0157610c00610b6b565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215610c3257610c31610c17565b5b610c3c6040610bcb565b90506000610c4c84828501610b40565b6000830152506020610c6084828501610b40565b60208301525092915050565b6000610c7f610c7a84610be6565b610bcb565b90508083825260208201905060408402830185811115610ca257610ca1610c12565b5b835b81811015610ccb5780610cb78882610c1c565b845260208401935050604081019050610ca4565b5050509392505050565b600082601f830112610cea57610ce9610b55565b5b8135610cfa848260208601610c6c565b91505092915050565b60008060408385031215610d1a57610d19610b15565b5b6000610d2885828601610b40565b925050602083013567ffffffffffffffff811115610d4957610d48610b1a565b5b610d5585828601610cd5565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d8a82610d5f565b9050919050565b610d9a81610d7f565b8114610da557600080fd5b50565b600081359050610db781610d91565b92915050565b60008060408385031215610dd457610dd3610b15565b5b6000610de285828601610b40565b9250506020610df385828601610da8565b9150509250929050565b600067ffffffffffffffff82169050919050565b610e1a81610dfd565b8114610e2557600080fd5b50565b600081359050610e3781610e11565b92915050565b600060208284031215610e5357610e52610b15565b5b6000610e6184828501610e28565b91505092915050565b610e7381610d7f565b82525050565b6000602082019050610e8e6000830184610e6a565b92915050565b6000819050919050565b610ea781610e94565b8114610eb257600080fd5b50565b600081359050610ec481610e9e565b92915050565b600080600060608486031215610ee357610ee2610b15565b5b6000610ef186828701610b40565b9350506020610f0286828701610da8565b9250506040610f1386828701610eb5565b9150509250925092565b600060208284031215610f3357610f32610b15565b5b6000610f4184828501610da8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000610fd4610fcf83610faa565b610fb7565b9050919050565b610fe481610b1f565b82525050565b604082016000808301549050610fff81610fc1565b61100c6000860182610fdb565b506001830154905061101d81610fc1565b61102a6020860182610fdb565b5050505050565b600061103d8383610fea565b60408301905092915050565b6000600282019050919050565b600061106182610f79565b61106b8185610f84565b935061107683610f95565b8060005b838110156110a6578161108d8882611031565b975061109883611049565b92505060018101905061107a565b5085935050505092915050565b600060208201905081810360008301526110cd8184611056565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061111c6015836110d5565b9150611127826110e6565b602082019050919050565b6000602082019050818103600083015261114b8161110f565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006111ae6025836110d5565b91506111b982611152565b604082019050919050565b600060208201905081810360008301526111dd816111a1565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006112406027836110d5565b915061124b826111e4565b604082019050919050565b6000602082019050818103600083015261126f81611233565b9050919050565b61127f81610dfd565b82525050565b600060208201905061129a6000830184611276565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006112fc6029836110d5565b9150611307826112a0565b604082019050919050565b6000602082019050818103600083015261132b816112ef565b9050919050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006113686017836110d5565b915061137382611332565b602082019050919050565b600060208201905081810360008301526113978161135b565b9050919050565b6113a781610e94565b82525050565b60006020820190506113c2600083018461139e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113fe6020836110d5565b9150611409826113c8565b602082019050919050565b6000602082019050818103600083015261142d816113f1565b905091905056fea2646970667358221220a5cf2406f8bb007a45008610cf8baf05dde6f3dbf02727307f944766ecf3cbe164736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x146A DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x93 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79BA5097 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xF6 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x100 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x13A JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x158 JUMPI PUSH2 0x93 JUMP JUMPDEST DUP1 PUSH4 0x32200882 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0xB4 JUMPI DUP1 PUSH4 0x47094E2E EQ PUSH2 0xD0 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0xD03 JUMP JUMPDEST PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC9 SWAP2 SWAP1 PUSH2 0xDBD JUMP JUMPDEST PUSH2 0x2E9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE5 SWAP2 SWAP1 PUSH2 0xE3D JUMP JUMPDEST PUSH2 0x5B1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF4 PUSH2 0x61C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFE PUSH2 0x630 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x108 PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x115 SWAP2 SWAP1 PUSH2 0xE79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x138 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x133 SWAP2 SWAP1 PUSH2 0xECA JUMP JUMPDEST PUSH2 0x6E7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x142 PUSH2 0x86C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14F SWAP2 SWAP1 PUSH2 0xE79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x172 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16D SWAP2 SWAP1 PUSH2 0xF1D JUMP JUMPDEST PUSH2 0x896 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x17C PUSH2 0x943 JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x19B SWAP2 SWAP1 PUSH2 0xAC0 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x29A JUMPI PUSH1 0xCD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1CD JUMPI PUSH2 0x1CC PUSH2 0xF4A JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x232 JUMPI PUSH2 0x231 PUSH2 0xF4A JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP PUSH1 0xCE PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x25E JUMPI PUSH2 0x25D PUSH2 0xF4A JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP DUP1 PUSH1 0x1 ADD SWAP1 POP PUSH2 0x19E JUMP JUMPDEST POP DUP2 PUSH32 0x58F3A30EC15A8D3E09FA65F9EF10219BC7A9A99D872A4ED895C37C2E761AC2AC PUSH1 0xCD PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0x10B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x2F1 PUSH2 0x943 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x360 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x357 SWAP1 PUSH2 0x1132 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x463 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x419 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x410 SWAP1 PUSH2 0x11C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x561 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x560 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x51A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x511 SWAP1 PUSH2 0x1256 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x5AC JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5B9 PUSH2 0x943 JUMP JUMPDEST DUP1 PUSH1 0x98 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x1CE29A697A4765BD17D91DF93BA75B250B629ECF030553FF1F6AB59F15AE6C7B DUP2 PUSH1 0x40 MLOAD PUSH2 0x611 SWAP2 SWAP1 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x624 PUSH2 0x943 JUMP JUMPDEST PUSH2 0x62E PUSH1 0x0 PUSH2 0x9C1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0x63A PUSH2 0x9F2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x65B PUSH2 0x86C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A8 SWAP1 PUSH2 0x1312 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6BA DUP2 PUSH2 0x9C1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x6EF PUSH2 0x943 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x75E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x755 SWAP1 PUSH2 0x1132 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x76D JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x7AC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A3 SWAP1 PUSH2 0x137E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x867 JUMPI DUP1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x85E SWAP2 SWAP1 PUSH2 0x13AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x89E PUSH2 0x943 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FE PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x94B PUSH2 0x9F2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x969 PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B6 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x9EF DUP2 PUSH2 0x9FA JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0xAE1 SWAP2 SWAP1 PUSH2 0xAE4 JUMP JUMPDEST POP JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xB07 JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0xAE5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB32 DUP2 PUSH2 0xB1F JUMP JUMPDEST DUP2 EQ PUSH2 0xB3D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB4F DUP2 PUSH2 0xB29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xBA3 DUP3 PUSH2 0xB5A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xBC2 JUMPI PUSH2 0xBC1 PUSH2 0xB6B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBD5 PUSH2 0xB0B JUMP JUMPDEST SWAP1 POP PUSH2 0xBE1 DUP3 DUP3 PUSH2 0xB9A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xC01 JUMPI PUSH2 0xC00 PUSH2 0xB6B JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC32 JUMPI PUSH2 0xC31 PUSH2 0xC17 JUMP JUMPDEST JUMPDEST PUSH2 0xC3C PUSH1 0x40 PUSH2 0xBCB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xC4C DUP5 DUP3 DUP6 ADD PUSH2 0xB40 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0xC60 DUP5 DUP3 DUP6 ADD PUSH2 0xB40 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC7F PUSH2 0xC7A DUP5 PUSH2 0xBE6 JUMP JUMPDEST PUSH2 0xBCB JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x40 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0xCA2 JUMPI PUSH2 0xCA1 PUSH2 0xC12 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCCB JUMPI DUP1 PUSH2 0xCB7 DUP9 DUP3 PUSH2 0xC1C JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x40 DUP2 ADD SWAP1 POP PUSH2 0xCA4 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xCEA JUMPI PUSH2 0xCE9 PUSH2 0xB55 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xCFA DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD1A JUMPI PUSH2 0xD19 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD28 DUP6 DUP3 DUP7 ADD PUSH2 0xB40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD49 JUMPI PUSH2 0xD48 PUSH2 0xB1A JUMP JUMPDEST JUMPDEST PUSH2 0xD55 DUP6 DUP3 DUP7 ADD PUSH2 0xCD5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD8A DUP3 PUSH2 0xD5F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD9A DUP2 PUSH2 0xD7F JUMP JUMPDEST DUP2 EQ PUSH2 0xDA5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDB7 DUP2 PUSH2 0xD91 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDD4 JUMPI PUSH2 0xDD3 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDE2 DUP6 DUP3 DUP7 ADD PUSH2 0xB40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xDF3 DUP6 DUP3 DUP7 ADD PUSH2 0xDA8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE1A DUP2 PUSH2 0xDFD JUMP JUMPDEST DUP2 EQ PUSH2 0xE25 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE37 DUP2 PUSH2 0xE11 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE53 JUMPI PUSH2 0xE52 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE61 DUP5 DUP3 DUP6 ADD PUSH2 0xE28 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE73 DUP2 PUSH2 0xD7F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE8E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE6A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEA7 DUP2 PUSH2 0xE94 JUMP JUMPDEST DUP2 EQ PUSH2 0xEB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xEC4 DUP2 PUSH2 0xE9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEE3 JUMPI PUSH2 0xEE2 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xEF1 DUP7 DUP3 DUP8 ADD PUSH2 0xB40 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xF02 DUP7 DUP3 DUP8 ADD PUSH2 0xDA8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xF13 DUP7 DUP3 DUP8 ADD PUSH2 0xEB5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF33 JUMPI PUSH2 0xF32 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xF41 DUP5 DUP3 DUP6 ADD PUSH2 0xDA8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFD4 PUSH2 0xFCF DUP4 PUSH2 0xFAA JUMP JUMPDEST PUSH2 0xFB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE4 DUP2 PUSH2 0xB1F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0xFFF DUP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH2 0x100C PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0xFDB JUMP JUMPDEST POP PUSH1 0x1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x101D DUP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH2 0x102A PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xFDB JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x103D DUP4 DUP4 PUSH2 0xFEA JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1061 DUP3 PUSH2 0xF79 JUMP JUMPDEST PUSH2 0x106B DUP2 DUP6 PUSH2 0xF84 JUMP JUMPDEST SWAP4 POP PUSH2 0x1076 DUP4 PUSH2 0xF95 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10A6 JUMPI DUP2 PUSH2 0x108D DUP9 DUP3 PUSH2 0x1031 JUMP JUMPDEST SWAP8 POP PUSH2 0x1098 DUP4 PUSH2 0x1049 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x107A JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10CD DUP2 DUP5 PUSH2 0x1056 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x111C PUSH1 0x15 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1127 DUP3 PUSH2 0x10E6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x114B DUP2 PUSH2 0x110F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11AE PUSH1 0x25 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x11B9 DUP3 PUSH2 0x1152 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11DD DUP2 PUSH2 0x11A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1240 PUSH1 0x27 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x124B DUP3 PUSH2 0x11E4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x126F DUP2 PUSH2 0x1233 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x127F DUP2 PUSH2 0xDFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x129A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1276 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FC PUSH1 0x29 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1307 DUP3 PUSH2 0x12A0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x132B DUP2 PUSH2 0x12EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1368 PUSH1 0x17 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1373 DUP3 PUSH2 0x1332 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1397 DUP2 PUSH2 0x135B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x13A7 DUP2 PUSH2 0xE94 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13C2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x139E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13FE PUSH1 0x20 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1409 DUP3 PUSH2 0x13C8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x142D DUP2 PUSH2 0x13F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 0xCF 0x24 MOD 0xF8 0xBB STOP PUSH27 0x45008610CF8BAF05DDE6F3DBF02727307F944766ECF3CBE164736F PUSH13 0x63430008120033000000000000 ","sourceMap":"338:3609:11:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_176":{"entryPoint":2371,"id":176,"parameterSlots":0,"returnSlots":0},"@_msgSender_894":{"entryPoint":2546,"id":894,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_233":{"entryPoint":2554,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":2497,"id":78,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":1584,"id":100,"parameterSlots":0,"returnSlots":0},"@owner_162":{"entryPoint":1725,"id":162,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":2156,"id":41,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":1564,"id":190,"parameterSlots":0,"returnSlots":0},"@setSupportedInstitutions_2429":{"entryPoint":372,"id":2429,"parameterSlots":2,"returnSlots":0},"@settingManagerBool_2366":{"entryPoint":1767,"id":2366,"parameterSlots":3,"returnSlots":0},"@transferOwnership_61":{"entryPoint":2198,"id":61,"parameterSlots":1,"returnSlots":0},"@updateProtocolAddress_2518":{"entryPoint":745,"id":2518,"parameterSlots":2,"returnSlots":0},"@updateProtocolFee_2446":{"entryPoint":1457,"id":2446,"parameterSlots":1,"returnSlots":0},"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":3180,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_t_address":{"entryPoint":3496,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":3285,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":2880,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":3100,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":3765,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint64":{"entryPoint":3624,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3869,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":3517,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":3786,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":3331,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64":{"entryPoint":3645,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":4145,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":3690,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":4182,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_bytes32_to_t_bytes32":{"entryPoint":4059,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":4367,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":4847,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":4955,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":5105,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":4513,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":4659,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":4074,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":5022,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint64_fromStack":{"entryPoint":4726,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":3705,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":4275,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4402,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4882,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4990,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5140,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4548,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4694,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":5037,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":4741,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":3019,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_unbounded":{"entryPoint":2827,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":3046,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":3989,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":3961,"id":null,"parameterSlots":1,"returnSlots":1},"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":4169,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":3972,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":4309,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_from_storage_t_bytes32":{"entryPoint":4023,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_address":{"entryPoint":3455,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":2847,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":3423,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":3732,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint64":{"entryPoint":3581,"id":null,"parameterSlots":1,"returnSlots":1},"extract_from_storage_value_offset_0t_bytes32":{"entryPoint":4033,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":2970,"id":null,"parameterSlots":2,"returnSlots":0},"panic_error_0x32":{"entryPoint":3914,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":2923,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":2901,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f":{"entryPoint":3095,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef":{"entryPoint":3090,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":2842,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":2837,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":2906,"id":null,"parameterSlots":1,"returnSlots":1},"shift_right_0_unsigned":{"entryPoint":4010,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":4326,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":4768,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":4914,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":5064,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":4434,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":4580,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":3473,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":2857,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":3742,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint64":{"entryPoint":3601,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:19125:17","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:17","statements":[{"nodeType":"YulAssignment","src":"57:19:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:17","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:17"},"nodeType":"YulFunctionCall","src":"67:9:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:17"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:17","type":""}],"src":"7:75:17"},{"body":{"nodeType":"YulBlock","src":"177:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:17"},"nodeType":"YulFunctionCall","src":"187:12:17"},"nodeType":"YulExpressionStatement","src":"187:12:17"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:17"},{"body":{"nodeType":"YulBlock","src":"300:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:17"},"nodeType":"YulFunctionCall","src":"310:12:17"},"nodeType":"YulExpressionStatement","src":"310:12:17"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:17"},{"body":{"nodeType":"YulBlock","src":"379:32:17","statements":[{"nodeType":"YulAssignment","src":"389:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:17"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:17","type":""}],"src":"334:77:17"},{"body":{"nodeType":"YulBlock","src":"460:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:17"},"nodeType":"YulFunctionCall","src":"519:12:17"},"nodeType":"YulExpressionStatement","src":"519:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:17"},"nodeType":"YulFunctionCall","src":"490:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:17"},"nodeType":"YulFunctionCall","src":"480:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:17"},"nodeType":"YulFunctionCall","src":"473:43:17"},"nodeType":"YulIf","src":"470:63:17"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:17","type":""}],"src":"417:122:17"},{"body":{"nodeType":"YulBlock","src":"597:87:17","statements":[{"nodeType":"YulAssignment","src":"607:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:17"},"nodeType":"YulFunctionCall","src":"616:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:17"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:17"},"nodeType":"YulFunctionCall","src":"645:33:17"},"nodeType":"YulExpressionStatement","src":"645:33:17"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:17","type":""}],"src":"545:139:17"},{"body":{"nodeType":"YulBlock","src":"779:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"796:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"799:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"789:6:17"},"nodeType":"YulFunctionCall","src":"789:12:17"},"nodeType":"YulExpressionStatement","src":"789:12:17"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"690:117:17"},{"body":{"nodeType":"YulBlock","src":"861:54:17","statements":[{"nodeType":"YulAssignment","src":"871:38:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"889:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"896:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"885:3:17"},"nodeType":"YulFunctionCall","src":"885:14:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"905:2:17","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"901:3:17"},"nodeType":"YulFunctionCall","src":"901:7:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"881:3:17"},"nodeType":"YulFunctionCall","src":"881:28:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"871:6:17"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"844:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"854:6:17","type":""}],"src":"813:102:17"},{"body":{"nodeType":"YulBlock","src":"949:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"966:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"969:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"959:6:17"},"nodeType":"YulFunctionCall","src":"959:88:17"},"nodeType":"YulExpressionStatement","src":"959:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1063:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1066:4:17","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1056:6:17"},"nodeType":"YulFunctionCall","src":"1056:15:17"},"nodeType":"YulExpressionStatement","src":"1056:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1087:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1090:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1080:6:17"},"nodeType":"YulFunctionCall","src":"1080:15:17"},"nodeType":"YulExpressionStatement","src":"1080:15:17"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"921:180:17"},{"body":{"nodeType":"YulBlock","src":"1150:238:17","statements":[{"nodeType":"YulVariableDeclaration","src":"1160:58:17","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1182:6:17"},{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"1212:4:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"1190:21:17"},"nodeType":"YulFunctionCall","src":"1190:27:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1178:3:17"},"nodeType":"YulFunctionCall","src":"1178:40:17"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1164:10:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"1329:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1331:16:17"},"nodeType":"YulFunctionCall","src":"1331:18:17"},"nodeType":"YulExpressionStatement","src":"1331:18:17"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1272:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"1284:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1269:2:17"},"nodeType":"YulFunctionCall","src":"1269:34:17"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1308:10:17"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1320:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1305:2:17"},"nodeType":"YulFunctionCall","src":"1305:22:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1266:2:17"},"nodeType":"YulFunctionCall","src":"1266:62:17"},"nodeType":"YulIf","src":"1263:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1367:2:17","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1371:10:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1360:6:17"},"nodeType":"YulFunctionCall","src":"1360:22:17"},"nodeType":"YulExpressionStatement","src":"1360:22:17"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"1136:6:17","type":""},{"name":"size","nodeType":"YulTypedName","src":"1144:4:17","type":""}],"src":"1107:281:17"},{"body":{"nodeType":"YulBlock","src":"1435:88:17","statements":[{"nodeType":"YulAssignment","src":"1445:30:17","value":{"arguments":[],"functionName":{"name":"allocate_unbounded","nodeType":"YulIdentifier","src":"1455:18:17"},"nodeType":"YulFunctionCall","src":"1455:20:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1445:6:17"}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1504:6:17"},{"name":"size","nodeType":"YulIdentifier","src":"1512:4:17"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"1484:19:17"},"nodeType":"YulFunctionCall","src":"1484:33:17"},"nodeType":"YulExpressionStatement","src":"1484:33:17"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"1419:4:17","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1428:6:17","type":""}],"src":"1394:129:17"},{"body":{"nodeType":"YulBlock","src":"1640:229:17","statements":[{"body":{"nodeType":"YulBlock","src":"1745:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1747:16:17"},"nodeType":"YulFunctionCall","src":"1747:18:17"},"nodeType":"YulExpressionStatement","src":"1747:18:17"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1717:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"1725:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1714:2:17"},"nodeType":"YulFunctionCall","src":"1714:30:17"},"nodeType":"YulIf","src":"1711:56:17"},{"nodeType":"YulAssignment","src":"1777:25:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1789:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"1797:4:17","type":"","value":"0x20"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"1785:3:17"},"nodeType":"YulFunctionCall","src":"1785:17:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1777:4:17"}]},{"nodeType":"YulAssignment","src":"1839:23:17","value":{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"1851:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"1857:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1847:3:17"},"nodeType":"YulFunctionCall","src":"1847:15:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1839:4:17"}]}]},"name":"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"1624:6:17","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"1635:4:17","type":""}],"src":"1529:340:17"},{"body":{"nodeType":"YulBlock","src":"1964:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1981:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1984:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1974:6:17"},"nodeType":"YulFunctionCall","src":"1974:12:17"},"nodeType":"YulExpressionStatement","src":"1974:12:17"}]},"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulFunctionDefinition","src":"1875:117:17"},{"body":{"nodeType":"YulBlock","src":"2087:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2104:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2107:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2097:6:17"},"nodeType":"YulFunctionCall","src":"2097:12:17"},"nodeType":"YulExpressionStatement","src":"2097:12:17"}]},"name":"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f","nodeType":"YulFunctionDefinition","src":"1998:117:17"},{"body":{"nodeType":"YulBlock","src":"2210:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2227:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2230:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2220:6:17"},"nodeType":"YulFunctionCall","src":"2220:12:17"},"nodeType":"YulExpressionStatement","src":"2220:12:17"}]},"name":"revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421","nodeType":"YulFunctionDefinition","src":"2121:117:17"},{"body":{"nodeType":"YulBlock","src":"2368:494:17","statements":[{"body":{"nodeType":"YulBlock","src":"2412:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f","nodeType":"YulIdentifier","src":"2414:77:17"},"nodeType":"YulFunctionCall","src":"2414:79:17"},"nodeType":"YulExpressionStatement","src":"2414:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nodeType":"YulIdentifier","src":"2389:3:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"2394:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2385:3:17"},"nodeType":"YulFunctionCall","src":"2385:19:17"},{"kind":"number","nodeType":"YulLiteral","src":"2406:4:17","type":"","value":"0x40"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2381:3:17"},"nodeType":"YulFunctionCall","src":"2381:30:17"},"nodeType":"YulIf","src":"2378:117:17"},{"nodeType":"YulAssignment","src":"2504:30:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2529:4:17","type":"","value":"0x40"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"2513:15:17"},"nodeType":"YulFunctionCall","src":"2513:21:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2504:5:17"}]},{"nodeType":"YulBlock","src":"2544:150:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2579:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2593:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2583:6:17","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2619:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2626:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2615:3:17"},"nodeType":"YulFunctionCall","src":"2615:16:17"},{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2658:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2669:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2654:3:17"},"nodeType":"YulFunctionCall","src":"2654:22:17"},{"name":"end","nodeType":"YulIdentifier","src":"2678:3:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"2633:20:17"},"nodeType":"YulFunctionCall","src":"2633:49:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2608:6:17"},"nodeType":"YulFunctionCall","src":"2608:75:17"},"nodeType":"YulExpressionStatement","src":"2608:75:17"}]},{"nodeType":"YulBlock","src":"2704:151:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2739:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2753:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2743:6:17","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2780:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2787:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2776:3:17"},"nodeType":"YulFunctionCall","src":"2776:16:17"},{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2819:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2830:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2815:3:17"},"nodeType":"YulFunctionCall","src":"2815:22:17"},{"name":"end","nodeType":"YulIdentifier","src":"2839:3:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"2794:20:17"},"nodeType":"YulFunctionCall","src":"2794:49:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2769:6:17"},"nodeType":"YulFunctionCall","src":"2769:75:17"},"nodeType":"YulExpressionStatement","src":"2769:75:17"}]}]},"name":"abi_decode_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2343:9:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2354:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2362:5:17","type":""}],"src":"2284:578:17"},{"body":{"nodeType":"YulBlock","src":"3041:666:17","statements":[{"nodeType":"YulAssignment","src":"3051:119:17","value":{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3162:6:17"}],"functionName":{"name":"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"3076:85:17"},"nodeType":"YulFunctionCall","src":"3076:93:17"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"3060:15:17"},"nodeType":"YulFunctionCall","src":"3060:110:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"3051:5:17"}]},{"nodeType":"YulVariableDeclaration","src":"3179:16:17","value":{"name":"array","nodeType":"YulIdentifier","src":"3190:5:17"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"3183:3:17","type":""}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"3212:5:17"},{"name":"length","nodeType":"YulIdentifier","src":"3219:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3205:6:17"},"nodeType":"YulFunctionCall","src":"3205:21:17"},"nodeType":"YulExpressionStatement","src":"3205:21:17"},{"nodeType":"YulAssignment","src":"3235:23:17","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"3246:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"3253:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3242:3:17"},"nodeType":"YulFunctionCall","src":"3242:16:17"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"3235:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"3268:44:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3286:6:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3298:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"3306:4:17","type":"","value":"0x40"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"3294:3:17"},"nodeType":"YulFunctionCall","src":"3294:17:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3282:3:17"},"nodeType":"YulFunctionCall","src":"3282:30:17"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"3272:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3340:103:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"3354:77:17"},"nodeType":"YulFunctionCall","src":"3354:79:17"},"nodeType":"YulExpressionStatement","src":"3354:79:17"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"3327:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"3335:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3324:2:17"},"nodeType":"YulFunctionCall","src":"3324:15:17"},"nodeType":"YulIf","src":"3321:122:17"},{"body":{"nodeType":"YulBlock","src":"3528:173:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3543:21:17","value":{"name":"src","nodeType":"YulIdentifier","src":"3561:3:17"},"variables":[{"name":"elementPos","nodeType":"YulTypedName","src":"3547:10:17","type":""}]},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3585:3:17"},{"arguments":[{"name":"elementPos","nodeType":"YulIdentifier","src":"3640:10:17"},{"name":"end","nodeType":"YulIdentifier","src":"3652:3:17"}],"functionName":{"name":"abi_decode_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"3590:49:17"},"nodeType":"YulFunctionCall","src":"3590:66:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3578:6:17"},"nodeType":"YulFunctionCall","src":"3578:79:17"},"nodeType":"YulExpressionStatement","src":"3578:79:17"},{"nodeType":"YulAssignment","src":"3670:21:17","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3681:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"3686:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3677:3:17"},"nodeType":"YulFunctionCall","src":"3677:14:17"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"3670:3:17"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3481:3:17"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"3486:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3478:2:17"},"nodeType":"YulFunctionCall","src":"3478:15:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3494:25:17","statements":[{"nodeType":"YulAssignment","src":"3496:21:17","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3507:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"3512:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3503:3:17"},"nodeType":"YulFunctionCall","src":"3503:14:17"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"3496:3:17"}]}]},"pre":{"nodeType":"YulBlock","src":"3456:21:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3458:17:17","value":{"name":"offset","nodeType":"YulIdentifier","src":"3469:6:17"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"3462:3:17","type":""}]}]},"src":"3452:249:17"}]},"name":"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3011:6:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"3019:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"3027:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"3035:5:17","type":""}],"src":"2910:797:17"},{"body":{"nodeType":"YulBlock","src":"3861:322:17","statements":[{"body":{"nodeType":"YulBlock","src":"3910:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"3912:77:17"},"nodeType":"YulFunctionCall","src":"3912:79:17"},"nodeType":"YulExpressionStatement","src":"3912:79:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3889:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"3897:4:17","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3885:3:17"},"nodeType":"YulFunctionCall","src":"3885:17:17"},{"name":"end","nodeType":"YulIdentifier","src":"3904:3:17"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3881:3:17"},"nodeType":"YulFunctionCall","src":"3881:27:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3874:6:17"},"nodeType":"YulFunctionCall","src":"3874:35:17"},"nodeType":"YulIf","src":"3871:122:17"},{"nodeType":"YulVariableDeclaration","src":"4002:34:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4029:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4016:12:17"},"nodeType":"YulFunctionCall","src":"4016:20:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4006:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4045:132:17","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4150:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4158:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4146:3:17"},"nodeType":"YulFunctionCall","src":"4146:17:17"},{"name":"length","nodeType":"YulIdentifier","src":"4165:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"4173:3:17"}],"functionName":{"name":"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"4054:91:17"},"nodeType":"YulFunctionCall","src":"4054:123:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"4045:5:17"}]}]},"name":"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3839:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"3847:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"3855:5:17","type":""}],"src":"3755:428:17"},{"body":{"nodeType":"YulBlock","src":"4326:605:17","statements":[{"body":{"nodeType":"YulBlock","src":"4372:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"4374:77:17"},"nodeType":"YulFunctionCall","src":"4374:79:17"},"nodeType":"YulExpressionStatement","src":"4374:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4347:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"4356:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4343:3:17"},"nodeType":"YulFunctionCall","src":"4343:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"4368:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4339:3:17"},"nodeType":"YulFunctionCall","src":"4339:32:17"},"nodeType":"YulIf","src":"4336:119:17"},{"nodeType":"YulBlock","src":"4465:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4480:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4494:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4484:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4509:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4544:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4555:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4540:3:17"},"nodeType":"YulFunctionCall","src":"4540:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4564:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"4519:20:17"},"nodeType":"YulFunctionCall","src":"4519:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4509:6:17"}]}]},{"nodeType":"YulBlock","src":"4592:332:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4607:46:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4638:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4649:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4634:3:17"},"nodeType":"YulFunctionCall","src":"4634:18:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4621:12:17"},"nodeType":"YulFunctionCall","src":"4621:32:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4611:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"4700:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"4702:77:17"},"nodeType":"YulFunctionCall","src":"4702:79:17"},"nodeType":"YulExpressionStatement","src":"4702:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4672:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4680:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4669:2:17"},"nodeType":"YulFunctionCall","src":"4669:30:17"},"nodeType":"YulIf","src":"4666:117:17"},{"nodeType":"YulAssignment","src":"4797:117:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4886:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4897:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4882:3:17"},"nodeType":"YulFunctionCall","src":"4882:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4906:7:17"}],"functionName":{"name":"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"4807:74:17"},"nodeType":"YulFunctionCall","src":"4807:107:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4797:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4288:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4299:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4311:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4319:6:17","type":""}],"src":"4189:742:17"},{"body":{"nodeType":"YulBlock","src":"4982:81:17","statements":[{"nodeType":"YulAssignment","src":"4992:65:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5007:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"5014:42:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5003:3:17"},"nodeType":"YulFunctionCall","src":"5003:54:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4992:7:17"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4964:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4974:7:17","type":""}],"src":"4937:126:17"},{"body":{"nodeType":"YulBlock","src":"5114:51:17","statements":[{"nodeType":"YulAssignment","src":"5124:35:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5153:5:17"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"5135:17:17"},"nodeType":"YulFunctionCall","src":"5135:24:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"5124:7:17"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5096:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"5106:7:17","type":""}],"src":"5069:96:17"},{"body":{"nodeType":"YulBlock","src":"5214:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"5271:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5280:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5283:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5273:6:17"},"nodeType":"YulFunctionCall","src":"5273:12:17"},"nodeType":"YulExpressionStatement","src":"5273:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5237:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5262:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"5244:17:17"},"nodeType":"YulFunctionCall","src":"5244:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"5234:2:17"},"nodeType":"YulFunctionCall","src":"5234:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5227:6:17"},"nodeType":"YulFunctionCall","src":"5227:43:17"},"nodeType":"YulIf","src":"5224:63:17"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5207:5:17","type":""}],"src":"5171:122:17"},{"body":{"nodeType":"YulBlock","src":"5351:87:17","statements":[{"nodeType":"YulAssignment","src":"5361:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5383:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5370:12:17"},"nodeType":"YulFunctionCall","src":"5370:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"5361:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5426:5:17"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"5399:26:17"},"nodeType":"YulFunctionCall","src":"5399:33:17"},"nodeType":"YulExpressionStatement","src":"5399:33:17"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"5329:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"5337:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"5345:5:17","type":""}],"src":"5299:139:17"},{"body":{"nodeType":"YulBlock","src":"5527:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"5573:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5575:77:17"},"nodeType":"YulFunctionCall","src":"5575:79:17"},"nodeType":"YulExpressionStatement","src":"5575:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5548:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"5557:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5544:3:17"},"nodeType":"YulFunctionCall","src":"5544:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"5569:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5540:3:17"},"nodeType":"YulFunctionCall","src":"5540:32:17"},"nodeType":"YulIf","src":"5537:119:17"},{"nodeType":"YulBlock","src":"5666:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5681:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5695:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5685:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5710:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5745:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5756:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5741:3:17"},"nodeType":"YulFunctionCall","src":"5741:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5765:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"5720:20:17"},"nodeType":"YulFunctionCall","src":"5720:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5710:6:17"}]}]},{"nodeType":"YulBlock","src":"5793:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5808:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5822:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5812:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5838:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5873:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5884:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5869:3:17"},"nodeType":"YulFunctionCall","src":"5869:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5893:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5848:20:17"},"nodeType":"YulFunctionCall","src":"5848:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5838:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5489:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5500:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5512:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5520:6:17","type":""}],"src":"5444:474:17"},{"body":{"nodeType":"YulBlock","src":"5968:57:17","statements":[{"nodeType":"YulAssignment","src":"5978:41:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5993:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"6000:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5989:3:17"},"nodeType":"YulFunctionCall","src":"5989:30:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"5978:7:17"}]}]},"name":"cleanup_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5950:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"5960:7:17","type":""}],"src":"5924:101:17"},{"body":{"nodeType":"YulBlock","src":"6073:78:17","statements":[{"body":{"nodeType":"YulBlock","src":"6129:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6138:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6141:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6131:6:17"},"nodeType":"YulFunctionCall","src":"6131:12:17"},"nodeType":"YulExpressionStatement","src":"6131:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6096:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6120:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"6103:16:17"},"nodeType":"YulFunctionCall","src":"6103:23:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6093:2:17"},"nodeType":"YulFunctionCall","src":"6093:34:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6086:6:17"},"nodeType":"YulFunctionCall","src":"6086:42:17"},"nodeType":"YulIf","src":"6083:62:17"}]},"name":"validator_revert_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6066:5:17","type":""}],"src":"6031:120:17"},{"body":{"nodeType":"YulBlock","src":"6208:86:17","statements":[{"nodeType":"YulAssignment","src":"6218:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6240:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6227:12:17"},"nodeType":"YulFunctionCall","src":"6227:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"6218:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6282:5:17"}],"functionName":{"name":"validator_revert_t_uint64","nodeType":"YulIdentifier","src":"6256:25:17"},"nodeType":"YulFunctionCall","src":"6256:32:17"},"nodeType":"YulExpressionStatement","src":"6256:32:17"}]},"name":"abi_decode_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"6186:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"6194:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"6202:5:17","type":""}],"src":"6157:137:17"},{"body":{"nodeType":"YulBlock","src":"6365:262:17","statements":[{"body":{"nodeType":"YulBlock","src":"6411:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"6413:77:17"},"nodeType":"YulFunctionCall","src":"6413:79:17"},"nodeType":"YulExpressionStatement","src":"6413:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6386:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"6395:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6382:3:17"},"nodeType":"YulFunctionCall","src":"6382:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"6407:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6378:3:17"},"nodeType":"YulFunctionCall","src":"6378:32:17"},"nodeType":"YulIf","src":"6375:119:17"},{"nodeType":"YulBlock","src":"6504:116:17","statements":[{"nodeType":"YulVariableDeclaration","src":"6519:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"6533:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"6523:6:17","type":""}]},{"nodeType":"YulAssignment","src":"6548:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6582:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"6593:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6578:3:17"},"nodeType":"YulFunctionCall","src":"6578:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"6602:7:17"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"6558:19:17"},"nodeType":"YulFunctionCall","src":"6558:52:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6548:6:17"}]}]}]},"name":"abi_decode_tuple_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6335:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6346:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6358:6:17","type":""}],"src":"6300:327:17"},{"body":{"nodeType":"YulBlock","src":"6698:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6715:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6738:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"6720:17:17"},"nodeType":"YulFunctionCall","src":"6720:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6708:6:17"},"nodeType":"YulFunctionCall","src":"6708:37:17"},"nodeType":"YulExpressionStatement","src":"6708:37:17"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6686:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"6693:3:17","type":""}],"src":"6633:118:17"},{"body":{"nodeType":"YulBlock","src":"6855:124:17","statements":[{"nodeType":"YulAssignment","src":"6865:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6877:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"6888:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6873:3:17"},"nodeType":"YulFunctionCall","src":"6873:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6865:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6945:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6958:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"6969:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6954:3:17"},"nodeType":"YulFunctionCall","src":"6954:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"6901:43:17"},"nodeType":"YulFunctionCall","src":"6901:71:17"},"nodeType":"YulExpressionStatement","src":"6901:71:17"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6827:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6839:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6850:4:17","type":""}],"src":"6757:222:17"},{"body":{"nodeType":"YulBlock","src":"7030:32:17","statements":[{"nodeType":"YulAssignment","src":"7040:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"7051:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"7040:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"7012:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"7022:7:17","type":""}],"src":"6985:77:17"},{"body":{"nodeType":"YulBlock","src":"7111:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"7168:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7177:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7180:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7170:6:17"},"nodeType":"YulFunctionCall","src":"7170:12:17"},"nodeType":"YulExpressionStatement","src":"7170:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7134:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7159:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"7141:17:17"},"nodeType":"YulFunctionCall","src":"7141:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"7131:2:17"},"nodeType":"YulFunctionCall","src":"7131:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7124:6:17"},"nodeType":"YulFunctionCall","src":"7124:43:17"},"nodeType":"YulIf","src":"7121:63:17"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"7104:5:17","type":""}],"src":"7068:122:17"},{"body":{"nodeType":"YulBlock","src":"7248:87:17","statements":[{"nodeType":"YulAssignment","src":"7258:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7280:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7267:12:17"},"nodeType":"YulFunctionCall","src":"7267:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"7258:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7323:5:17"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"7296:26:17"},"nodeType":"YulFunctionCall","src":"7296:33:17"},"nodeType":"YulExpressionStatement","src":"7296:33:17"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"7226:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"7234:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"7242:5:17","type":""}],"src":"7196:139:17"},{"body":{"nodeType":"YulBlock","src":"7441:519:17","statements":[{"body":{"nodeType":"YulBlock","src":"7487:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"7489:77:17"},"nodeType":"YulFunctionCall","src":"7489:79:17"},"nodeType":"YulExpressionStatement","src":"7489:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7462:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"7471:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7458:3:17"},"nodeType":"YulFunctionCall","src":"7458:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"7483:2:17","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7454:3:17"},"nodeType":"YulFunctionCall","src":"7454:32:17"},"nodeType":"YulIf","src":"7451:119:17"},{"nodeType":"YulBlock","src":"7580:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7595:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7609:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7599:6:17","type":""}]},{"nodeType":"YulAssignment","src":"7624:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7659:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"7670:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7655:3:17"},"nodeType":"YulFunctionCall","src":"7655:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7679:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"7634:20:17"},"nodeType":"YulFunctionCall","src":"7634:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7624:6:17"}]}]},{"nodeType":"YulBlock","src":"7707:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7722:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7736:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7726:6:17","type":""}]},{"nodeType":"YulAssignment","src":"7752:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7787:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"7798:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7783:3:17"},"nodeType":"YulFunctionCall","src":"7783:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7807:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"7762:20:17"},"nodeType":"YulFunctionCall","src":"7762:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7752:6:17"}]}]},{"nodeType":"YulBlock","src":"7835:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7850:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7864:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7854:6:17","type":""}]},{"nodeType":"YulAssignment","src":"7880:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7915:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"7926:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7911:3:17"},"nodeType":"YulFunctionCall","src":"7911:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7935:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"7890:20:17"},"nodeType":"YulFunctionCall","src":"7890:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"7880:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7395:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7406:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7418:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7426:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7434:6:17","type":""}],"src":"7341:619:17"},{"body":{"nodeType":"YulBlock","src":"8032:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"8078:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"8080:77:17"},"nodeType":"YulFunctionCall","src":"8080:79:17"},"nodeType":"YulExpressionStatement","src":"8080:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8053:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"8062:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8049:3:17"},"nodeType":"YulFunctionCall","src":"8049:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"8074:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8045:3:17"},"nodeType":"YulFunctionCall","src":"8045:32:17"},"nodeType":"YulIf","src":"8042:119:17"},{"nodeType":"YulBlock","src":"8171:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8186:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"8200:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8190:6:17","type":""}]},{"nodeType":"YulAssignment","src":"8215:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8250:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"8261:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8246:3:17"},"nodeType":"YulFunctionCall","src":"8246:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8270:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8225:20:17"},"nodeType":"YulFunctionCall","src":"8225:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8215:6:17"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8002:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8013:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8025:6:17","type":""}],"src":"7966:329:17"},{"body":{"nodeType":"YulBlock","src":"8329:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8346:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8349:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8339:6:17"},"nodeType":"YulFunctionCall","src":"8339:88:17"},"nodeType":"YulExpressionStatement","src":"8339:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8443:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"8446:4:17","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8436:6:17"},"nodeType":"YulFunctionCall","src":"8436:15:17"},"nodeType":"YulExpressionStatement","src":"8436:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8467:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8470:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8460:6:17"},"nodeType":"YulFunctionCall","src":"8460:15:17"},"nodeType":"YulExpressionStatement","src":"8460:15:17"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"8301:180:17"},{"body":{"nodeType":"YulBlock","src":"8584:40:17","statements":[{"nodeType":"YulAssignment","src":"8595:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8611:5:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"8605:5:17"},"nodeType":"YulFunctionCall","src":"8605:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"8595:6:17"}]}]},"name":"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8567:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"8577:6:17","type":""}],"src":"8487:137:17"},{"body":{"nodeType":"YulBlock","src":"8770:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8787:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"8792:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8780:6:17"},"nodeType":"YulFunctionCall","src":"8780:19:17"},"nodeType":"YulExpressionStatement","src":"8780:19:17"},{"nodeType":"YulAssignment","src":"8808:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8827:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"8832:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8823:3:17"},"nodeType":"YulFunctionCall","src":"8823:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"8808:11:17"}]}]},"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8742:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"8747:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"8758:11:17","type":""}],"src":"8630:213:17"},{"body":{"nodeType":"YulBlock","src":"8944:87:17","statements":[{"nodeType":"YulAssignment","src":"8954:11:17","value":{"name":"ptr","nodeType":"YulIdentifier","src":"8962:3:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"8954:4:17"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8982:1:17","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"8985:3:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8975:6:17"},"nodeType":"YulFunctionCall","src":"8975:14:17"},"nodeType":"YulExpressionStatement","src":"8975:14:17"},{"nodeType":"YulAssignment","src":"8998:26:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9016:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9019:4:17","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"9006:9:17"},"nodeType":"YulFunctionCall","src":"9006:18:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"8998:4:17"}]}]},"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"8931:3:17","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"8939:4:17","type":""}],"src":"8849:182:17"},{"body":{"nodeType":"YulBlock","src":"9088:51:17","statements":[{"nodeType":"YulAssignment","src":"9098:34:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9123:1:17","type":"","value":"0"},{"name":"value","nodeType":"YulIdentifier","src":"9126:5:17"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"9119:3:17"},"nodeType":"YulFunctionCall","src":"9119:13:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"9098:8:17"}]}]},"name":"shift_right_0_unsigned","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9069:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"9079:8:17","type":""}],"src":"9037:102:17"},{"body":{"nodeType":"YulBlock","src":"9203:32:17","statements":[{"nodeType":"YulAssignment","src":"9213:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"9224:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"9213:7:17"}]}]},"name":"cleanup_from_storage_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9185:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"9195:7:17","type":""}],"src":"9145:90:17"},{"body":{"nodeType":"YulBlock","src":"9316:91:17","statements":[{"nodeType":"YulAssignment","src":"9326:75:17","value":{"arguments":[{"arguments":[{"name":"slot_value","nodeType":"YulIdentifier","src":"9389:10:17"}],"functionName":{"name":"shift_right_0_unsigned","nodeType":"YulIdentifier","src":"9366:22:17"},"nodeType":"YulFunctionCall","src":"9366:34:17"}],"functionName":{"name":"cleanup_from_storage_t_bytes32","nodeType":"YulIdentifier","src":"9335:30:17"},"nodeType":"YulFunctionCall","src":"9335:66:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"9326:5:17"}]}]},"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot_value","nodeType":"YulTypedName","src":"9295:10:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"9310:5:17","type":""}],"src":"9241:166:17"},{"body":{"nodeType":"YulBlock","src":"9468:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9485:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9508:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"9490:17:17"},"nodeType":"YulFunctionCall","src":"9490:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9478:6:17"},"nodeType":"YulFunctionCall","src":"9478:37:17"},"nodeType":"YulExpressionStatement","src":"9478:37:17"}]},"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9456:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"9463:3:17","type":""}],"src":"9413:108:17"},{"body":{"nodeType":"YulBlock","src":"9714:578:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9724:26:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9740:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9745:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9736:3:17"},"nodeType":"YulFunctionCall","src":"9736:14:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"9728:4:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9759:18:17","value":{"kind":"number","nodeType":"YulLiteral","src":"9776:1:17","type":"","value":"0"},"variables":[{"name":"slotValue","nodeType":"YulTypedName","src":"9763:9:17","type":""}]},{"nodeType":"YulBlock","src":"9787:244:17","statements":[{"nodeType":"YulAssignment","src":"9821:36:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9844:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"9851:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9840:3:17"},"nodeType":"YulFunctionCall","src":"9840:16:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"9834:5:17"},"nodeType":"YulFunctionCall","src":"9834:23:17"},"variableNames":[{"name":"slotValue","nodeType":"YulIdentifier","src":"9821:9:17"}]},{"nodeType":"YulVariableDeclaration","src":"9870:75:17","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"9935:9:17"}],"functionName":{"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulIdentifier","src":"9890:44:17"},"nodeType":"YulFunctionCall","src":"9890:55:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9874:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"9992:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10010:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10015:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10006:3:17"},"nodeType":"YulFunctionCall","src":"10006:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"9958:33:17"},"nodeType":"YulFunctionCall","src":"9958:63:17"},"nodeType":"YulExpressionStatement","src":"9958:63:17"}]},{"nodeType":"YulBlock","src":"10041:244:17","statements":[{"nodeType":"YulAssignment","src":"10075:36:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10098:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"10105:4:17","type":"","value":"0x01"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10094:3:17"},"nodeType":"YulFunctionCall","src":"10094:16:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"10088:5:17"},"nodeType":"YulFunctionCall","src":"10088:23:17"},"variableNames":[{"name":"slotValue","nodeType":"YulIdentifier","src":"10075:9:17"}]},{"nodeType":"YulVariableDeclaration","src":"10124:75:17","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"10189:9:17"}],"functionName":{"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulIdentifier","src":"10144:44:17"},"nodeType":"YulFunctionCall","src":"10144:55:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10128:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10246:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10264:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10269:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10260:3:17"},"nodeType":"YulFunctionCall","src":"10260:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"10212:33:17"},"nodeType":"YulFunctionCall","src":"10212:63:17"},"nodeType":"YulExpressionStatement","src":"10212:63:17"}]}]},"name":"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9701:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"9708:3:17","type":""}],"src":"9603:689:17"},{"body":{"nodeType":"YulBlock","src":"10433:154:17","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10532:6:17"},{"name":"pos","nodeType":"YulIdentifier","src":"10540:3:17"}],"functionName":{"name":"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"10443:88:17"},"nodeType":"YulFunctionCall","src":"10443:101:17"},"nodeType":"YulExpressionStatement","src":"10443:101:17"},{"nodeType":"YulAssignment","src":"10553:28:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10571:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10576:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10567:3:17"},"nodeType":"YulFunctionCall","src":"10567:14:17"},"variableNames":[{"name":"updatedPos","nodeType":"YulIdentifier","src":"10553:10:17"}]}]},"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value0","nodeType":"YulTypedName","src":"10406:6:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"10414:3:17","type":""}],"returnVariables":[{"name":"updatedPos","nodeType":"YulTypedName","src":"10422:10:17","type":""}],"src":"10298:289:17"},{"body":{"nodeType":"YulBlock","src":"10691:38:17","statements":[{"nodeType":"YulAssignment","src":"10701:22:17","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"10713:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10718:4:17","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10709:3:17"},"nodeType":"YulFunctionCall","src":"10709:14:17"},"variableNames":[{"name":"next","nodeType":"YulIdentifier","src":"10701:4:17"}]}]},"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"10678:3:17","type":""}],"returnVariables":[{"name":"next","nodeType":"YulTypedName","src":"10686:4:17","type":""}],"src":"10593:136:17"},{"body":{"nodeType":"YulBlock","src":"10991:754:17","statements":[{"nodeType":"YulVariableDeclaration","src":"11001:91:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11086:5:17"}],"functionName":{"name":"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"11015:70:17"},"nodeType":"YulFunctionCall","src":"11015:77:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"11005:6:17","type":""}]},{"nodeType":"YulAssignment","src":"11101:122:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11211:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"11216:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11108:102:17"},"nodeType":"YulFunctionCall","src":"11108:115:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11101:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"11232:94:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11320:5:17"}],"functionName":{"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"11247:72:17"},"nodeType":"YulFunctionCall","src":"11247:79:17"},"variables":[{"name":"baseRef","nodeType":"YulTypedName","src":"11236:7:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"11335:21:17","value":{"name":"baseRef","nodeType":"YulIdentifier","src":"11349:7:17"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"11339:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"11425:295:17","statements":[{"nodeType":"YulVariableDeclaration","src":"11439:27:17","value":{"name":"srcPtr","nodeType":"YulIdentifier","src":"11460:6:17"},"variables":[{"name":"elementValue0","nodeType":"YulTypedName","src":"11443:13:17","type":""}]},{"nodeType":"YulAssignment","src":"11479:125:17","value":{"arguments":[{"name":"elementValue0","nodeType":"YulIdentifier","src":"11585:13:17"},{"name":"pos","nodeType":"YulIdentifier","src":"11600:3:17"}],"functionName":{"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"11486:98:17"},"nodeType":"YulFunctionCall","src":"11486:118:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11479:3:17"}]},{"nodeType":"YulAssignment","src":"11617:93:17","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"11703:6:17"}],"functionName":{"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"11627:75:17"},"nodeType":"YulFunctionCall","src":"11627:83:17"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"11617:6:17"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"11387:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"11390:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"11384:2:17"},"nodeType":"YulFunctionCall","src":"11384:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"11398:18:17","statements":[{"nodeType":"YulAssignment","src":"11400:14:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"11409:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"11412:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11405:3:17"},"nodeType":"YulFunctionCall","src":"11405:9:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"11400:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"11369:14:17","statements":[{"nodeType":"YulVariableDeclaration","src":"11371:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"11380:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"11375:1:17","type":""}]}]},"src":"11365:355:17"},{"nodeType":"YulAssignment","src":"11729:10:17","value":{"name":"pos","nodeType":"YulIdentifier","src":"11736:3:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11729:3:17"}]}]},"name":"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"10970:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"10977:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10986:3:17","type":""}],"src":"10815:930:17"},{"body":{"nodeType":"YulBlock","src":"11951:277:17","statements":[{"nodeType":"YulAssignment","src":"11961:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11973:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11984:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11969:3:17"},"nodeType":"YulFunctionCall","src":"11969:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11961:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12008:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12019:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12004:3:17"},"nodeType":"YulFunctionCall","src":"12004:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12027:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"12033:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12023:3:17"},"nodeType":"YulFunctionCall","src":"12023:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11997:6:17"},"nodeType":"YulFunctionCall","src":"11997:47:17"},"nodeType":"YulExpressionStatement","src":"11997:47:17"},{"nodeType":"YulAssignment","src":"12053:168:17","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12207:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"12216:4:17"}],"functionName":{"name":"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12061:145:17"},"nodeType":"YulFunctionCall","src":"12061:160:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12053:4:17"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11923:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11935:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11946:4:17","type":""}],"src":"11751:477:17"},{"body":{"nodeType":"YulBlock","src":"12330:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12347:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"12352:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12340:6:17"},"nodeType":"YulFunctionCall","src":"12340:19:17"},"nodeType":"YulExpressionStatement","src":"12340:19:17"},{"nodeType":"YulAssignment","src":"12368:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12387:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12392:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12383:3:17"},"nodeType":"YulFunctionCall","src":"12383:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"12368:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12302:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"12307:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"12318:11:17","type":""}],"src":"12234:169:17"},{"body":{"nodeType":"YulBlock","src":"12515:65:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12537:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"12545:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12533:3:17"},"nodeType":"YulFunctionCall","src":"12533:14:17"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"12549:23:17","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12526:6:17"},"nodeType":"YulFunctionCall","src":"12526:47:17"},"nodeType":"YulExpressionStatement","src":"12526:47:17"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12507:6:17","type":""}],"src":"12409:171:17"},{"body":{"nodeType":"YulBlock","src":"12732:220:17","statements":[{"nodeType":"YulAssignment","src":"12742:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12808:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12813:2:17","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12749:58:17"},"nodeType":"YulFunctionCall","src":"12749:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12742:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12914:3:17"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"12825:88:17"},"nodeType":"YulFunctionCall","src":"12825:93:17"},"nodeType":"YulExpressionStatement","src":"12825:93:17"},{"nodeType":"YulAssignment","src":"12927:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12938:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12943:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12934:3:17"},"nodeType":"YulFunctionCall","src":"12934:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12927:3:17"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12720:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12728:3:17","type":""}],"src":"12586:366:17"},{"body":{"nodeType":"YulBlock","src":"13129:248:17","statements":[{"nodeType":"YulAssignment","src":"13139:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13151:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"13162:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13147:3:17"},"nodeType":"YulFunctionCall","src":"13147:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13139:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13186:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"13197:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13182:3:17"},"nodeType":"YulFunctionCall","src":"13182:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13205:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"13211:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13201:3:17"},"nodeType":"YulFunctionCall","src":"13201:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13175:6:17"},"nodeType":"YulFunctionCall","src":"13175:47:17"},"nodeType":"YulExpressionStatement","src":"13175:47:17"},{"nodeType":"YulAssignment","src":"13231:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13365:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13239:124:17"},"nodeType":"YulFunctionCall","src":"13239:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13231:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13109:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13124:4:17","type":""}],"src":"12958:419:17"},{"body":{"nodeType":"YulBlock","src":"13489:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13511:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13519:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13507:3:17"},"nodeType":"YulFunctionCall","src":"13507:14:17"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"13523:34:17","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13500:6:17"},"nodeType":"YulFunctionCall","src":"13500:58:17"},"nodeType":"YulExpressionStatement","src":"13500:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13579:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13587:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13575:3:17"},"nodeType":"YulFunctionCall","src":"13575:15:17"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"13592:7:17","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13568:6:17"},"nodeType":"YulFunctionCall","src":"13568:32:17"},"nodeType":"YulExpressionStatement","src":"13568:32:17"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"13481:6:17","type":""}],"src":"13383:224:17"},{"body":{"nodeType":"YulBlock","src":"13759:220:17","statements":[{"nodeType":"YulAssignment","src":"13769:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13835:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13840:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13776:58:17"},"nodeType":"YulFunctionCall","src":"13776:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13769:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13941:3:17"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"13852:88:17"},"nodeType":"YulFunctionCall","src":"13852:93:17"},"nodeType":"YulExpressionStatement","src":"13852:93:17"},{"nodeType":"YulAssignment","src":"13954:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13965:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13970:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13961:3:17"},"nodeType":"YulFunctionCall","src":"13961:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13954:3:17"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13747:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13755:3:17","type":""}],"src":"13613:366:17"},{"body":{"nodeType":"YulBlock","src":"14156:248:17","statements":[{"nodeType":"YulAssignment","src":"14166:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14178:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14189:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14174:3:17"},"nodeType":"YulFunctionCall","src":"14174:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14166:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14213:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14224:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14209:3:17"},"nodeType":"YulFunctionCall","src":"14209:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14232:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"14238:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14228:3:17"},"nodeType":"YulFunctionCall","src":"14228:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14202:6:17"},"nodeType":"YulFunctionCall","src":"14202:47:17"},"nodeType":"YulExpressionStatement","src":"14202:47:17"},{"nodeType":"YulAssignment","src":"14258:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14392:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14266:124:17"},"nodeType":"YulFunctionCall","src":"14266:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14258:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14136:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14151:4:17","type":""}],"src":"13985:419:17"},{"body":{"nodeType":"YulBlock","src":"14516:120:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14538:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"14546:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14534:3:17"},"nodeType":"YulFunctionCall","src":"14534:14:17"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"14550:34:17","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14527:6:17"},"nodeType":"YulFunctionCall","src":"14527:58:17"},"nodeType":"YulExpressionStatement","src":"14527:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14606:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"14614:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14602:3:17"},"nodeType":"YulFunctionCall","src":"14602:15:17"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"14619:9:17","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14595:6:17"},"nodeType":"YulFunctionCall","src":"14595:34:17"},"nodeType":"YulExpressionStatement","src":"14595:34:17"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14508:6:17","type":""}],"src":"14410:226:17"},{"body":{"nodeType":"YulBlock","src":"14788:220:17","statements":[{"nodeType":"YulAssignment","src":"14798:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14864:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"14869:2:17","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14805:58:17"},"nodeType":"YulFunctionCall","src":"14805:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"14798:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14970:3:17"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"14881:88:17"},"nodeType":"YulFunctionCall","src":"14881:93:17"},"nodeType":"YulExpressionStatement","src":"14881:93:17"},{"nodeType":"YulAssignment","src":"14983:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14994:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"14999:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14990:3:17"},"nodeType":"YulFunctionCall","src":"14990:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14983:3:17"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14776:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14784:3:17","type":""}],"src":"14642:366:17"},{"body":{"nodeType":"YulBlock","src":"15185:248:17","statements":[{"nodeType":"YulAssignment","src":"15195:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15207:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15218:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15203:3:17"},"nodeType":"YulFunctionCall","src":"15203:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15195:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15242:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15253:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15238:3:17"},"nodeType":"YulFunctionCall","src":"15238:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15261:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"15267:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15257:3:17"},"nodeType":"YulFunctionCall","src":"15257:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15231:6:17"},"nodeType":"YulFunctionCall","src":"15231:47:17"},"nodeType":"YulExpressionStatement","src":"15231:47:17"},{"nodeType":"YulAssignment","src":"15287:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15421:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15295:124:17"},"nodeType":"YulFunctionCall","src":"15295:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15287:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15165:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15180:4:17","type":""}],"src":"15014:419:17"},{"body":{"nodeType":"YulBlock","src":"15502:52:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15519:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15541:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"15524:16:17"},"nodeType":"YulFunctionCall","src":"15524:23:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15512:6:17"},"nodeType":"YulFunctionCall","src":"15512:36:17"},"nodeType":"YulExpressionStatement","src":"15512:36:17"}]},"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15490:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15497:3:17","type":""}],"src":"15439:115:17"},{"body":{"nodeType":"YulBlock","src":"15656:122:17","statements":[{"nodeType":"YulAssignment","src":"15666:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15678:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15689:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15674:3:17"},"nodeType":"YulFunctionCall","src":"15674:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15666:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15744:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15757:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15768:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15753:3:17"},"nodeType":"YulFunctionCall","src":"15753:17:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"15702:41:17"},"nodeType":"YulFunctionCall","src":"15702:69:17"},"nodeType":"YulExpressionStatement","src":"15702:69:17"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15628:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15640:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15651:4:17","type":""}],"src":"15560:218:17"},{"body":{"nodeType":"YulBlock","src":"15890:122:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15912:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"15920:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15908:3:17"},"nodeType":"YulFunctionCall","src":"15908:14:17"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"15924:34:17","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15901:6:17"},"nodeType":"YulFunctionCall","src":"15901:58:17"},"nodeType":"YulExpressionStatement","src":"15901:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15980:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"15988:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15976:3:17"},"nodeType":"YulFunctionCall","src":"15976:15:17"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"15993:11:17","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15969:6:17"},"nodeType":"YulFunctionCall","src":"15969:36:17"},"nodeType":"YulExpressionStatement","src":"15969:36:17"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15882:6:17","type":""}],"src":"15784:228:17"},{"body":{"nodeType":"YulBlock","src":"16164:220:17","statements":[{"nodeType":"YulAssignment","src":"16174:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16240:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"16245:2:17","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16181:58:17"},"nodeType":"YulFunctionCall","src":"16181:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16174:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16346:3:17"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"16257:88:17"},"nodeType":"YulFunctionCall","src":"16257:93:17"},"nodeType":"YulExpressionStatement","src":"16257:93:17"},{"nodeType":"YulAssignment","src":"16359:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16370:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"16375:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16366:3:17"},"nodeType":"YulFunctionCall","src":"16366:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16359:3:17"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16152:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16160:3:17","type":""}],"src":"16018:366:17"},{"body":{"nodeType":"YulBlock","src":"16561:248:17","statements":[{"nodeType":"YulAssignment","src":"16571:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16583:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"16594:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16579:3:17"},"nodeType":"YulFunctionCall","src":"16579:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16571:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16618:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"16629:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16614:3:17"},"nodeType":"YulFunctionCall","src":"16614:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16637:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"16643:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16633:3:17"},"nodeType":"YulFunctionCall","src":"16633:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16607:6:17"},"nodeType":"YulFunctionCall","src":"16607:47:17"},"nodeType":"YulExpressionStatement","src":"16607:47:17"},{"nodeType":"YulAssignment","src":"16663:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16797:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16671:124:17"},"nodeType":"YulFunctionCall","src":"16671:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16663:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16541:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16556:4:17","type":""}],"src":"16390:419:17"},{"body":{"nodeType":"YulBlock","src":"16921:67:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16943:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"16951:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16939:3:17"},"nodeType":"YulFunctionCall","src":"16939:14:17"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"16955:25:17","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16932:6:17"},"nodeType":"YulFunctionCall","src":"16932:49:17"},"nodeType":"YulExpressionStatement","src":"16932:49:17"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"16913:6:17","type":""}],"src":"16815:173:17"},{"body":{"nodeType":"YulBlock","src":"17140:220:17","statements":[{"nodeType":"YulAssignment","src":"17150:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17216:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"17221:2:17","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17157:58:17"},"nodeType":"YulFunctionCall","src":"17157:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17150:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17322:3:17"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"17233:88:17"},"nodeType":"YulFunctionCall","src":"17233:93:17"},"nodeType":"YulExpressionStatement","src":"17233:93:17"},{"nodeType":"YulAssignment","src":"17335:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17346:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"17351:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17342:3:17"},"nodeType":"YulFunctionCall","src":"17342:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17335:3:17"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17128:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17136:3:17","type":""}],"src":"16994:366:17"},{"body":{"nodeType":"YulBlock","src":"17537:248:17","statements":[{"nodeType":"YulAssignment","src":"17547:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17559:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"17570:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17555:3:17"},"nodeType":"YulFunctionCall","src":"17555:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17547:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17594:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"17605:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17590:3:17"},"nodeType":"YulFunctionCall","src":"17590:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17613:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"17619:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17609:3:17"},"nodeType":"YulFunctionCall","src":"17609:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17583:6:17"},"nodeType":"YulFunctionCall","src":"17583:47:17"},"nodeType":"YulExpressionStatement","src":"17583:47:17"},{"nodeType":"YulAssignment","src":"17639:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17773:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17647:124:17"},"nodeType":"YulFunctionCall","src":"17647:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17639:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17517:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17532:4:17","type":""}],"src":"17366:419:17"},{"body":{"nodeType":"YulBlock","src":"17856:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17873:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"17896:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"17878:17:17"},"nodeType":"YulFunctionCall","src":"17878:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17866:6:17"},"nodeType":"YulFunctionCall","src":"17866:37:17"},"nodeType":"YulExpressionStatement","src":"17866:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"17844:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"17851:3:17","type":""}],"src":"17791:118:17"},{"body":{"nodeType":"YulBlock","src":"18013:124:17","statements":[{"nodeType":"YulAssignment","src":"18023:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18035:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"18046:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18031:3:17"},"nodeType":"YulFunctionCall","src":"18031:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18023:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"18103:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18116:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"18127:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18112:3:17"},"nodeType":"YulFunctionCall","src":"18112:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"18059:43:17"},"nodeType":"YulFunctionCall","src":"18059:71:17"},"nodeType":"YulExpressionStatement","src":"18059:71:17"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17985:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"17997:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18008:4:17","type":""}],"src":"17915:222:17"},{"body":{"nodeType":"YulBlock","src":"18249:76:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"18271:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"18279:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18267:3:17"},"nodeType":"YulFunctionCall","src":"18267:14:17"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"18283:34:17","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18260:6:17"},"nodeType":"YulFunctionCall","src":"18260:58:17"},"nodeType":"YulExpressionStatement","src":"18260:58:17"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"18241:6:17","type":""}],"src":"18143:182:17"},{"body":{"nodeType":"YulBlock","src":"18477:220:17","statements":[{"nodeType":"YulAssignment","src":"18487:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18553:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"18558:2:17","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18494:58:17"},"nodeType":"YulFunctionCall","src":"18494:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"18487:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18659:3:17"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"18570:88:17"},"nodeType":"YulFunctionCall","src":"18570:93:17"},"nodeType":"YulExpressionStatement","src":"18570:93:17"},{"nodeType":"YulAssignment","src":"18672:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18683:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"18688:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18679:3:17"},"nodeType":"YulFunctionCall","src":"18679:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"18672:3:17"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"18465:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"18473:3:17","type":""}],"src":"18331:366:17"},{"body":{"nodeType":"YulBlock","src":"18874:248:17","statements":[{"nodeType":"YulAssignment","src":"18884:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18896:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"18907:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18892:3:17"},"nodeType":"YulFunctionCall","src":"18892:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18884:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"18931:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"18942:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18927:3:17"},"nodeType":"YulFunctionCall","src":"18927:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18950:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"18956:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18946:3:17"},"nodeType":"YulFunctionCall","src":"18946:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18920:6:17"},"nodeType":"YulFunctionCall","src":"18920:47:17"},"nodeType":"YulExpressionStatement","src":"18920:47:17"},{"nodeType":"YulAssignment","src":"18976:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"19110:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"18984:124:17"},"nodeType":"YulFunctionCall","src":"18984:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18976:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"18854:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"18869:4:17","type":""}],"src":"18703:419:17"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f() {\n revert(0, 0)\n }\n\n function revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421() {\n revert(0, 0)\n }\n\n // struct SharedStructs.Institution\n function abi_decode_t_struct$_Institution_$3449_memory_ptr(headStart, end) -> value {\n if slt(sub(end, headStart), 0x40) { revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f() }\n value := allocate_memory(0x40)\n\n {\n // code\n\n let offset := 0\n\n mstore(add(value, 0x00), abi_decode_t_bytes32(add(headStart, offset), end))\n\n }\n\n {\n // name\n\n let offset := 32\n\n mstore(add(value, 0x20), abi_decode_t_bytes32(add(headStart, offset), end))\n\n }\n\n }\n\n // struct SharedStructs.Institution[]\n function abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let srcEnd := add(offset, mul(length, 0x40))\n if gt(srcEnd, end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let src := offset } lt(src, srcEnd) { src := add(src, 0x40) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_struct$_Institution_$3449_memory_ptr(elementPos, end))\n dst := add(dst, 0x20)\n }\n }\n\n // struct SharedStructs.Institution[]\n function abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function validator_revert_t_uint64(value) {\n if iszero(eq(value, cleanup_t_uint64(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint64(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint64(value)\n }\n\n function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value) -> length {\n\n length := sload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function shift_right_0_unsigned(value) -> newValue {\n newValue :=\n\n shr(0, value)\n\n }\n\n function cleanup_from_storage_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function extract_from_storage_value_offset_0t_bytes32(slot_value) -> value {\n value := cleanup_from_storage_t_bytes32(shift_right_0_unsigned(slot_value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n // struct SharedStructs.Institution -> struct SharedStructs.Institution\n function abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value, pos) {\n let tail := add(pos, 0x40)\n let slotValue := 0\n\n {\n // code\n slotValue := sload(add(value, 0x00))\n let memberValue0 := extract_from_storage_value_offset_0t_bytes32(slotValue)\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x00))\n }\n\n {\n // name\n slotValue := sload(add(value, 0x01))\n let memberValue0 := extract_from_storage_value_offset_0t_bytes32(slotValue)\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x20))\n }\n\n }\n\n function abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value0, pos) -> updatedPos {\n abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value0, pos)\n updatedPos := add(pos, 0x40)\n }\n\n function array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(ptr) -> next {\n next := add(ptr, 0x02)\n }\n\n // struct SharedStructs.Institution[] -> struct SharedStructs.Institution[]\n function abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := srcPtr\n pos := abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100935760003560e01c806379ba50971161006657806379ba5097146100f65780638da5cb5b14610100578063cd9924001461011e578063e30c39781461013a578063f2fde38b1461015857610093565b8063322008821461009857806340ebc677146100b457806347094e2e146100d0578063715018a6146100ec575b600080fd5b6100b260048036038101906100ad9190610d03565b610174565b005b6100ce60048036038101906100c99190610dbd565b6102e9565b005b6100ea60048036038101906100e59190610e3d565b6105b1565b005b6100f461061c565b005b6100fe610630565b005b6101086106bd565b6040516101159190610e79565b60405180910390f35b61013860048036038101906101339190610eca565b6106e7565b005b61014261086c565b60405161014f9190610e79565b60405180910390f35b610172600480360381019061016d9190610f1d565b610896565b005b61017c610943565b60cd6000838152602001908152602001600020600061019b9190610ac0565b60005b815181101561029a5760cd60008481526020019081526020016000208282815181106101cd576101cc610f4a565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061023257610231610f4a565b5b60200260200101516020015181526020018481525060ce600084848151811061025e5761025d610f4a565b5b6020026020010151600001518152602001908152602001600020600082015181600001556020820151816001015590505080600101905061019e565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516102dd91906110b3565b60405180910390a25050565b6102f1610943565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035790611132565b60405180910390fd5b60007f74726561737572790000000000000000000000000000000000000000000000008303610463578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610410906111c4565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610561565b7f61676772656761746f72000000000000000000000000000000000000000000008303610560578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361051a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051190611256565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b80156105ac578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6105b9610943565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516106119190611285565b60405180910390a150565b610624610943565b61062e60006109c1565b565b600061063a6109f2565b90508073ffffffffffffffffffffffffffffffffffffffff1661065b61086c565b73ffffffffffffffffffffffffffffffffffffffff16146106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890611312565b60405180910390fd5b6106ba816109c1565b50565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106ef610943565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590611132565b60405180910390fd5b600181148061076d5750600281145b6107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a39061137e565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303610867578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161085e91906113ad565b60405180910390a35b505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61089e610943565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166108fe6106bd565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61094b6109f2565b73ffffffffffffffffffffffffffffffffffffffff166109696106bd565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611414565b60405180910390fd5b565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556109ef816109fa565b50565b600033905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5080546000825560020290600052602060002090810190610ae19190610ae4565b50565b5b80821115610b0757600080820160009055600182016000905550600201610ae5565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610b3281610b1f565b8114610b3d57600080fd5b50565b600081359050610b4f81610b29565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610ba382610b5a565b810181811067ffffffffffffffff82111715610bc257610bc1610b6b565b5b80604052505050565b6000610bd5610b0b565b9050610be18282610b9a565b919050565b600067ffffffffffffffff821115610c0157610c00610b6b565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215610c3257610c31610c17565b5b610c3c6040610bcb565b90506000610c4c84828501610b40565b6000830152506020610c6084828501610b40565b60208301525092915050565b6000610c7f610c7a84610be6565b610bcb565b90508083825260208201905060408402830185811115610ca257610ca1610c12565b5b835b81811015610ccb5780610cb78882610c1c565b845260208401935050604081019050610ca4565b5050509392505050565b600082601f830112610cea57610ce9610b55565b5b8135610cfa848260208601610c6c565b91505092915050565b60008060408385031215610d1a57610d19610b15565b5b6000610d2885828601610b40565b925050602083013567ffffffffffffffff811115610d4957610d48610b1a565b5b610d5585828601610cd5565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d8a82610d5f565b9050919050565b610d9a81610d7f565b8114610da557600080fd5b50565b600081359050610db781610d91565b92915050565b60008060408385031215610dd457610dd3610b15565b5b6000610de285828601610b40565b9250506020610df385828601610da8565b9150509250929050565b600067ffffffffffffffff82169050919050565b610e1a81610dfd565b8114610e2557600080fd5b50565b600081359050610e3781610e11565b92915050565b600060208284031215610e5357610e52610b15565b5b6000610e6184828501610e28565b91505092915050565b610e7381610d7f565b82525050565b6000602082019050610e8e6000830184610e6a565b92915050565b6000819050919050565b610ea781610e94565b8114610eb257600080fd5b50565b600081359050610ec481610e9e565b92915050565b600080600060608486031215610ee357610ee2610b15565b5b6000610ef186828701610b40565b9350506020610f0286828701610da8565b9250506040610f1386828701610eb5565b9150509250925092565b600060208284031215610f3357610f32610b15565b5b6000610f4184828501610da8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000610fd4610fcf83610faa565b610fb7565b9050919050565b610fe481610b1f565b82525050565b604082016000808301549050610fff81610fc1565b61100c6000860182610fdb565b506001830154905061101d81610fc1565b61102a6020860182610fdb565b5050505050565b600061103d8383610fea565b60408301905092915050565b6000600282019050919050565b600061106182610f79565b61106b8185610f84565b935061107683610f95565b8060005b838110156110a6578161108d8882611031565b975061109883611049565b92505060018101905061107a565b5085935050505092915050565b600060208201905081810360008301526110cd8184611056565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061111c6015836110d5565b9150611127826110e6565b602082019050919050565b6000602082019050818103600083015261114b8161110f565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006111ae6025836110d5565b91506111b982611152565b604082019050919050565b600060208201905081810360008301526111dd816111a1565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006112406027836110d5565b915061124b826111e4565b604082019050919050565b6000602082019050818103600083015261126f81611233565b9050919050565b61127f81610dfd565b82525050565b600060208201905061129a6000830184611276565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006112fc6029836110d5565b9150611307826112a0565b604082019050919050565b6000602082019050818103600083015261132b816112ef565b9050919050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006113686017836110d5565b915061137382611332565b602082019050919050565b600060208201905081810360008301526113978161135b565b9050919050565b6113a781610e94565b82525050565b60006020820190506113c2600083018461139e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113fe6020836110d5565b9150611409826113c8565b602082019050919050565b6000602082019050818103600083015261142d816113f1565b905091905056fea2646970667358221220a5cf2406f8bb007a45008610cf8baf05dde6f3dbf02727307f944766ecf3cbe164736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x93 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79BA5097 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xF6 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x100 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x13A JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x158 JUMPI PUSH2 0x93 JUMP JUMPDEST DUP1 PUSH4 0x32200882 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0xB4 JUMPI DUP1 PUSH4 0x47094E2E EQ PUSH2 0xD0 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0xD03 JUMP JUMPDEST PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC9 SWAP2 SWAP1 PUSH2 0xDBD JUMP JUMPDEST PUSH2 0x2E9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE5 SWAP2 SWAP1 PUSH2 0xE3D JUMP JUMPDEST PUSH2 0x5B1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF4 PUSH2 0x61C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFE PUSH2 0x630 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x108 PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x115 SWAP2 SWAP1 PUSH2 0xE79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x138 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x133 SWAP2 SWAP1 PUSH2 0xECA JUMP JUMPDEST PUSH2 0x6E7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x142 PUSH2 0x86C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14F SWAP2 SWAP1 PUSH2 0xE79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x172 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16D SWAP2 SWAP1 PUSH2 0xF1D JUMP JUMPDEST PUSH2 0x896 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x17C PUSH2 0x943 JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x19B SWAP2 SWAP1 PUSH2 0xAC0 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x29A JUMPI PUSH1 0xCD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1CD JUMPI PUSH2 0x1CC PUSH2 0xF4A JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x232 JUMPI PUSH2 0x231 PUSH2 0xF4A JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP PUSH1 0xCE PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x25E JUMPI PUSH2 0x25D PUSH2 0xF4A JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP DUP1 PUSH1 0x1 ADD SWAP1 POP PUSH2 0x19E JUMP JUMPDEST POP DUP2 PUSH32 0x58F3A30EC15A8D3E09FA65F9EF10219BC7A9A99D872A4ED895C37C2E761AC2AC PUSH1 0xCD PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0x10B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x2F1 PUSH2 0x943 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x360 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x357 SWAP1 PUSH2 0x1132 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x463 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x419 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x410 SWAP1 PUSH2 0x11C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x561 JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x560 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x51A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x511 SWAP1 PUSH2 0x1256 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x5AC JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5B9 PUSH2 0x943 JUMP JUMPDEST DUP1 PUSH1 0x98 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x1CE29A697A4765BD17D91DF93BA75B250B629ECF030553FF1F6AB59F15AE6C7B DUP2 PUSH1 0x40 MLOAD PUSH2 0x611 SWAP2 SWAP1 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x624 PUSH2 0x943 JUMP JUMPDEST PUSH2 0x62E PUSH1 0x0 PUSH2 0x9C1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0x63A PUSH2 0x9F2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x65B PUSH2 0x86C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A8 SWAP1 PUSH2 0x1312 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6BA DUP2 PUSH2 0x9C1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x6EF PUSH2 0x943 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x75E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x755 SWAP1 PUSH2 0x1132 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x76D JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x7AC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7A3 SWAP1 PUSH2 0x137E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x867 JUMPI DUP1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x85E SWAP2 SWAP1 PUSH2 0x13AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x89E PUSH2 0x943 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FE PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x94B PUSH2 0x9F2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x969 PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B6 SWAP1 PUSH2 0x1414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x9EF DUP2 PUSH2 0x9FA JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0xAE1 SWAP2 SWAP1 PUSH2 0xAE4 JUMP JUMPDEST POP JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xB07 JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0xAE5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB32 DUP2 PUSH2 0xB1F JUMP JUMPDEST DUP2 EQ PUSH2 0xB3D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB4F DUP2 PUSH2 0xB29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xBA3 DUP3 PUSH2 0xB5A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xBC2 JUMPI PUSH2 0xBC1 PUSH2 0xB6B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBD5 PUSH2 0xB0B JUMP JUMPDEST SWAP1 POP PUSH2 0xBE1 DUP3 DUP3 PUSH2 0xB9A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xC01 JUMPI PUSH2 0xC00 PUSH2 0xB6B JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC32 JUMPI PUSH2 0xC31 PUSH2 0xC17 JUMP JUMPDEST JUMPDEST PUSH2 0xC3C PUSH1 0x40 PUSH2 0xBCB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xC4C DUP5 DUP3 DUP6 ADD PUSH2 0xB40 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0xC60 DUP5 DUP3 DUP6 ADD PUSH2 0xB40 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC7F PUSH2 0xC7A DUP5 PUSH2 0xBE6 JUMP JUMPDEST PUSH2 0xBCB JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x40 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0xCA2 JUMPI PUSH2 0xCA1 PUSH2 0xC12 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xCCB JUMPI DUP1 PUSH2 0xCB7 DUP9 DUP3 PUSH2 0xC1C JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x40 DUP2 ADD SWAP1 POP PUSH2 0xCA4 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xCEA JUMPI PUSH2 0xCE9 PUSH2 0xB55 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xCFA DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xC6C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD1A JUMPI PUSH2 0xD19 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD28 DUP6 DUP3 DUP7 ADD PUSH2 0xB40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD49 JUMPI PUSH2 0xD48 PUSH2 0xB1A JUMP JUMPDEST JUMPDEST PUSH2 0xD55 DUP6 DUP3 DUP7 ADD PUSH2 0xCD5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD8A DUP3 PUSH2 0xD5F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD9A DUP2 PUSH2 0xD7F JUMP JUMPDEST DUP2 EQ PUSH2 0xDA5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDB7 DUP2 PUSH2 0xD91 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDD4 JUMPI PUSH2 0xDD3 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDE2 DUP6 DUP3 DUP7 ADD PUSH2 0xB40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xDF3 DUP6 DUP3 DUP7 ADD PUSH2 0xDA8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE1A DUP2 PUSH2 0xDFD JUMP JUMPDEST DUP2 EQ PUSH2 0xE25 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE37 DUP2 PUSH2 0xE11 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE53 JUMPI PUSH2 0xE52 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE61 DUP5 DUP3 DUP6 ADD PUSH2 0xE28 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE73 DUP2 PUSH2 0xD7F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE8E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE6A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEA7 DUP2 PUSH2 0xE94 JUMP JUMPDEST DUP2 EQ PUSH2 0xEB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xEC4 DUP2 PUSH2 0xE9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEE3 JUMPI PUSH2 0xEE2 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xEF1 DUP7 DUP3 DUP8 ADD PUSH2 0xB40 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xF02 DUP7 DUP3 DUP8 ADD PUSH2 0xDA8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xF13 DUP7 DUP3 DUP8 ADD PUSH2 0xEB5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF33 JUMPI PUSH2 0xF32 PUSH2 0xB15 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xF41 DUP5 DUP3 DUP6 ADD PUSH2 0xDA8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFD4 PUSH2 0xFCF DUP4 PUSH2 0xFAA JUMP JUMPDEST PUSH2 0xFB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE4 DUP2 PUSH2 0xB1F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0xFFF DUP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH2 0x100C PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0xFDB JUMP JUMPDEST POP PUSH1 0x1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x101D DUP2 PUSH2 0xFC1 JUMP JUMPDEST PUSH2 0x102A PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xFDB JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x103D DUP4 DUP4 PUSH2 0xFEA JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1061 DUP3 PUSH2 0xF79 JUMP JUMPDEST PUSH2 0x106B DUP2 DUP6 PUSH2 0xF84 JUMP JUMPDEST SWAP4 POP PUSH2 0x1076 DUP4 PUSH2 0xF95 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10A6 JUMPI DUP2 PUSH2 0x108D DUP9 DUP3 PUSH2 0x1031 JUMP JUMPDEST SWAP8 POP PUSH2 0x1098 DUP4 PUSH2 0x1049 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x107A JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10CD DUP2 DUP5 PUSH2 0x1056 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x111C PUSH1 0x15 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1127 DUP3 PUSH2 0x10E6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x114B DUP2 PUSH2 0x110F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11AE PUSH1 0x25 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x11B9 DUP3 PUSH2 0x1152 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11DD DUP2 PUSH2 0x11A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1240 PUSH1 0x27 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x124B DUP3 PUSH2 0x11E4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x126F DUP2 PUSH2 0x1233 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x127F DUP2 PUSH2 0xDFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x129A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1276 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FC PUSH1 0x29 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1307 DUP3 PUSH2 0x12A0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x132B DUP2 PUSH2 0x12EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1368 PUSH1 0x17 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1373 DUP3 PUSH2 0x1332 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1397 DUP2 PUSH2 0x135B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x13A7 DUP2 PUSH2 0xE94 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13C2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x139E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13FE PUSH1 0x20 DUP4 PUSH2 0x10D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x1409 DUP3 PUSH2 0x13C8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x142D DUP2 PUSH2 0x13F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 0xCF 0x24 MOD 0xF8 0xBB STOP PUSH27 0x45008610CF8BAF05DDE6F3DBF02727307F944766ECF3CBE164736F PUSH13 0x63430008120033000000000000 ","sourceMap":"338:3609:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2323:539;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3394:551;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2995:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2085:101:1;;;:::i;:::-;;2031:212:0;;;:::i;:::-;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1773:335:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2323:539:11;1355:13:1;:11;:13::i;:::-;2461:21:11::1;:31;2483:8;2461:31;;;;;;;;;;;;2454:38;;;;:::i;:::-;2501:6;2496:283;2513:12;:19;2509:1;:23;2496:283;;;2541:21;:31;2563:8;2541:31;;;;;;;;;;;2578:12;2591:1;2578:15;;;;;;;;:::i;:::-;;;;;;;;2541:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651:94;;;;;;;;2695:12;2708:1;2695:15;;;;;;;;:::i;:::-;;;;;;;;:20;;;2651:94;;;;2731:8;2651:94;;::::0;2599:27:::1;:49;2627:12;2640:1;2627:15;;;;;;;;:::i;:::-;;;;;;;;:20;;;2599:49;;;;;;;;;;;:146;;;;;;;;;;;;;;;;;;;2766:3;;;;;2496:283;;;;2816:8;2787:71;2826:21;:31;2848:8;2826:31;;;;;;;;;;;2787:71;;;;;;:::i;:::-;;;;;;;;2323:539:::0;;:::o;3394:551::-;1355:13:1;:11;:13::i;:::-;3502:1:11::1;3485:19;;:5;:19;;::::0;3477:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3534:12;3554:18;:4;:18:::0;3550:326:::1;;3606:5;3587:24;;:15;;;;;;;;;;;:24;;::::0;3579:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3676:5;3658:15;;:23;;;;;;;;;;;;;;;;;;3696:4;3686:14;;3550:326;;;3715:20;:4;:20:::0;3711:165:::1;;3772:5;3750:27;;:18;;;;;;;;;;;:27;;::::0;3742:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3847:5;3826:18;;:26;;;;;;;;;;;;;;;;;;3867:4;3857:14;;3711:165;3550:326;3883:7;3879:63;;;3931:5;3902:35;;3925:4;3902:35;;;;;;;;;;3879:63;3473:472;3394:551:::0;;:::o;2995:170::-;1355:13:1;:11;:13::i;:::-;3094:19:11::1;3073:18;;:40;;;;;;;;;;;;;;;;;;3122:39;3141:19;3122:39;;;;;;:::i;:::-;;;;;;;;2995:170:::0;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;1773:335:11:-;1355:13:1;:11;:13::i;:::-;1894:1:11::1;1877:19;;:5;:19;;::::0;1869:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1944:1;1934:6;:11;:26;;;;1959:1;1949:6;:11;1934:26;1926:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1996:15;:4;:15:::0;1992:113:::1;;2045:6;2018:17;:24;2036:5;2018:24;;;;;;;;;;;;;;;:33;;;;2086:5;2061:39;;2080:4;2061:39;2093:6;2061:39;;;;;;:::i;:::-;;;;;;;;1992:113;1773:335:::0;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;1436:178::-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:17:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:117::-;799:1;796;789:12;813:102;854:6;905:2;901:7;896:2;889:5;885:14;881:28;871:38;;813:102;;;:::o;921:180::-;969:77;966:1;959:88;1066:4;1063:1;1056:15;1090:4;1087:1;1080:15;1107:281;1190:27;1212:4;1190:27;:::i;:::-;1182:6;1178:40;1320:6;1308:10;1305:22;1284:18;1272:10;1269:34;1266:62;1263:88;;;1331:18;;:::i;:::-;1263:88;1371:10;1367:2;1360:22;1150:238;1107:281;;:::o;1394:129::-;1428:6;1455:20;;:::i;:::-;1445:30;;1484:33;1512:4;1504:6;1484:33;:::i;:::-;1394:129;;;:::o;1529:340::-;1635:4;1725:18;1717:6;1714:30;1711:56;;;1747:18;;:::i;:::-;1711:56;1797:4;1789:6;1785:17;1777:25;;1857:4;1851;1847:15;1839:23;;1529:340;;;:::o;1875:117::-;1984:1;1981;1974:12;1998:117;2107:1;2104;2097:12;2284:578;2362:5;2406:4;2394:9;2389:3;2385:19;2381:30;2378:117;;;2414:79;;:::i;:::-;2378:117;2513:21;2529:4;2513:21;:::i;:::-;2504:30;;2593:1;2633:49;2678:3;2669:6;2658:9;2654:22;2633:49;:::i;:::-;2626:4;2619:5;2615:16;2608:75;2544:150;2753:2;2794:49;2839:3;2830:6;2819:9;2815:22;2794:49;:::i;:::-;2787:4;2780:5;2776:16;2769:75;2704:151;2284:578;;;;:::o;2910:797::-;3035:5;3060:110;3076:93;3162:6;3076:93;:::i;:::-;3060:110;:::i;:::-;3051:119;;3190:5;3219:6;3212:5;3205:21;3253:4;3246:5;3242:16;3235:23;;3306:4;3298:6;3294:17;3286:6;3282:30;3335:3;3327:6;3324:15;3321:122;;;3354:79;;:::i;:::-;3321:122;3469:6;3452:249;3486:6;3481:3;3478:15;3452:249;;;3561:3;3590:66;3652:3;3640:10;3590:66;:::i;:::-;3585:3;3578:79;3686:4;3681:3;3677:14;3670:21;;3528:173;3512:4;3507:3;3503:14;3496:21;;3452:249;;;3456:21;3041:666;;2910:797;;;;;:::o;3755:428::-;3855:5;3904:3;3897:4;3889:6;3885:17;3881:27;3871:122;;3912:79;;:::i;:::-;3871:122;4029:6;4016:20;4054:123;4173:3;4165:6;4158:4;4150:6;4146:17;4054:123;:::i;:::-;4045:132;;3861:322;3755:428;;;;:::o;4189:742::-;4311:6;4319;4368:2;4356:9;4347:7;4343:23;4339:32;4336:119;;;4374:79;;:::i;:::-;4336:119;4494:1;4519:53;4564:7;4555:6;4544:9;4540:22;4519:53;:::i;:::-;4509:63;;4465:117;4649:2;4638:9;4634:18;4621:32;4680:18;4672:6;4669:30;4666:117;;;4702:79;;:::i;:::-;4666:117;4807:107;4906:7;4897:6;4886:9;4882:22;4807:107;:::i;:::-;4797:117;;4592:332;4189:742;;;;;:::o;4937:126::-;4974:7;5014:42;5007:5;5003:54;4992:65;;4937:126;;;:::o;5069:96::-;5106:7;5135:24;5153:5;5135:24;:::i;:::-;5124:35;;5069:96;;;:::o;5171:122::-;5244:24;5262:5;5244:24;:::i;:::-;5237:5;5234:35;5224:63;;5283:1;5280;5273:12;5224:63;5171:122;:::o;5299:139::-;5345:5;5383:6;5370:20;5361:29;;5399:33;5426:5;5399:33;:::i;:::-;5299:139;;;;:::o;5444:474::-;5512:6;5520;5569:2;5557:9;5548:7;5544:23;5540:32;5537:119;;;5575:79;;:::i;:::-;5537:119;5695:1;5720:53;5765:7;5756:6;5745:9;5741:22;5720:53;:::i;:::-;5710:63;;5666:117;5822:2;5848:53;5893:7;5884:6;5873:9;5869:22;5848:53;:::i;:::-;5838:63;;5793:118;5444:474;;;;;:::o;5924:101::-;5960:7;6000:18;5993:5;5989:30;5978:41;;5924:101;;;:::o;6031:120::-;6103:23;6120:5;6103:23;:::i;:::-;6096:5;6093:34;6083:62;;6141:1;6138;6131:12;6083:62;6031:120;:::o;6157:137::-;6202:5;6240:6;6227:20;6218:29;;6256:32;6282:5;6256:32;:::i;:::-;6157:137;;;;:::o;6300:327::-;6358:6;6407:2;6395:9;6386:7;6382:23;6378:32;6375:119;;;6413:79;;:::i;:::-;6375:119;6533:1;6558:52;6602:7;6593:6;6582:9;6578:22;6558:52;:::i;:::-;6548:62;;6504:116;6300:327;;;;:::o;6633:118::-;6720:24;6738:5;6720:24;:::i;:::-;6715:3;6708:37;6633:118;;:::o;6757:222::-;6850:4;6888:2;6877:9;6873:18;6865:26;;6901:71;6969:1;6958:9;6954:17;6945:6;6901:71;:::i;:::-;6757:222;;;;:::o;6985:77::-;7022:7;7051:5;7040:16;;6985:77;;;:::o;7068:122::-;7141:24;7159:5;7141:24;:::i;:::-;7134:5;7131:35;7121:63;;7180:1;7177;7170:12;7121:63;7068:122;:::o;7196:139::-;7242:5;7280:6;7267:20;7258:29;;7296:33;7323:5;7296:33;:::i;:::-;7196:139;;;;:::o;7341:619::-;7418:6;7426;7434;7483:2;7471:9;7462:7;7458:23;7454:32;7451:119;;;7489:79;;:::i;:::-;7451:119;7609:1;7634:53;7679:7;7670:6;7659:9;7655:22;7634:53;:::i;:::-;7624:63;;7580:117;7736:2;7762:53;7807:7;7798:6;7787:9;7783:22;7762:53;:::i;:::-;7752:63;;7707:118;7864:2;7890:53;7935:7;7926:6;7915:9;7911:22;7890:53;:::i;:::-;7880:63;;7835:118;7341:619;;;;;:::o;7966:329::-;8025:6;8074:2;8062:9;8053:7;8049:23;8045:32;8042:119;;;8080:79;;:::i;:::-;8042:119;8200:1;8225:53;8270:7;8261:6;8250:9;8246:22;8225:53;:::i;:::-;8215:63;;8171:117;7966:329;;;;:::o;8301:180::-;8349:77;8346:1;8339:88;8446:4;8443:1;8436:15;8470:4;8467:1;8460:15;8487:137;8577:6;8611:5;8605:12;8595:22;;8487:137;;;:::o;8630:213::-;8758:11;8792:6;8787:3;8780:19;8832:4;8827:3;8823:14;8808:29;;8630:213;;;;:::o;8849:182::-;8939:4;8962:3;8954:11;;8985:3;8982:1;8975:14;9019:4;9016:1;9006:18;8998:26;;8849:182;;;:::o;9037:102::-;9079:8;9126:5;9123:1;9119:13;9098:34;;9037:102;;;:::o;9145:90::-;9195:7;9224:5;9213:16;;9145:90;;;:::o;9241:166::-;9310:5;9335:66;9366:34;9389:10;9366:34;:::i;:::-;9335:66;:::i;:::-;9326:75;;9241:166;;;:::o;9413:108::-;9490:24;9508:5;9490:24;:::i;:::-;9485:3;9478:37;9413:108;;:::o;9603:689::-;9745:4;9740:3;9736:14;9776:1;9851:4;9844:5;9840:16;9834:23;9821:36;;9890:55;9935:9;9890:55;:::i;:::-;9958:63;10015:4;10010:3;10006:14;9992:12;9958:63;:::i;:::-;9787:244;10105:4;10098:5;10094:16;10088:23;10075:36;;10144:55;10189:9;10144:55;:::i;:::-;10212:63;10269:4;10264:3;10260:14;10246:12;10212:63;:::i;:::-;10041:244;9714:578;;9603:689;;:::o;10298:289::-;10422:10;10443:101;10540:3;10532:6;10443:101;:::i;:::-;10576:4;10571:3;10567:14;10553:28;;10298:289;;;;:::o;10593:136::-;10686:4;10718;10713:3;10709:14;10701:22;;10593:136;;;:::o;10815:930::-;10986:3;11015:77;11086:5;11015:77;:::i;:::-;11108:115;11216:6;11211:3;11108:115;:::i;:::-;11101:122;;11247:79;11320:5;11247:79;:::i;:::-;11349:7;11380:1;11365:355;11390:6;11387:1;11384:13;11365:355;;;11460:6;11486:118;11600:3;11585:13;11486:118;:::i;:::-;11479:125;;11627:83;11703:6;11627:83;:::i;:::-;11617:93;;11425:295;11412:1;11409;11405:9;11400:14;;11365:355;;;11369:14;11736:3;11729:10;;10991:754;;;10815:930;;;;:::o;11751:477::-;11946:4;11984:2;11973:9;11969:18;11961:26;;12033:9;12027:4;12023:20;12019:1;12008:9;12004:17;11997:47;12061:160;12216:4;12207:6;12061:160;:::i;:::-;12053:168;;11751:477;;;;:::o;12234:169::-;12318:11;12352:6;12347:3;12340:19;12392:4;12387:3;12383:14;12368:29;;12234:169;;;;:::o;12409:171::-;12549:23;12545:1;12537:6;12533:14;12526:47;12409:171;:::o;12586:366::-;12728:3;12749:67;12813:2;12808:3;12749:67;:::i;:::-;12742:74;;12825:93;12914:3;12825:93;:::i;:::-;12943:2;12938:3;12934:12;12927:19;;12586:366;;;:::o;12958:419::-;13124:4;13162:2;13151:9;13147:18;13139:26;;13211:9;13205:4;13201:20;13197:1;13186:9;13182:17;13175:47;13239:131;13365:4;13239:131;:::i;:::-;13231:139;;12958:419;;;:::o;13383:224::-;13523:34;13519:1;13511:6;13507:14;13500:58;13592:7;13587:2;13579:6;13575:15;13568:32;13383:224;:::o;13613:366::-;13755:3;13776:67;13840:2;13835:3;13776:67;:::i;:::-;13769:74;;13852:93;13941:3;13852:93;:::i;:::-;13970:2;13965:3;13961:12;13954:19;;13613:366;;;:::o;13985:419::-;14151:4;14189:2;14178:9;14174:18;14166:26;;14238:9;14232:4;14228:20;14224:1;14213:9;14209:17;14202:47;14266:131;14392:4;14266:131;:::i;:::-;14258:139;;13985:419;;;:::o;14410:226::-;14550:34;14546:1;14538:6;14534:14;14527:58;14619:9;14614:2;14606:6;14602:15;14595:34;14410:226;:::o;14642:366::-;14784:3;14805:67;14869:2;14864:3;14805:67;:::i;:::-;14798:74;;14881:93;14970:3;14881:93;:::i;:::-;14999:2;14994:3;14990:12;14983:19;;14642:366;;;:::o;15014:419::-;15180:4;15218:2;15207:9;15203:18;15195:26;;15267:9;15261:4;15257:20;15253:1;15242:9;15238:17;15231:47;15295:131;15421:4;15295:131;:::i;:::-;15287:139;;15014:419;;;:::o;15439:115::-;15524:23;15541:5;15524:23;:::i;:::-;15519:3;15512:36;15439:115;;:::o;15560:218::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15702:69;15768:1;15757:9;15753:17;15744:6;15702:69;:::i;:::-;15560:218;;;;:::o;15784:228::-;15924:34;15920:1;15912:6;15908:14;15901:58;15993:11;15988:2;15980:6;15976:15;15969:36;15784:228;:::o;16018:366::-;16160:3;16181:67;16245:2;16240:3;16181:67;:::i;:::-;16174:74;;16257:93;16346:3;16257:93;:::i;:::-;16375:2;16370:3;16366:12;16359:19;;16018:366;;;:::o;16390:419::-;16556:4;16594:2;16583:9;16579:18;16571:26;;16643:9;16637:4;16633:20;16629:1;16618:9;16614:17;16607:47;16671:131;16797:4;16671:131;:::i;:::-;16663:139;;16390:419;;;:::o;16815:173::-;16955:25;16951:1;16943:6;16939:14;16932:49;16815:173;:::o;16994:366::-;17136:3;17157:67;17221:2;17216:3;17157:67;:::i;:::-;17150:74;;17233:93;17322:3;17233:93;:::i;:::-;17351:2;17346:3;17342:12;17335:19;;16994:366;;;:::o;17366:419::-;17532:4;17570:2;17559:9;17555:18;17547:26;;17619:9;17613:4;17609:20;17605:1;17594:9;17590:17;17583:47;17647:131;17773:4;17647:131;:::i;:::-;17639:139;;17366:419;;;:::o;17791:118::-;17878:24;17896:5;17878:24;:::i;:::-;17873:3;17866:37;17791:118;;:::o;17915:222::-;18008:4;18046:2;18035:9;18031:18;18023:26;;18059:71;18127:1;18116:9;18112:17;18103:6;18059:71;:::i;:::-;17915:222;;;;:::o;18143:182::-;18283:34;18279:1;18271:6;18267:14;18260:58;18143:182;:::o;18331:366::-;18473:3;18494:67;18558:2;18553:3;18494:67;:::i;:::-;18487:74;;18570:93;18659:3;18570:93;:::i;:::-;18688:2;18683:3;18679:12;18672:19;;18331:366;;;:::o;18703:419::-;18869:4;18907:2;18896:9;18892:18;18884:26;;18956:9;18950:4;18946:20;18942:1;18931:9;18927:17;18920:47;18984:131;19110:4;18984:131;:::i;:::-;18976:139;;18703:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"1045200","executionCost":"1087","totalCost":"1046287"},"external":{"acceptOwnership()":"54658","owner()":"2544","pendingOwner()":"2588","renounceOwnership()":"54736","setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","transferOwnership(address)":"infinite","updateProtocolAddress(bytes32,address)":"31094","updateProtocolFee(uint64)":"infinite"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":"32200882","settingManagerBool(bytes32,address,uint256)":"cd992400","transferOwnership(address)":"f2fde38b","updateProtocolAddress(bytes32,address)":"40ebc677","updateProtocolFee(uint64)":"47094e2e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"protocolFee\",\"type\":\"uint64\"}],\"name\":\"ProtocolFeeUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"indexed\":false,\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"institutions\",\"type\":\"tuple[]\"}],\"name\":\"SupportedInstitutionsUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"institutions\",\"type\":\"tuple[]\"}],\"name\":\"setSupportedInstitutions\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_protocolFeePercent\",\"type\":\"uint64\"}],\"name\":\"updateProtocolFee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"setSupportedInstitutions(bytes32,(bytes32,bytes32)[])\":{\"details\":\"Sets the supported institutions for a specific currency.\",\"params\":{\"currency\":\"The currency for which the institutions are being set.\",\"institutions\":\"The array of institutions to be set.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}},\"updateProtocolFee(uint64)\":{\"details\":\"Updates the protocol fee percentage.\",\"params\":{\"_protocolFeePercent\":\"The new protocol fee percentage to be set.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GatewaySettingManager.sol\":\"GatewaySettingManager\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership} and {acceptOwnership}.\\n *\\n * This module is used through inheritance. It will make available all functions\\n * from parent (Ownable).\\n */\\nabstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\nimport {SharedStructs} from './libraries/SharedStructs.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\n\\t// this should decrease if more slots are needed on this contract to avoid collisions with base contract\\n\\tuint256[50] private __gap;\\n\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\tmapping(bytes32 => SharedStructs.Institution[]) internal supportedInstitutions;\\n\\tmapping(bytes32 => SharedStructs.InstitutionByCode) internal supportedInstitutionsByCode;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent SupportedInstitutionsUpdated(\\n\\t\\tbytes32 indexed currency,\\n\\t\\tSharedStructs.Institution[] institutions\\n\\t);\\n\\tevent ProtocolFeeUpdated(uint64 protocolFee);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets the supported institutions for a specific currency.\\n\\t * @param currency The currency for which the institutions are being set.\\n\\t * @param institutions The array of institutions to be set.\\n\\t */\\n\\tfunction setSupportedInstitutions(\\n\\t\\tbytes32 currency,\\n\\t\\tSharedStructs.Institution[] memory institutions\\n\\t) external onlyOwner {\\n\\t\\tdelete supportedInstitutions[currency];\\n\\t\\tfor (uint i; i < institutions.length; ) {\\n\\t\\t\\tsupportedInstitutions[currency].push(institutions[i]);\\n\\t\\t\\tsupportedInstitutionsByCode[institutions[i].code] = SharedStructs.InstitutionByCode({\\n\\t\\t\\t\\tname: institutions[i].name,\\n\\t\\t\\t\\tcurrency: currency\\n\\t\\t\\t});\\n\\t\\t\\tunchecked {\\n\\t\\t\\t\\t++i;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\temit SupportedInstitutionsUpdated(currency, supportedInstitutions[currency]);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates the protocol fee percentage.\\n\\t * @param _protocolFeePercent The new protocol fee percentage to be set.\\n\\t */\\n\\tfunction updateProtocolFee(uint64 _protocolFeePercent) external onlyOwner {\\n\\t\\tprotocolFeePercent = _protocolFeePercent;\\n\\t\\temit ProtocolFeeUpdated(_protocolFeePercent);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n}\\n\",\"keccak256\":\"0x7bf3fc733cbf8f2815924c2f10199aa0836d3b5d5b5b92b10cd4855d65773477\",\"license\":\"UNLICENSED\"},\"contracts/libraries/SharedStructs.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nlibrary SharedStructs {\\n /**\\n * @dev Struct representing an institution.\\n * @param code The code of the institution.\\n * @param name The name of the institution.\\n */\\n struct Institution {\\n bytes32 code;\\n bytes32 name;\\n }\\n\\n /**\\n * @dev Struct representing an institution by code.\\n * @param name The name of the institution.\\n * @param currency The currency of the institution.\\n */\\n struct InstitutionByCode {\\n bytes32 name;\\n bytes32 currency;\\n }\\n}\",\"keccak256\":\"0x6c50c51961ec2a2740e0f3cbfc2bdb7b80a5c728dec92ebb98d84893ac8adb5a\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":2260,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":2262,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":2264,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":2266,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":2270,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"__gap","offset":0,"slot":"154","type":"t_array(t_uint256)50_storage"},{"astId":2274,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"_isTokenSupported","offset":0,"slot":"204","type":"t_mapping(t_address,t_uint256)"},{"astId":2280,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"supportedInstitutions","offset":0,"slot":"205","type":"t_mapping(t_bytes32,t_array(t_struct(Institution)3449_storage)dyn_storage)"},{"astId":2285,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"supportedInstitutionsByCode","offset":0,"slot":"206","type":"t_mapping(t_bytes32,t_struct(InstitutionByCode)3454_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_struct(Institution)3449_storage)dyn_storage":{"base":"t_struct(Institution)3449_storage","encoding":"dynamic_array","label":"struct SharedStructs.Institution[]","numberOfBytes":"32"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_bytes32,t_array(t_struct(Institution)3449_storage)dyn_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct SharedStructs.Institution[])","numberOfBytes":"32","value":"t_array(t_struct(Institution)3449_storage)dyn_storage"},"t_mapping(t_bytes32,t_struct(InstitutionByCode)3454_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct SharedStructs.InstitutionByCode)","numberOfBytes":"32","value":"t_struct(InstitutionByCode)3454_storage"},"t_struct(Institution)3449_storage":{"encoding":"inplace","label":"struct SharedStructs.Institution","members":[{"astId":3446,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"code","offset":0,"slot":"0","type":"t_bytes32"},{"astId":3448,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"name","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_struct(InstitutionByCode)3454_storage":{"encoding":"inplace","label":"struct SharedStructs.InstitutionByCode","members":[{"astId":3451,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"name","offset":0,"slot":"0","type":"t_bytes32"},{"astId":3453,"contract":"contracts/GatewaySettingManager.sol:GatewaySettingManager","label":"currency","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"}}},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/GatewayV2.sol":{"GatewayV2":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"institutionCode","type":"bytes32"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint96","name":"settlePercent","type":"uint96"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"ProtocolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"protocolFee","type":"uint64"}],"name":"ProtocolFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"SetFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"what","type":"bytes32"},{"indexed":true,"internalType":"address","name":"value","type":"address"},{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"}],"name":"SettingManagerBool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"currency","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"indexed":false,"internalType":"struct SharedStructs.Institution[]","name":"institutions","type":"tuple[]"}],"name":"SupportedInstitutionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_institutionCode","type":"bytes32"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFeeDetails","outputs":[{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGatewayV2.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"currency","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"internalType":"struct SharedStructs.Institution[]","name":"institutions","type":"tuple[]"}],"name":"setSupportedInstitutions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"},{"internalType":"uint256","name":"status","type":"uint256"}],"name":"settingManagerBool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"what","type":"bytes32"},{"internalType":"address","name":"value","type":"address"}],"name":"updateProtocolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_protocolFeePercent","type":"uint64"}],"name":"updateProtocolFee","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"Initialized(uint8)":{"details":"Triggered when the contract has been initialized or reinitialized."},"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","institutionCode":"The code of the institution.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint96)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"Paused(address)":{"details":"Emitted when the pause is triggered by `account`."},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}},"Unpaused(address)":{"details":"Emitted when the pause is lifted by `account`."}},"kind":"dev","methods":{"acceptOwnership()":{"details":"The new owner accepts the ownership transfer."},"constructor":{"custom:oz-upgrades-unsafe-allow":"constructor"},"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":{"details":"See {createOrder-IGateway}. "},"getFeeDetails()":{"details":"See {getFeeDetails-IGateway}. "},"getOrderInfo(bytes32)":{"details":"See {getOrderInfo-IGateway}. "},"initialize()":{"details":"Initialize function."},"isTokenSupported(address)":{"details":"See {isTokenSupported-IGateway}. "},"owner()":{"details":"Returns the address of the current owner."},"pause()":{"details":"Pause the contract."},"paused()":{"details":"Returns true if the contract is paused, and false otherwise."},"pendingOwner()":{"details":"Returns the address of the pending owner."},"refund(uint256,bytes32)":{"details":"See {refund-IGateway}. "},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."},"setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":{"details":"Sets the supported institutions for a specific currency.","params":{"currency":"The currency for which the institutions are being set.","institutions":"The array of institutions to be set."}},"settingManagerBool(bytes32,address,uint256)":{"details":"Sets the boolean value for a specific setting.","params":{"status":"The boolean value to be set. Requirements: - The value must not be a zero address.","value":"The address or value associated with the setting.","what":"The setting to be updated."}},"settle(bytes32,bytes32,address,uint64)":{"details":"See {settle-IGateway}. "},"transferOwnership(address)":{"details":"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner."},"unpause()":{"details":"Unpause the contract."},"updateProtocolAddress(bytes32,address)":{"details":"Updates a protocol address.","params":{"value":"The new address to be set. Requirements: - The value must not be a zero address.","what":"The address type to be updated (treasury or aggregator)."}},"updateProtocolFee(uint64)":{"details":"Updates the protocol fee percentage.","params":{"_protocolFeePercent":"The new protocol fee percentage to be set."}}},"title":"Gateway","version":1},"evm":{"bytecode":{"functionDebugData":{"@_2560":{"entryPoint":null,"id":2560,"parameterSlots":0,"returnSlots":0},"@_disableInitializers_389":{"entryPoint":40,"id":389,"parameterSlots":0,"returnSlots":0},"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack":{"entryPoint":334,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":420,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":373,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":437,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":238,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":407,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a":{"entryPoint":255,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:1638:17","statements":[{"body":{"nodeType":"YulBlock","src":"103:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"120:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"125:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"113:6:17"},"nodeType":"YulFunctionCall","src":"113:19:17"},"nodeType":"YulExpressionStatement","src":"113:19:17"},{"nodeType":"YulAssignment","src":"141:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"160:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"165:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"156:3:17"},"nodeType":"YulFunctionCall","src":"156:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"141:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"75:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"80:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"91:11:17","type":""}],"src":"7:169:17"},{"body":{"nodeType":"YulBlock","src":"288:120:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"310:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"318:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"306:3:17"},"nodeType":"YulFunctionCall","src":"306:14:17"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320696e697469","kind":"string","nodeType":"YulLiteral","src":"322:34:17","type":"","value":"Initializable: contract is initi"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"299:6:17"},"nodeType":"YulFunctionCall","src":"299:58:17"},"nodeType":"YulExpressionStatement","src":"299:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"378:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"386:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"374:3:17"},"nodeType":"YulFunctionCall","src":"374:15:17"},{"hexValue":"616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"391:9:17","type":"","value":"alizing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"367:6:17"},"nodeType":"YulFunctionCall","src":"367:34:17"},"nodeType":"YulExpressionStatement","src":"367:34:17"}]},"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"280:6:17","type":""}],"src":"182:226:17"},{"body":{"nodeType":"YulBlock","src":"560:220:17","statements":[{"nodeType":"YulAssignment","src":"570:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"636:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"641:2:17","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"577:58:17"},"nodeType":"YulFunctionCall","src":"577:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"570:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"742:3:17"}],"functionName":{"name":"store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a","nodeType":"YulIdentifier","src":"653:88:17"},"nodeType":"YulFunctionCall","src":"653:93:17"},"nodeType":"YulExpressionStatement","src":"653:93:17"},{"nodeType":"YulAssignment","src":"755:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"766:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"771:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"762:3:17"},"nodeType":"YulFunctionCall","src":"762:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"755:3:17"}]}]},"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"548:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"556:3:17","type":""}],"src":"414:366:17"},{"body":{"nodeType":"YulBlock","src":"957:248:17","statements":[{"nodeType":"YulAssignment","src":"967:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"979:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"990:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"975:3:17"},"nodeType":"YulFunctionCall","src":"975:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"967:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1014:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1025:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1010:3:17"},"nodeType":"YulFunctionCall","src":"1010:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1033:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"1039:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1029:3:17"},"nodeType":"YulFunctionCall","src":"1029:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1003:6:17"},"nodeType":"YulFunctionCall","src":"1003:47:17"},"nodeType":"YulExpressionStatement","src":"1003:47:17"},{"nodeType":"YulAssignment","src":"1059:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1193:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1067:124:17"},"nodeType":"YulFunctionCall","src":"1067:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1059:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"937:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"952:4:17","type":""}],"src":"786:419:17"},{"body":{"nodeType":"YulBlock","src":"1254:43:17","statements":[{"nodeType":"YulAssignment","src":"1264:27:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1279:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"1286:4:17","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1275:3:17"},"nodeType":"YulFunctionCall","src":"1275:16:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1264:7:17"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1236:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1246:7:17","type":""}],"src":"1211:86:17"},{"body":{"nodeType":"YulBlock","src":"1364:51:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"1381:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1402:5:17"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"1386:15:17"},"nodeType":"YulFunctionCall","src":"1386:22:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1374:6:17"},"nodeType":"YulFunctionCall","src":"1374:35:17"},"nodeType":"YulExpressionStatement","src":"1374:35:17"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1352:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"1359:3:17","type":""}],"src":"1303:112:17"},{"body":{"nodeType":"YulBlock","src":"1515:120:17","statements":[{"nodeType":"YulAssignment","src":"1525:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1537:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1548:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1533:3:17"},"nodeType":"YulFunctionCall","src":"1533:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1525:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1601:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1614:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1625:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1610:3:17"},"nodeType":"YulFunctionCall","src":"1610:17:17"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"1561:39:17"},"nodeType":"YulFunctionCall","src":"1561:67:17"},"nodeType":"YulExpressionStatement","src":"1561:67:17"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1487:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1499:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1510:4:17","type":""}],"src":"1421:214:17"}]},"contents":"{\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is initi\")\n\n mstore(add(memPtr, 32), \"alizing\")\n\n }\n\n function abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a53f5879e7518078ff19b2e3d6b41e757a87364ec6872787feb45bfc41131d1a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b50620000226200002860201b60201c565b620001d2565b600060019054906101000a900460ff16156200007b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000729062000175565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff1614620000ec5760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000e39190620001b5565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b60006200015d602783620000ee565b91506200016a82620000ff565b604082019050919050565b6000602082019050818103600083015262000190816200014e565b9050919050565b600060ff82169050919050565b620001af8162000197565b82525050565b6000602082019050620001cc6000830184620001a4565b92915050565b613e9280620001e26000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806379ba5097116100ad578063cd99240011610071578063cd99240014610297578063d12ff20a146102b3578063e30c3978146102e3578063f22ee70414610301578063f2fde38b1461033157610121565b806379ba50971461023c5780638129fc1c146102465780638456cb59146102505780638da5cb5b1461025a578063b810c6361461027857610121565b80635c975abb116100f45780635c975abb14610184578063715018a6146101a257806371eedb88146101ac57806375151b63146101dc578063768c6ec01461020c57610121565b806332200882146101265780633f4ba83a1461014257806340ebc6771461014c57806347094e2e14610168575b600080fd5b610140600480360381019061013b91906128f7565b61034d565b005b61014a6104c2565b005b610166600480360381019061016191906129b1565b6104d4565b005b610182600480360381019061017d9190612a31565b61079c565b005b61018c610807565b6040516101999190612a79565b60405180910390f35b6101aa61081e565b005b6101c660048036038101906101c19190612aca565b610832565b6040516101d39190612a79565b60405180910390f35b6101f660048036038101906101f19190612b0a565b610cd2565b6040516102039190612a79565b60405180910390f35b61022660048036038101906102219190612b37565b610d2e565b6040516102339190612c84565b60405180910390f35b610244610f47565b005b61024e610fd4565b005b610258611124565b005b610262611136565b60405161026f9190612caf565b60405180910390f35b610280611160565b60405161028e929190612ce8565b60405180910390f35b6102b160048036038101906102ac9190612d11565b611185565b005b6102cd60048036038101906102c89190612deb565b61130a565b6040516102da9190612ed0565b60405180910390f35b6102eb611851565b6040516102f89190612caf565b60405180910390f35b61031b60048036038101906103169190612eeb565b61187b565b6040516103289190612a79565b60405180910390f35b61034b60048036038101906103469190612b0a565b611ed7565b005b610355611f84565b60cd6000838152602001908152602001600020600061037491906125f7565b60005b81518110156104735760cd60008481526020019081526020016000208282815181106103a6576103a5612f52565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061040b5761040a612f52565b5b60200260200101516020015181526020018481525060ce600084848151811061043757610436612f52565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610377565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516104b691906130bb565b60405180910390a25050565b6104ca611f84565b6104d2612002565b565b6104dc611f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361054b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105429061313a565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361064e578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb906131cc565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905061074c565b7f61676772656761746f7200000000000000000000000000000000000000000000830361074b578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc9061325e565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610797578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6107a4611f84565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516107fc919061327e565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b610826611f84565b6108306000612065565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906132e5565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613351565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff161561098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906133bd565b60405180910390fd5b8261010160008481526020019081526020016000206004015410156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90613429565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610a7c929190613449565b6020604051808303816000875af1158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf919061349e565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610b7491906134fa565b610b7e919061352e565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610c2e91906134fa565b6040518363ffffffff1660e01b8152600401610c4b929190613449565b6020604051808303816000875af1158015610c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8e919061349e565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610cbf9190613562565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d245760019050610d29565b600090505b919050565b610d3661261b565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b6000610f51612096565b90508073ffffffffffffffffffffffffffffffffffffffff16610f72611851565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906135ef565b60405180910390fd5b610fd181612065565b50565b60008060019054906101000a900460ff161590508080156110055750600160008054906101000a900460ff1660ff16105b8061103257506110143061209e565b1580156110315750600160008054906101000a900460ff1660ff16145b5b611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613681565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156110ae576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506110c06120c1565b6110c861211a565b80156111215760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161111891906136f3565b60405180910390a15b50565b61112c611f84565b611134612173565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b61118d611f84565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061313a565b60405180910390fd5b600181148061120b5750600281145b61124a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112419061375a565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611305578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516112fc9190613562565b60405180910390a35b505050565b60006113146121d6565b6113228a8a8689898d612220565b60008383905003611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906137c6565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d61139291906134fa565b6040518463ffffffff1660e01b81526004016113b0939291906137e6565b6020604051808303816000875af11580156113cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f3919061349e565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906114459061381d565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405160200161149d929190613449565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6114e69190613865565b6114f091906138d6565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6115b8919061352e565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161183b96959493929190613974565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906132e5565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613351565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff16156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce906133bd565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611a5b91906139d0565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d8d576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611cb457610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611bdd929190613449565b6020604051808303816000875af1158015611bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c20919061349e565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611d8c578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611d47929190613449565b6020604051808303816000875af1158015611d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8a919061349e565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611dbf9190613865565b611dc991906138d6565b90508061010160008881526020019081526020016000206007016000828254611df2919061352e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611e34929190613449565b6020604051808303816000875af1158015611e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e77919061349e565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ec1929190613a41565b60405180910390a3600192505050949350505050565b611edf611f84565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611f3f611136565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611f8c612096565b73ffffffffffffffffffffffffffffffffffffffff16611faa611136565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790613ab6565b60405180910390fd5b565b61200a61241b565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61204e612096565b60405161205b9190612caf565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561209381612464565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613b48565b60405180910390fd5b61211861252a565b565b600060019054906101000a900460ff16612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613b48565b60405180910390fd5b61217161258b565b565b61217b6121d6565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121bf612096565b6040516121cc9190612caf565b60405180910390a1565b6121de610807565b1561221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613bb4565b60405180910390fd5b565b600160cc60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613c20565b60405180910390fd5b600085036122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90613c8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613cf8565b60405180910390fd5b6000602060ff161161239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290613d64565b60405180910390fd5b6000821461241357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990613dd0565b60405180910390fd5b5b505050505050565b612423610807565b612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990613e3c565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff16612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090613b48565b60405180910390fd5b612589612584612096565b612065565b565b600060019054906101000a900460ff166125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190613b48565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061261891906126d8565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b5b808211156126fb576000808201600090556001820160009055506002016126d9565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61272681612713565b811461273157600080fd5b50565b6000813590506127438161271d565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127978261274e565b810181811067ffffffffffffffff821117156127b6576127b561275f565b5b80604052505050565b60006127c96126ff565b90506127d5828261278e565b919050565b600067ffffffffffffffff8211156127f5576127f461275f565b5b602082029050602081019050919050565b600080fd5b600080fd5b6000604082840312156128265761282561280b565b5b61283060406127bf565b9050600061284084828501612734565b600083015250602061285484828501612734565b60208301525092915050565b600061287361286e846127da565b6127bf565b9050808382526020820190506040840283018581111561289657612895612806565b5b835b818110156128bf57806128ab8882612810565b845260208401935050604081019050612898565b5050509392505050565b600082601f8301126128de576128dd612749565b5b81356128ee848260208601612860565b91505092915050565b6000806040838503121561290e5761290d612709565b5b600061291c85828601612734565b925050602083013567ffffffffffffffff81111561293d5761293c61270e565b5b612949858286016128c9565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297e82612953565b9050919050565b61298e81612973565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c7612709565b5b60006129d685828601612734565b92505060206129e78582860161299c565b9150509250929050565b600067ffffffffffffffff82169050919050565b612a0e816129f1565b8114612a1957600080fd5b50565b600081359050612a2b81612a05565b92915050565b600060208284031215612a4757612a46612709565b5b6000612a5584828501612a1c565b91505092915050565b60008115159050919050565b612a7381612a5e565b82525050565b6000602082019050612a8e6000830184612a6a565b92915050565b6000819050919050565b612aa781612a94565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b60008060408385031215612ae157612ae0612709565b5b6000612aef85828601612ab5565b9250506020612b0085828601612734565b9150509250929050565b600060208284031215612b2057612b1f612709565b5b6000612b2e8482850161299c565b91505092915050565b600060208284031215612b4d57612b4c612709565b5b6000612b5b84828501612734565b91505092915050565b612b6d81612973565b82525050565b612b7c81612a94565b82525050565b612b8b81612a5e565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612bb281612b91565b82525050565b61014082016000820151612bcf6000850182612b64565b506020820151612be26020850182612b64565b506040820151612bf56040850182612b64565b506060820151612c086060850182612b73565b506080820151612c1b6080850182612b73565b5060a0820151612c2e60a0850182612b82565b5060c0820151612c4160c0850182612b82565b5060e0820151612c5460e0850182612b64565b50610100820151612c69610100850182612ba9565b50610120820151612c7e610120850182612b73565b50505050565b600061014082019050612c9a6000830184612bb8565b92915050565b612ca981612973565b82525050565b6000602082019050612cc46000830184612ca0565b92915050565b612cd3816129f1565b82525050565b612ce281612a94565b82525050565b6000604082019050612cfd6000830185612cca565b612d0a6020830184612cd9565b9392505050565b600080600060608486031215612d2a57612d29612709565b5b6000612d3886828701612734565b9350506020612d498682870161299c565b9250506040612d5a86828701612ab5565b9150509250925092565b612d6d81612b91565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b600080fd5b60008083601f840112612dab57612daa612749565b5b8235905067ffffffffffffffff811115612dc857612dc7612d90565b5b602083019150836001820283011115612de457612de3612806565b5b9250929050565b60008060008060008060008060006101008a8c031215612e0e57612e0d612709565b5b6000612e1c8c828d0161299c565b9950506020612e2d8c828d01612ab5565b9850506040612e3e8c828d01612734565b9750506060612e4f8c828d01612d7b565b9650506080612e608c828d0161299c565b95505060a0612e718c828d01612ab5565b94505060c0612e828c828d0161299c565b93505060e08a013567ffffffffffffffff811115612ea357612ea261270e565b5b612eaf8c828d01612d95565b92509250509295985092959850929598565b612eca81612713565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b60008060008060808587031215612f0557612f04612709565b5b6000612f1387828801612734565b9450506020612f2487828801612734565b9350506040612f358782880161299c565b9250506060612f4687828801612a1c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000612fdc612fd783612fb2565b612fbf565b9050919050565b612fec81612713565b82525050565b60408201600080830154905061300781612fc9565b6130146000860182612fe3565b506001830154905061302581612fc9565b6130326020860182612fe3565b5050505050565b60006130458383612ff2565b60408301905092915050565b6000600282019050919050565b600061306982612f81565b6130738185612f8c565b935061307e83612f9d565b8060005b838110156130ae57816130958882613039565b97506130a083613051565b925050600181019050613082565b5085935050505092915050565b600060208201905081810360008301526130d5818461305e565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b60006131246015836130dd565b915061312f826130ee565b602082019050919050565b6000602082019050818103600083015261315381613117565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006131b66025836130dd565b91506131c18261315a565b604082019050919050565b600060208201905081810360008301526131e5816131a9565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006132486027836130dd565b9150613253826131ec565b604082019050919050565b600060208201905081810360008301526132778161323b565b9050919050565b60006020820190506132936000830184612cca565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b60006132cf600e836130dd565b91506132da82613299565b602082019050919050565b600060208201905081810360008301526132fe816132c2565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b600061333b600e836130dd565b915061334682613305565b602082019050919050565b6000602082019050818103600083015261336a8161332e565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006133a7600d836130dd565b91506133b282613371565b602082019050919050565b600060208201905081810360008301526133d68161339a565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b60006134136015836130dd565b915061341e826133dd565b602082019050919050565b6000602082019050818103600083015261344281613406565b9050919050565b600060408201905061345e6000830185612ca0565b61346b6020830184612cd9565b9392505050565b61347b81612a5e565b811461348657600080fd5b50565b60008151905061349881613472565b92915050565b6000602082840312156134b4576134b3612709565b5b60006134c284828501613489565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061350582612a94565b915061351083612a94565b9250828201905080821115613528576135276134cb565b5b92915050565b600061353982612a94565b915061354483612a94565b925082820390508181111561355c5761355b6134cb565b5b92915050565b60006020820190506135776000830184612cd9565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135d96029836130dd565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061366b602e836130dd565b91506136768261360f565b604082019050919050565b6000602082019050818103600083015261369a8161365e565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b60006136dd6136d86136d3846136a1565b6136b8565b6136ab565b9050919050565b6136ed816136c2565b82525050565b600060208201905061370860008301846136e4565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006137446017836130dd565b915061374f8261370e565b602082019050919050565b6000602082019050818103600083015261377381613737565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006137b06012836130dd565b91506137bb8261377a565b602082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b60006060820190506137fb6000830186612ca0565b6138086020830185612ca0565b6138156040830184612cd9565b949350505050565b600061382882612a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361385a576138596134cb565b5b600182019050919050565b600061387082612a94565b915061387b83612a94565b925082820261388981612a94565b915082820484148315176138a05761389f6134cb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138e182612a94565b91506138ec83612a94565b9250826138fc576138fb6138a7565b5b828204905092915050565b600061392261391d61391884612b91565b6136b8565b612a94565b9050919050565b61393281613907565b82525050565b82818337600083830152505050565b600061395383856130dd565b9350613960838584613938565b6139698361274e565b840190509392505050565b600060a0820190506139896000830189612cd9565b6139966020830188612ec1565b6139a36040830187613929565b6139b06060830186612ec1565b81810360808301526139c3818486613947565b9050979650505050505050565b60006139db82612b91565b91506139e683612b91565b925082820390506bffffffffffffffffffffffff811115613a0a57613a096134cb565b5b92915050565b6000613a2b613a26613a21846129f1565b6136b8565b612b91565b9050919050565b613a3b81613a10565b82525050565b6000604082019050613a566000830185612ec1565b613a636020830184613a32565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aa06020836130dd565b9150613aab82613a6a565b602082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613b32602b836130dd565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613b9e6010836130dd565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613c0a6011836130dd565b9150613c1582613bd4565b602082019050919050565b60006020820190508181036000830152613c3981613bfd565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613c76600c836130dd565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613ce26010836130dd565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f496e76616c6964496e737469747574696f6e436f646500000000000000000000600082015250565b6000613d4e6016836130dd565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613dba6019836130dd565b9150613dc582613d84565b602082019050919050565b60006020820190508181036000830152613de981613dad565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613e266014836130dd565b9150613e3182613df0565b602082019050919050565b60006020820190508181036000830152613e5581613e19565b905091905056fea26469706673582212207052e17dbf1c403e694b894ce0e7c48def05964824c5ca61166978940a74897964736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x22 PUSH3 0x28 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1D2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x7B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x72 SWAP1 PUSH3 0x175 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xFF DUP1 AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ PUSH3 0xEC JUMPI PUSH1 0xFF PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0xFF PUSH1 0x40 MLOAD PUSH3 0xE3 SWAP2 SWAP1 PUSH3 0x1B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320696E697469 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C697A696E6700000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x15D PUSH1 0x27 DUP4 PUSH3 0xEE JUMP JUMPDEST SWAP2 POP PUSH3 0x16A DUP3 PUSH3 0xFF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x190 DUP2 PUSH3 0x14E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1AF DUP2 PUSH3 0x197 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1CC PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1A4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3E92 DUP1 PUSH3 0x1E2 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79BA5097 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xCD992400 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0xD12FF20A EQ PUSH2 0x2B3 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0xF22EE704 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x331 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x23C JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x25A JUMPI DUP1 PUSH4 0xB810C636 EQ PUSH2 0x278 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x5C975ABB GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x20C JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x32200882 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x47094E2E EQ PUSH2 0x168 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x140 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x28F7 JUMP JUMPDEST PUSH2 0x34D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14A PUSH2 0x4C2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0x29B1 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0x2A31 JUMP JUMPDEST PUSH2 0x79C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18C PUSH2 0x807 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x199 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AA PUSH2 0x81E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x832 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D3 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x2B0A JUMP JUMPDEST PUSH2 0xCD2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x203 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x226 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x221 SWAP2 SWAP1 PUSH2 0x2B37 JUMP JUMPDEST PUSH2 0xD2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x233 SWAP2 SWAP1 PUSH2 0x2C84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x244 PUSH2 0xF47 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24E PUSH2 0xFD4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x258 PUSH2 0x1124 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x262 PUSH2 0x1136 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26F SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x280 PUSH2 0x1160 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28E SWAP3 SWAP2 SWAP1 PUSH2 0x2CE8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x2D11 JUMP JUMPDEST PUSH2 0x1185 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x2DEB JUMP JUMPDEST PUSH2 0x130A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x2ED0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2EB PUSH2 0x1851 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F8 SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x31B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x316 SWAP2 SWAP1 PUSH2 0x2EEB JUMP JUMPDEST PUSH2 0x187B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x346 SWAP2 SWAP1 PUSH2 0x2B0A JUMP JUMPDEST PUSH2 0x1ED7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x355 PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x374 SWAP2 SWAP1 PUSH2 0x25F7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x473 JUMPI PUSH1 0xCD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A6 JUMPI PUSH2 0x3A5 PUSH2 0x2F52 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x40B JUMPI PUSH2 0x40A PUSH2 0x2F52 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP PUSH1 0xCE PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x437 JUMPI PUSH2 0x436 PUSH2 0x2F52 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP DUP1 PUSH1 0x1 ADD SWAP1 POP PUSH2 0x377 JUMP JUMPDEST POP DUP2 PUSH32 0x58F3A30EC15A8D3E09FA65F9EF10219BC7A9A99D872A4ED895C37C2E761AC2AC PUSH1 0xCD PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x4B6 SWAP2 SWAP1 PUSH2 0x30BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x4CA PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x4D2 PUSH2 0x2002 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x4DC PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x54B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x542 SWAP1 PUSH2 0x313A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x64E JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x604 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5FB SWAP1 PUSH2 0x31CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x74C JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x74B JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x705 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6FC SWAP1 PUSH2 0x325E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x797 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x1F84 JUMP JUMPDEST DUP1 PUSH1 0x98 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x1CE29A697A4765BD17D91DF93BA75B250B629ECF030553FF1F6AB59F15AE6C7B DUP2 PUSH1 0x40 MLOAD PUSH2 0x7FC SWAP2 SWAP1 PUSH2 0x327E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x826 PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x830 PUSH1 0x0 PUSH2 0x2065 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8BB SWAP1 PUSH2 0x32E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x929 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x920 SWAP1 PUSH2 0x3351 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x98E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x985 SWAP1 PUSH2 0x33BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0x9E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9DF SWAP1 PUSH2 0x3429 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA7C SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA9B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xABF SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP4 PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0xB74 SWAP2 SWAP1 PUSH2 0x34FA JUMP JUMPDEST PUSH2 0xB7E SWAP2 SWAP1 PUSH2 0x352E JUMP JUMPDEST SWAP1 POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0xC2E SWAP2 SWAP1 PUSH2 0x34FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4B SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xC6A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC8E SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xCBF SWAP2 SWAP1 PUSH2 0x3562 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SUB PUSH2 0xD24 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xD29 JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD36 PUSH2 0x261B JUMP JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF51 PUSH2 0x2096 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF72 PUSH2 0x1851 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFC8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFBF SWAP1 PUSH2 0x35EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFD1 DUP2 PUSH2 0x2065 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1005 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x1032 JUMPI POP PUSH2 0x1014 ADDRESS PUSH2 0x209E JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1031 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x1071 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1068 SWAP1 PUSH2 0x3681 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x10AE JUMPI PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x10C0 PUSH2 0x20C1 JUMP JUMPDEST PUSH2 0x10C8 PUSH2 0x211A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1121 JUMPI PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1118 SWAP2 SWAP1 PUSH2 0x36F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x112C PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x1134 PUSH2 0x2173 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x97 SLOAD SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x118D PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x11FC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11F3 SWAP1 PUSH2 0x313A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x120B JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x124A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1241 SWAP1 PUSH2 0x375A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1305 JUMPI DUP1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x12FC SWAP2 SWAP1 PUSH2 0x3562 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1314 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0x1322 DUP11 DUP11 DUP7 DUP10 DUP10 DUP14 PUSH2 0x2220 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0x1368 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x135F SWAP1 PUSH2 0x37C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP14 PUSH2 0x1392 SWAP2 SWAP1 PUSH2 0x34FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13B0 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x37E6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13CF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x13F3 SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1445 SWAP1 PUSH2 0x381D JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x149D SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH1 0x97 SLOAD PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP12 PUSH2 0x14E6 SWAP2 SWAP1 PUSH2 0x3865 JUMP JUMPDEST PUSH2 0x14F0 SWAP2 SWAP1 PUSH2 0x38D6 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP13 PUSH2 0x15B8 SWAP2 SWAP1 PUSH2 0x352E JUMP JUMPDEST DUP2 MSTORE POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x3BDD0D86E09A22D7CE596118BD3CA5EC73EA47533A465BE37621E913ED2BF333 DUP5 DUP7 DUP14 DUP16 DUP12 DUP12 PUSH1 0x40 MLOAD PUSH2 0x183B SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3974 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x190D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1904 SWAP1 PUSH2 0x32E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1972 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1969 SWAP1 PUSH2 0x3351 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x19D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19CE SWAP1 PUSH2 0x33BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A5B SWAP2 SWAP1 PUSH2 0x39D0 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1D8D JUMPI PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ PUSH2 0x1CB4 JUMPI PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BDD SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BFC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1C20 SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ PUSH2 0x1D8C JUMPI DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D47 SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D66 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1D8A SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x97 SLOAD DUP5 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1DBF SWAP2 SWAP1 PUSH2 0x3865 JUMP JUMPDEST PUSH2 0x1DC9 SWAP2 SWAP1 PUSH2 0x38D6 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1DF2 SWAP2 SWAP1 PUSH2 0x352E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP7 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E34 SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1E53 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E77 SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH32 0x98ECE21E01A01CBE1D1C0DAD3B053C8FBD368F99BE78BE958FCF1D1D13FD249A DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1EC1 SWAP3 SWAP2 SWAP1 PUSH2 0x3A41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP3 POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1EDF PUSH2 0x1F84 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1F3F PUSH2 0x1136 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x1F8C PUSH2 0x2096 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1FAA PUSH2 0x1136 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2000 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FF7 SWAP1 PUSH2 0x3AB6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x200A PUSH2 0x241B JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x204E PUSH2 0x2096 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x205B SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x2093 DUP2 PUSH2 0x2464 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2110 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2107 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2118 PUSH2 0x252A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2169 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2160 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2171 PUSH2 0x258B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x217B PUSH2 0x21D6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x21BF PUSH2 0x2096 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21CC SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x21DE PUSH2 0x807 JUMP JUMPDEST ISZERO PUSH2 0x221E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2215 SWAP1 PUSH2 0x3BB4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ PUSH2 0x22A2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2299 SWAP1 PUSH2 0x3C20 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP6 SUB PUSH2 0x22E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22DC SWAP1 PUSH2 0x3C8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2354 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x234B SWAP1 PUSH2 0x3CF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0xFF AND GT PUSH2 0x239B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2392 SWAP1 PUSH2 0x3D64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x2413 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2412 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2409 SWAP1 PUSH2 0x3DD0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2423 PUSH2 0x807 JUMP JUMPDEST PUSH2 0x2462 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2459 SWAP1 PUSH2 0x3E3C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2579 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2570 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2589 PUSH2 0x2584 PUSH2 0x2096 JUMP JUMPDEST PUSH2 0x2065 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x25D1 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x2618 SWAP2 SWAP1 PUSH2 0x26D8 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x26FB JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0x26D9 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2726 DUP2 PUSH2 0x2713 JUMP JUMPDEST DUP2 EQ PUSH2 0x2731 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2743 DUP2 PUSH2 0x271D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2797 DUP3 PUSH2 0x274E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x27B6 JUMPI PUSH2 0x27B5 PUSH2 0x275F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27C9 PUSH2 0x26FF JUMP JUMPDEST SWAP1 POP PUSH2 0x27D5 DUP3 DUP3 PUSH2 0x278E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x27F5 JUMPI PUSH2 0x27F4 PUSH2 0x275F JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2826 JUMPI PUSH2 0x2825 PUSH2 0x280B JUMP JUMPDEST JUMPDEST PUSH2 0x2830 PUSH1 0x40 PUSH2 0x27BF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2840 DUP5 DUP3 DUP6 ADD PUSH2 0x2734 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x2854 DUP5 DUP3 DUP6 ADD PUSH2 0x2734 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2873 PUSH2 0x286E DUP5 PUSH2 0x27DA JUMP JUMPDEST PUSH2 0x27BF JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x40 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x2896 JUMPI PUSH2 0x2895 PUSH2 0x2806 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x28BF JUMPI DUP1 PUSH2 0x28AB DUP9 DUP3 PUSH2 0x2810 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x40 DUP2 ADD SWAP1 POP PUSH2 0x2898 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x28DE JUMPI PUSH2 0x28DD PUSH2 0x2749 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x28EE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2860 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x290E JUMPI PUSH2 0x290D PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x291C DUP6 DUP3 DUP7 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x293D JUMPI PUSH2 0x293C PUSH2 0x270E JUMP JUMPDEST JUMPDEST PUSH2 0x2949 DUP6 DUP3 DUP7 ADD PUSH2 0x28C9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x297E DUP3 PUSH2 0x2953 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x298E DUP2 PUSH2 0x2973 JUMP JUMPDEST DUP2 EQ PUSH2 0x2999 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x29AB DUP2 PUSH2 0x2985 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x29C8 JUMPI PUSH2 0x29C7 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x29D6 DUP6 DUP3 DUP7 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x29E7 DUP6 DUP3 DUP7 ADD PUSH2 0x299C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A0E DUP2 PUSH2 0x29F1 JUMP JUMPDEST DUP2 EQ PUSH2 0x2A19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2A2B DUP2 PUSH2 0x2A05 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A47 JUMPI PUSH2 0x2A46 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A55 DUP5 DUP3 DUP6 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A73 DUP2 PUSH2 0x2A5E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2A8E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A6A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AA7 DUP2 PUSH2 0x2A94 JUMP JUMPDEST DUP2 EQ PUSH2 0x2AB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2AC4 DUP2 PUSH2 0x2A9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2AE1 JUMPI PUSH2 0x2AE0 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2AEF DUP6 DUP3 DUP7 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2B00 DUP6 DUP3 DUP7 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B20 JUMPI PUSH2 0x2B1F PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B2E DUP5 DUP3 DUP6 ADD PUSH2 0x299C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B4D JUMPI PUSH2 0x2B4C PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B5B DUP5 DUP3 DUP6 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2B6D DUP2 PUSH2 0x2973 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2B7C DUP2 PUSH2 0x2A94 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2B8B DUP2 PUSH2 0x2A5E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BB2 DUP2 PUSH2 0x2B91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2BCF PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2BE2 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x2BF5 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x2C08 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x2B73 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x2C1B PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x2B73 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x2C2E PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x2B82 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x2C41 PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x2B82 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x2C54 PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x2C69 PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x2BA9 JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x2C7E PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x2B73 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x2C9A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BB8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2CA9 DUP2 PUSH2 0x2973 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CC4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CA0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2CD3 DUP2 PUSH2 0x29F1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2CE2 DUP2 PUSH2 0x2A94 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2CFD PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2CCA JUMP JUMPDEST PUSH2 0x2D0A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2D2A JUMPI PUSH2 0x2D29 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D38 DUP7 DUP3 DUP8 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2D49 DUP7 DUP3 DUP8 ADD PUSH2 0x299C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2D5A DUP7 DUP3 DUP8 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x2D6D DUP2 PUSH2 0x2B91 JUMP JUMPDEST DUP2 EQ PUSH2 0x2D78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2D8A DUP2 PUSH2 0x2D64 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2DAB JUMPI PUSH2 0x2DAA PUSH2 0x2749 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2DC8 JUMPI PUSH2 0x2DC7 PUSH2 0x2D90 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x2DE4 JUMPI PUSH2 0x2DE3 PUSH2 0x2806 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x100 DUP11 DUP13 SUB SLT ISZERO PUSH2 0x2E0E JUMPI PUSH2 0x2E0D PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E1C DUP13 DUP3 DUP14 ADD PUSH2 0x299C JUMP JUMPDEST SWAP10 POP POP PUSH1 0x20 PUSH2 0x2E2D DUP13 DUP3 DUP14 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x40 PUSH2 0x2E3E DUP13 DUP3 DUP14 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 PUSH2 0x2E4F DUP13 DUP3 DUP14 ADD PUSH2 0x2D7B JUMP JUMPDEST SWAP7 POP POP PUSH1 0x80 PUSH2 0x2E60 DUP13 DUP3 DUP14 ADD PUSH2 0x299C JUMP JUMPDEST SWAP6 POP POP PUSH1 0xA0 PUSH2 0x2E71 DUP13 DUP3 DUP14 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xC0 PUSH2 0x2E82 DUP13 DUP3 DUP14 ADD PUSH2 0x299C JUMP JUMPDEST SWAP4 POP POP PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2EA3 JUMPI PUSH2 0x2EA2 PUSH2 0x270E JUMP JUMPDEST JUMPDEST PUSH2 0x2EAF DUP13 DUP3 DUP14 ADD PUSH2 0x2D95 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH2 0x2ECA DUP2 PUSH2 0x2713 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2EE5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2F05 JUMPI PUSH2 0x2F04 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2F13 DUP8 DUP3 DUP9 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2F24 DUP8 DUP3 DUP9 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2F35 DUP8 DUP3 DUP9 ADD PUSH2 0x299C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x2F46 DUP8 DUP3 DUP9 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FDC PUSH2 0x2FD7 DUP4 PUSH2 0x2FB2 JUMP JUMPDEST PUSH2 0x2FBF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2FEC DUP2 PUSH2 0x2713 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3007 DUP2 PUSH2 0x2FC9 JUMP JUMPDEST PUSH2 0x3014 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x2FE3 JUMP JUMPDEST POP PUSH1 0x1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3025 DUP2 PUSH2 0x2FC9 JUMP JUMPDEST PUSH2 0x3032 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x2FE3 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3045 DUP4 DUP4 PUSH2 0x2FF2 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3069 DUP3 PUSH2 0x2F81 JUMP JUMPDEST PUSH2 0x3073 DUP2 DUP6 PUSH2 0x2F8C JUMP JUMPDEST SWAP4 POP PUSH2 0x307E DUP4 PUSH2 0x2F9D JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x30AE JUMPI DUP2 PUSH2 0x3095 DUP9 DUP3 PUSH2 0x3039 JUMP JUMPDEST SWAP8 POP PUSH2 0x30A0 DUP4 PUSH2 0x3051 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3082 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x30D5 DUP2 DUP5 PUSH2 0x305E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3124 PUSH1 0x15 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x312F DUP3 PUSH2 0x30EE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3153 DUP2 PUSH2 0x3117 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31B6 PUSH1 0x25 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x31C1 DUP3 PUSH2 0x315A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x31E5 DUP2 PUSH2 0x31A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3248 PUSH1 0x27 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3253 DUP3 PUSH2 0x31EC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3277 DUP2 PUSH2 0x323B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3293 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CCA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32CF PUSH1 0xE DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x32DA DUP3 PUSH2 0x3299 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32FE DUP2 PUSH2 0x32C2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x333B PUSH1 0xE DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3346 DUP3 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x336A DUP2 PUSH2 0x332E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33A7 PUSH1 0xD DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x33B2 DUP3 PUSH2 0x3371 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33D6 DUP2 PUSH2 0x339A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3413 PUSH1 0x15 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x341E DUP3 PUSH2 0x33DD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3442 DUP2 PUSH2 0x3406 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x345E PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2CA0 JUMP JUMPDEST PUSH2 0x346B PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x347B DUP2 PUSH2 0x2A5E JUMP JUMPDEST DUP2 EQ PUSH2 0x3486 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3498 DUP2 PUSH2 0x3472 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34B4 JUMPI PUSH2 0x34B3 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34C2 DUP5 DUP3 DUP6 ADD PUSH2 0x3489 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3505 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x3510 DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3528 JUMPI PUSH2 0x3527 PUSH2 0x34CB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3539 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x3544 DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x355C JUMPI PUSH2 0x355B PUSH2 0x34CB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3577 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35D9 PUSH1 0x29 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x35E4 DUP3 PUSH2 0x357D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3608 DUP2 PUSH2 0x35CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366B PUSH1 0x2E DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3676 DUP3 PUSH2 0x360F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x369A DUP2 PUSH2 0x365E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36DD PUSH2 0x36D8 PUSH2 0x36D3 DUP5 PUSH2 0x36A1 JUMP JUMPDEST PUSH2 0x36B8 JUMP JUMPDEST PUSH2 0x36AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x36ED DUP2 PUSH2 0x36C2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3708 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x36E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3744 PUSH1 0x17 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x374F DUP3 PUSH2 0x370E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3773 DUP2 PUSH2 0x3737 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37B0 PUSH1 0x12 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x37BB DUP3 PUSH2 0x377A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37DF DUP2 PUSH2 0x37A3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x37FB PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2CA0 JUMP JUMPDEST PUSH2 0x3808 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2CA0 JUMP JUMPDEST PUSH2 0x3815 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3828 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x385A JUMPI PUSH2 0x3859 PUSH2 0x34CB JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3870 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x387B DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3889 DUP2 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x38A0 JUMPI PUSH2 0x389F PUSH2 0x34CB JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x38E1 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x38EC DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x38FC JUMPI PUSH2 0x38FB PUSH2 0x38A7 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3922 PUSH2 0x391D PUSH2 0x3918 DUP5 PUSH2 0x2B91 JUMP JUMPDEST PUSH2 0x36B8 JUMP JUMPDEST PUSH2 0x2A94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3932 DUP2 PUSH2 0x3907 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3953 DUP4 DUP6 PUSH2 0x30DD JUMP JUMPDEST SWAP4 POP PUSH2 0x3960 DUP4 DUP6 DUP5 PUSH2 0x3938 JUMP JUMPDEST PUSH2 0x3969 DUP4 PUSH2 0x274E JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3989 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x2CD9 JUMP JUMPDEST PUSH2 0x3996 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x2EC1 JUMP JUMPDEST PUSH2 0x39A3 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x3929 JUMP JUMPDEST PUSH2 0x39B0 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x2EC1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x39C3 DUP2 DUP5 DUP7 PUSH2 0x3947 JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39DB DUP3 PUSH2 0x2B91 JUMP JUMPDEST SWAP2 POP PUSH2 0x39E6 DUP4 PUSH2 0x2B91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3A0A JUMPI PUSH2 0x3A09 PUSH2 0x34CB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A2B PUSH2 0x3A26 PUSH2 0x3A21 DUP5 PUSH2 0x29F1 JUMP JUMPDEST PUSH2 0x36B8 JUMP JUMPDEST PUSH2 0x2B91 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A3B DUP2 PUSH2 0x3A10 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3A56 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2EC1 JUMP JUMPDEST PUSH2 0x3A63 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A32 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3AA0 PUSH1 0x20 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3AAB DUP3 PUSH2 0x3A6A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3ACF DUP2 PUSH2 0x3A93 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B32 PUSH1 0x2B DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3B3D DUP3 PUSH2 0x3AD6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3B61 DUP2 PUSH2 0x3B25 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B9E PUSH1 0x10 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3BA9 DUP3 PUSH2 0x3B68 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3BCD DUP2 PUSH2 0x3B91 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C0A PUSH1 0x11 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3C15 DUP3 PUSH2 0x3BD4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C39 DUP2 PUSH2 0x3BFD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C76 PUSH1 0xC DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3C81 DUP3 PUSH2 0x3C40 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CA5 DUP2 PUSH2 0x3C69 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CE2 PUSH1 0x10 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3CED DUP3 PUSH2 0x3CAC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D11 DUP2 PUSH2 0x3CD5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C6964496E737469747574696F6E436F646500000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D4E PUSH1 0x16 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3D59 DUP3 PUSH2 0x3D18 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D7D DUP2 PUSH2 0x3D41 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DBA PUSH1 0x19 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3DC5 DUP3 PUSH2 0x3D84 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DE9 DUP2 PUSH2 0x3DAD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E26 PUSH1 0x14 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3E31 DUP3 PUSH2 0x3DF0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E55 DUP2 PUSH2 0x3E19 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x52E17DBF1C403E694B894CE0E7C48DEF05 SWAP7 BASEFEE 0x24 0xC5 0xCA PUSH2 0x1669 PUSH25 0x940A74897964736F6C63430008120033000000000000000000 ","sourceMap":"394:7150:12:-:0;;;716:44;;;;;;;;;;734:22;:20;;;:22;;:::i;:::-;394:7150;;5939:280:2;6007:13;;;;;;;;;;;6006:14;5998:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6094:15;6078:31;;:12;;;;;;;;;;:31;;;6074:139;;6140:15;6125:12;;:30;;;;;;;;;;;;;;;;;;6174:28;6186:15;6174:28;;;;;;:::i;:::-;;;;;;;;6074:139;5939:280::o;7:169:17:-;91:11;125:6;120:3;113:19;165:4;160:3;156:14;141:29;;7:169;;;;:::o;182:226::-;322:34;318:1;310:6;306:14;299:58;391:9;386:2;378:6;374:15;367:34;182:226;:::o;414:366::-;556:3;577:67;641:2;636:3;577:67;:::i;:::-;570:74;;653:93;742:3;653:93;:::i;:::-;771:2;766:3;762:12;755:19;;414:366;;;:::o;786:419::-;952:4;990:2;979:9;975:18;967:26;;1039:9;1033:4;1029:20;1025:1;1014:9;1010:17;1003:47;1067:131;1193:4;1067:131;:::i;:::-;1059:139;;786:419;;;:::o;1211:86::-;1246:7;1286:4;1279:5;1275:16;1264:27;;1211:86;;;:::o;1303:112::-;1386:22;1402:5;1386:22;:::i;:::-;1381:3;1374:35;1303:112;;:::o;1421:214::-;1510:4;1548:2;1537:9;1533:18;1525:26;;1561:67;1625:1;1614:9;1610:17;1601:6;1561:67;:::i;:::-;1421:214;;;;:::o;394:7150:12:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@__Ownable2Step_init_26":{"entryPoint":8385,"id":26,"parameterSlots":0,"returnSlots":0},"@__Ownable_init_unchained_145":{"entryPoint":9514,"id":145,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_440":{"entryPoint":8474,"id":440,"parameterSlots":0,"returnSlots":0},"@__Pausable_init_unchained_450":{"entryPoint":9611,"id":450,"parameterSlots":0,"returnSlots":0},"@_checkOwner_176":{"entryPoint":8068,"id":176,"parameterSlots":0,"returnSlots":0},"@_handler_2805":{"entryPoint":8736,"id":2805,"parameterSlots":6,"returnSlots":0},"@_msgSender_894":{"entryPoint":8342,"id":894,"parameterSlots":0,"returnSlots":1},"@_pause_514":{"entryPoint":8563,"id":514,"parameterSlots":0,"returnSlots":0},"@_requireNotPaused_487":{"entryPoint":8662,"id":487,"parameterSlots":0,"returnSlots":0},"@_requirePaused_498":{"entryPoint":9243,"id":498,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_233":{"entryPoint":9316,"id":233,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_78":{"entryPoint":8293,"id":78,"parameterSlots":1,"returnSlots":0},"@_unpause_530":{"entryPoint":8194,"id":530,"parameterSlots":0,"returnSlots":0},"@acceptOwnership_100":{"entryPoint":3911,"id":100,"parameterSlots":0,"returnSlots":0},"@createOrder_2739":{"entryPoint":4874,"id":2739,"parameterSlots":9,"returnSlots":1},"@getFeeDetails_3112":{"entryPoint":4448,"id":3112,"parameterSlots":0,"returnSlots":2},"@getOrderInfo_3080":{"entryPoint":3374,"id":3080,"parameterSlots":1,"returnSlots":1},"@initialize_2577":{"entryPoint":4052,"id":2577,"parameterSlots":0,"returnSlots":0},"@isContract_554":{"entryPoint":8350,"id":554,"parameterSlots":1,"returnSlots":1},"@isTokenSupported_3099":{"entryPoint":3282,"id":3099,"parameterSlots":1,"returnSlots":1},"@owner_162":{"entryPoint":4406,"id":162,"parameterSlots":0,"returnSlots":1},"@pause_2600":{"entryPoint":4388,"id":2600,"parameterSlots":0,"returnSlots":0},"@paused_475":{"entryPoint":2055,"id":475,"parameterSlots":0,"returnSlots":1},"@pendingOwner_41":{"entryPoint":6225,"id":41,"parameterSlots":0,"returnSlots":1},"@refund_3066":{"entryPoint":2098,"id":3066,"parameterSlots":2,"returnSlots":1},"@renounceOwnership_190":{"entryPoint":2078,"id":190,"parameterSlots":0,"returnSlots":0},"@setSupportedInstitutions_2429":{"entryPoint":845,"id":2429,"parameterSlots":2,"returnSlots":0},"@settingManagerBool_2366":{"entryPoint":4485,"id":2366,"parameterSlots":3,"returnSlots":0},"@settle_2960":{"entryPoint":6267,"id":2960,"parameterSlots":4,"returnSlots":1},"@transferOwnership_61":{"entryPoint":7895,"id":61,"parameterSlots":1,"returnSlots":0},"@unpause_2610":{"entryPoint":1218,"id":2610,"parameterSlots":0,"returnSlots":0},"@updateProtocolAddress_2518":{"entryPoint":1236,"id":2518,"parameterSlots":2,"returnSlots":0},"@updateProtocolFee_2446":{"entryPoint":1948,"id":2446,"parameterSlots":1,"returnSlots":0},"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10336,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_t_address":{"entryPoint":10652,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10441,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bool_fromMemory":{"entryPoint":13449,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_bytes32":{"entryPoint":10036,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_string_calldata_ptr":{"entryPoint":11669,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":10256,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":10933,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint64":{"entryPoint":10780,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint96":{"entryPoint":11643,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":11018,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256t_bytes32t_uint96t_addresst_uint256t_addresst_string_calldata_ptr":{"entryPoint":11755,"id":null,"parameterSlots":2,"returnSlots":9},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":13470,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32":{"entryPoint":11063,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":10673,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_addresst_uint256":{"entryPoint":11537,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10487,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64":{"entryPoint":12011,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_bytes32":{"entryPoint":10954,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64":{"entryPoint":10801,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":12345,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_address_to_t_address":{"entryPoint":11108,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_address_to_t_address_fromStack":{"entryPoint":11424,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":12382,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_bool_to_t_bool":{"entryPoint":11138,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":10858,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bytes32_to_t_bytes32":{"entryPoint":12259,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_bytes32_to_t_bytes32_fromStack":{"entryPoint":11969,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack":{"entryPoint":14052,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":14663,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack":{"entryPoint":13210,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack":{"entryPoint":15897,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack":{"entryPoint":12567,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack":{"entryPoint":13772,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack":{"entryPoint":15465,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack":{"entryPoint":15249,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack":{"entryPoint":13918,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack":{"entryPoint":14135,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack":{"entryPoint":13102,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5_to_t_string_memory_ptr_fromStack":{"entryPoint":15681,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack":{"entryPoint":14995,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack":{"entryPoint":12713,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack":{"entryPoint":13318,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack":{"entryPoint":15573,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack":{"entryPoint":14243,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack":{"entryPoint":15357,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack":{"entryPoint":15141,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack":{"entryPoint":12859,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack":{"entryPoint":12994,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack":{"entryPoint":15789,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr":{"entryPoint":12274,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_struct$_Order_$3370_memory_ptr_to_t_struct$_Order_$3370_memory_ptr_fromStack":{"entryPoint":11192,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256":{"entryPoint":11123,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":11481,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint64_fromStack":{"entryPoint":11466,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint64_to_t_uint96_fromStack":{"entryPoint":14898,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint256_fromStack":{"entryPoint":14633,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint96_to_t_uint96":{"entryPoint":11177,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":11439,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":14310,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":13385,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":12475,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":10873,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":11984,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed":{"entryPoint":14913,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed":{"entryPoint":14067,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13245,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15932,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":12602,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13807,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15500,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15284,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13953,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14170,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13137,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15716,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15030,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":12748,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13353,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15608,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14278,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15392,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15176,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":12894,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":13029,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":15824,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_Order_$3370_memory_ptr__to_t_struct$_Order_$3370_memory_ptr__fromStack_reversed":{"entryPoint":11396,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":13666,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_bytes32_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_bytes32_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14708,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":12926,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed":{"entryPoint":11496,"id":null,"parameterSlots":3,"returnSlots":1},"allocate_memory":{"entryPoint":10175,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_unbounded":{"entryPoint":9983,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr":{"entryPoint":10202,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":12189,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":12161,"id":null,"parameterSlots":1,"returnSlots":1},"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage":{"entryPoint":12369,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack":{"entryPoint":12172,"id":null,"parameterSlots":2,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":12509,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":13562,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":14550,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":14437,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":13614,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint96":{"entryPoint":14800,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_from_storage_t_bytes32":{"entryPoint":12223,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_address":{"entryPoint":10611,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":10846,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bytes32":{"entryPoint":10003,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_rational_1_by_1":{"entryPoint":13985,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":10579,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":10900,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint64":{"entryPoint":10737,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":13995,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint96":{"entryPoint":11153,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_rational_1_by_1_to_t_uint8":{"entryPoint":14018,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint64_to_t_uint96":{"entryPoint":14864,"id":null,"parameterSlots":1,"returnSlots":1},"convert_t_uint96_to_t_uint256":{"entryPoint":14599,"id":null,"parameterSlots":1,"returnSlots":1},"copy_calldata_to_memory_with_cleanup":{"entryPoint":14648,"id":null,"parameterSlots":3,"returnSlots":0},"extract_from_storage_value_offset_0t_bytes32":{"entryPoint":12233,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":10126,"id":null,"parameterSlots":2,"returnSlots":0},"identity":{"entryPoint":14008,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint256":{"entryPoint":14365,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":13515,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":14503,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":12114,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":10079,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490":{"entryPoint":11664,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d":{"entryPoint":10057,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f":{"entryPoint":10251,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef":{"entryPoint":10246,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":9998,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":9993,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":10062,"id":null,"parameterSlots":1,"returnSlots":1},"shift_right_0_unsigned":{"entryPoint":12210,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd":{"entryPoint":13169,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a":{"entryPoint":15856,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf":{"entryPoint":12526,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc":{"entryPoint":13693,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2":{"entryPoint":15424,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a":{"entryPoint":15208,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759":{"entryPoint":13839,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338":{"entryPoint":14094,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5":{"entryPoint":13061,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5":{"entryPoint":15640,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe":{"entryPoint":14954,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead":{"entryPoint":12634,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de":{"entryPoint":13277,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7":{"entryPoint":15532,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4":{"entryPoint":14202,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1":{"entryPoint":15316,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b":{"entryPoint":15062,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4":{"entryPoint":12780,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243":{"entryPoint":12953,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8":{"entryPoint":15748,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":10629,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bool":{"entryPoint":13426,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_bytes32":{"entryPoint":10013,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":10910,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint64":{"entryPoint":10757,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint96":{"entryPoint":11620,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:47154:17","statements":[{"body":{"nodeType":"YulBlock","src":"47:35:17","statements":[{"nodeType":"YulAssignment","src":"57:19:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"73:2:17","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"67:5:17"},"nodeType":"YulFunctionCall","src":"67:9:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"57:6:17"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"40:6:17","type":""}],"src":"7:75:17"},{"body":{"nodeType":"YulBlock","src":"177:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"194:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"197:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"187:6:17"},"nodeType":"YulFunctionCall","src":"187:12:17"},"nodeType":"YulExpressionStatement","src":"187:12:17"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"88:117:17"},{"body":{"nodeType":"YulBlock","src":"300:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:17"},"nodeType":"YulFunctionCall","src":"310:12:17"},"nodeType":"YulExpressionStatement","src":"310:12:17"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"211:117:17"},{"body":{"nodeType":"YulBlock","src":"379:32:17","statements":[{"nodeType":"YulAssignment","src":"389:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"400:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"389:7:17"}]}]},"name":"cleanup_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"361:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"371:7:17","type":""}],"src":"334:77:17"},{"body":{"nodeType":"YulBlock","src":"460:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"517:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"526:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"529:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"519:6:17"},"nodeType":"YulFunctionCall","src":"519:12:17"},"nodeType":"YulExpressionStatement","src":"519:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"483:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"508:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"490:17:17"},"nodeType":"YulFunctionCall","src":"490:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"480:2:17"},"nodeType":"YulFunctionCall","src":"480:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"473:6:17"},"nodeType":"YulFunctionCall","src":"473:43:17"},"nodeType":"YulIf","src":"470:63:17"}]},"name":"validator_revert_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"453:5:17","type":""}],"src":"417:122:17"},{"body":{"nodeType":"YulBlock","src":"597:87:17","statements":[{"nodeType":"YulAssignment","src":"607:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"629:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"616:12:17"},"nodeType":"YulFunctionCall","src":"616:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"607:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"672:5:17"}],"functionName":{"name":"validator_revert_t_bytes32","nodeType":"YulIdentifier","src":"645:26:17"},"nodeType":"YulFunctionCall","src":"645:33:17"},"nodeType":"YulExpressionStatement","src":"645:33:17"}]},"name":"abi_decode_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"575:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"583:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"591:5:17","type":""}],"src":"545:139:17"},{"body":{"nodeType":"YulBlock","src":"779:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"796:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"799:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"789:6:17"},"nodeType":"YulFunctionCall","src":"789:12:17"},"nodeType":"YulExpressionStatement","src":"789:12:17"}]},"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulFunctionDefinition","src":"690:117:17"},{"body":{"nodeType":"YulBlock","src":"861:54:17","statements":[{"nodeType":"YulAssignment","src":"871:38:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"889:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"896:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"885:3:17"},"nodeType":"YulFunctionCall","src":"885:14:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"905:2:17","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"901:3:17"},"nodeType":"YulFunctionCall","src":"901:7:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"881:3:17"},"nodeType":"YulFunctionCall","src":"881:28:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"871:6:17"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"844:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"854:6:17","type":""}],"src":"813:102:17"},{"body":{"nodeType":"YulBlock","src":"949:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"966:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"969:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"959:6:17"},"nodeType":"YulFunctionCall","src":"959:88:17"},"nodeType":"YulExpressionStatement","src":"959:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1063:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1066:4:17","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1056:6:17"},"nodeType":"YulFunctionCall","src":"1056:15:17"},"nodeType":"YulExpressionStatement","src":"1056:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1087:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1090:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1080:6:17"},"nodeType":"YulFunctionCall","src":"1080:15:17"},"nodeType":"YulExpressionStatement","src":"1080:15:17"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"921:180:17"},{"body":{"nodeType":"YulBlock","src":"1150:238:17","statements":[{"nodeType":"YulVariableDeclaration","src":"1160:58:17","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1182:6:17"},{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"1212:4:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"1190:21:17"},"nodeType":"YulFunctionCall","src":"1190:27:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1178:3:17"},"nodeType":"YulFunctionCall","src":"1178:40:17"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"1164:10:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"1329:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1331:16:17"},"nodeType":"YulFunctionCall","src":"1331:18:17"},"nodeType":"YulExpressionStatement","src":"1331:18:17"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1272:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"1284:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1269:2:17"},"nodeType":"YulFunctionCall","src":"1269:34:17"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1308:10:17"},{"name":"memPtr","nodeType":"YulIdentifier","src":"1320:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1305:2:17"},"nodeType":"YulFunctionCall","src":"1305:22:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1266:2:17"},"nodeType":"YulFunctionCall","src":"1266:62:17"},"nodeType":"YulIf","src":"1263:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1367:2:17","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"1371:10:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1360:6:17"},"nodeType":"YulFunctionCall","src":"1360:22:17"},"nodeType":"YulExpressionStatement","src":"1360:22:17"}]},"name":"finalize_allocation","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"1136:6:17","type":""},{"name":"size","nodeType":"YulTypedName","src":"1144:4:17","type":""}],"src":"1107:281:17"},{"body":{"nodeType":"YulBlock","src":"1435:88:17","statements":[{"nodeType":"YulAssignment","src":"1445:30:17","value":{"arguments":[],"functionName":{"name":"allocate_unbounded","nodeType":"YulIdentifier","src":"1455:18:17"},"nodeType":"YulFunctionCall","src":"1455:20:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1445:6:17"}]},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1504:6:17"},{"name":"size","nodeType":"YulIdentifier","src":"1512:4:17"}],"functionName":{"name":"finalize_allocation","nodeType":"YulIdentifier","src":"1484:19:17"},"nodeType":"YulFunctionCall","src":"1484:33:17"},"nodeType":"YulExpressionStatement","src":"1484:33:17"}]},"name":"allocate_memory","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nodeType":"YulTypedName","src":"1419:4:17","type":""}],"returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1428:6:17","type":""}],"src":"1394:129:17"},{"body":{"nodeType":"YulBlock","src":"1640:229:17","statements":[{"body":{"nodeType":"YulBlock","src":"1745:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"1747:16:17"},"nodeType":"YulFunctionCall","src":"1747:18:17"},"nodeType":"YulExpressionStatement","src":"1747:18:17"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1717:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"1725:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1714:2:17"},"nodeType":"YulFunctionCall","src":"1714:30:17"},"nodeType":"YulIf","src":"1711:56:17"},{"nodeType":"YulAssignment","src":"1777:25:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1789:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"1797:4:17","type":"","value":"0x20"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"1785:3:17"},"nodeType":"YulFunctionCall","src":"1785:17:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1777:4:17"}]},{"nodeType":"YulAssignment","src":"1839:23:17","value":{"arguments":[{"name":"size","nodeType":"YulIdentifier","src":"1851:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"1857:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1847:3:17"},"nodeType":"YulFunctionCall","src":"1847:15:17"},"variableNames":[{"name":"size","nodeType":"YulIdentifier","src":"1839:4:17"}]}]},"name":"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nodeType":"YulTypedName","src":"1624:6:17","type":""}],"returnVariables":[{"name":"size","nodeType":"YulTypedName","src":"1635:4:17","type":""}],"src":"1529:340:17"},{"body":{"nodeType":"YulBlock","src":"1964:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1981:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1984:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1974:6:17"},"nodeType":"YulFunctionCall","src":"1974:12:17"},"nodeType":"YulExpressionStatement","src":"1974:12:17"}]},"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulFunctionDefinition","src":"1875:117:17"},{"body":{"nodeType":"YulBlock","src":"2087:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2104:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2107:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2097:6:17"},"nodeType":"YulFunctionCall","src":"2097:12:17"},"nodeType":"YulExpressionStatement","src":"2097:12:17"}]},"name":"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f","nodeType":"YulFunctionDefinition","src":"1998:117:17"},{"body":{"nodeType":"YulBlock","src":"2210:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2227:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2230:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2220:6:17"},"nodeType":"YulFunctionCall","src":"2220:12:17"},"nodeType":"YulExpressionStatement","src":"2220:12:17"}]},"name":"revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421","nodeType":"YulFunctionDefinition","src":"2121:117:17"},{"body":{"nodeType":"YulBlock","src":"2368:494:17","statements":[{"body":{"nodeType":"YulBlock","src":"2412:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f","nodeType":"YulIdentifier","src":"2414:77:17"},"nodeType":"YulFunctionCall","src":"2414:79:17"},"nodeType":"YulExpressionStatement","src":"2414:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nodeType":"YulIdentifier","src":"2389:3:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"2394:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2385:3:17"},"nodeType":"YulFunctionCall","src":"2385:19:17"},{"kind":"number","nodeType":"YulLiteral","src":"2406:4:17","type":"","value":"0x40"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2381:3:17"},"nodeType":"YulFunctionCall","src":"2381:30:17"},"nodeType":"YulIf","src":"2378:117:17"},{"nodeType":"YulAssignment","src":"2504:30:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2529:4:17","type":"","value":"0x40"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"2513:15:17"},"nodeType":"YulFunctionCall","src":"2513:21:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2504:5:17"}]},{"nodeType":"YulBlock","src":"2544:150:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2579:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2593:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2583:6:17","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2619:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2626:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2615:3:17"},"nodeType":"YulFunctionCall","src":"2615:16:17"},{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2658:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2669:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2654:3:17"},"nodeType":"YulFunctionCall","src":"2654:22:17"},{"name":"end","nodeType":"YulIdentifier","src":"2678:3:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"2633:20:17"},"nodeType":"YulFunctionCall","src":"2633:49:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2608:6:17"},"nodeType":"YulFunctionCall","src":"2608:75:17"},"nodeType":"YulExpressionStatement","src":"2608:75:17"}]},{"nodeType":"YulBlock","src":"2704:151:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2739:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2753:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2743:6:17","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2780:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2787:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2776:3:17"},"nodeType":"YulFunctionCall","src":"2776:16:17"},{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2819:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2830:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2815:3:17"},"nodeType":"YulFunctionCall","src":"2815:22:17"},{"name":"end","nodeType":"YulIdentifier","src":"2839:3:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"2794:20:17"},"nodeType":"YulFunctionCall","src":"2794:49:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2769:6:17"},"nodeType":"YulFunctionCall","src":"2769:75:17"},"nodeType":"YulExpressionStatement","src":"2769:75:17"}]}]},"name":"abi_decode_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2343:9:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2354:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2362:5:17","type":""}],"src":"2284:578:17"},{"body":{"nodeType":"YulBlock","src":"3041:666:17","statements":[{"nodeType":"YulAssignment","src":"3051:119:17","value":{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3162:6:17"}],"functionName":{"name":"array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"3076:85:17"},"nodeType":"YulFunctionCall","src":"3076:93:17"}],"functionName":{"name":"allocate_memory","nodeType":"YulIdentifier","src":"3060:15:17"},"nodeType":"YulFunctionCall","src":"3060:110:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"3051:5:17"}]},{"nodeType":"YulVariableDeclaration","src":"3179:16:17","value":{"name":"array","nodeType":"YulIdentifier","src":"3190:5:17"},"variables":[{"name":"dst","nodeType":"YulTypedName","src":"3183:3:17","type":""}]},{"expression":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"3212:5:17"},{"name":"length","nodeType":"YulIdentifier","src":"3219:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3205:6:17"},"nodeType":"YulFunctionCall","src":"3205:21:17"},"nodeType":"YulExpressionStatement","src":"3205:21:17"},{"nodeType":"YulAssignment","src":"3235:23:17","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"3246:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"3253:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3242:3:17"},"nodeType":"YulFunctionCall","src":"3242:16:17"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"3235:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"3268:44:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3286:6:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"3298:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"3306:4:17","type":"","value":"0x40"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"3294:3:17"},"nodeType":"YulFunctionCall","src":"3294:17:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3282:3:17"},"nodeType":"YulFunctionCall","src":"3282:30:17"},"variables":[{"name":"srcEnd","nodeType":"YulTypedName","src":"3272:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3340:103:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"3354:77:17"},"nodeType":"YulFunctionCall","src":"3354:79:17"},"nodeType":"YulExpressionStatement","src":"3354:79:17"}]},"condition":{"arguments":[{"name":"srcEnd","nodeType":"YulIdentifier","src":"3327:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"3335:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3324:2:17"},"nodeType":"YulFunctionCall","src":"3324:15:17"},"nodeType":"YulIf","src":"3321:122:17"},{"body":{"nodeType":"YulBlock","src":"3528:173:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3543:21:17","value":{"name":"src","nodeType":"YulIdentifier","src":"3561:3:17"},"variables":[{"name":"elementPos","nodeType":"YulTypedName","src":"3547:10:17","type":""}]},{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3585:3:17"},{"arguments":[{"name":"elementPos","nodeType":"YulIdentifier","src":"3640:10:17"},{"name":"end","nodeType":"YulIdentifier","src":"3652:3:17"}],"functionName":{"name":"abi_decode_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"3590:49:17"},"nodeType":"YulFunctionCall","src":"3590:66:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3578:6:17"},"nodeType":"YulFunctionCall","src":"3578:79:17"},"nodeType":"YulExpressionStatement","src":"3578:79:17"},{"nodeType":"YulAssignment","src":"3670:21:17","value":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"3681:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"3686:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3677:3:17"},"nodeType":"YulFunctionCall","src":"3677:14:17"},"variableNames":[{"name":"dst","nodeType":"YulIdentifier","src":"3670:3:17"}]}]},"condition":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3481:3:17"},{"name":"srcEnd","nodeType":"YulIdentifier","src":"3486:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3478:2:17"},"nodeType":"YulFunctionCall","src":"3478:15:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3494:25:17","statements":[{"nodeType":"YulAssignment","src":"3496:21:17","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3507:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"3512:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3503:3:17"},"nodeType":"YulFunctionCall","src":"3503:14:17"},"variableNames":[{"name":"src","nodeType":"YulIdentifier","src":"3496:3:17"}]}]},"pre":{"nodeType":"YulBlock","src":"3456:21:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3458:17:17","value":{"name":"offset","nodeType":"YulIdentifier","src":"3469:6:17"},"variables":[{"name":"src","nodeType":"YulTypedName","src":"3462:3:17","type":""}]}]},"src":"3452:249:17"}]},"name":"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3011:6:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"3019:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"3027:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"3035:5:17","type":""}],"src":"2910:797:17"},{"body":{"nodeType":"YulBlock","src":"3861:322:17","statements":[{"body":{"nodeType":"YulBlock","src":"3910:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"3912:77:17"},"nodeType":"YulFunctionCall","src":"3912:79:17"},"nodeType":"YulExpressionStatement","src":"3912:79:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"3889:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"3897:4:17","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3885:3:17"},"nodeType":"YulFunctionCall","src":"3885:17:17"},{"name":"end","nodeType":"YulIdentifier","src":"3904:3:17"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3881:3:17"},"nodeType":"YulFunctionCall","src":"3881:27:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3874:6:17"},"nodeType":"YulFunctionCall","src":"3874:35:17"},"nodeType":"YulIf","src":"3871:122:17"},{"nodeType":"YulVariableDeclaration","src":"4002:34:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4029:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4016:12:17"},"nodeType":"YulFunctionCall","src":"4016:20:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"4006:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4045:132:17","value":{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4150:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4158:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4146:3:17"},"nodeType":"YulFunctionCall","src":"4146:17:17"},{"name":"length","nodeType":"YulIdentifier","src":"4165:6:17"},{"name":"end","nodeType":"YulIdentifier","src":"4173:3:17"}],"functionName":{"name":"abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"4054:91:17"},"nodeType":"YulFunctionCall","src":"4054:123:17"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"4045:5:17"}]}]},"name":"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"3839:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"3847:3:17","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"3855:5:17","type":""}],"src":"3755:428:17"},{"body":{"nodeType":"YulBlock","src":"4326:605:17","statements":[{"body":{"nodeType":"YulBlock","src":"4372:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"4374:77:17"},"nodeType":"YulFunctionCall","src":"4374:79:17"},"nodeType":"YulExpressionStatement","src":"4374:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4347:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"4356:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4343:3:17"},"nodeType":"YulFunctionCall","src":"4343:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"4368:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4339:3:17"},"nodeType":"YulFunctionCall","src":"4339:32:17"},"nodeType":"YulIf","src":"4336:119:17"},{"nodeType":"YulBlock","src":"4465:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4480:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4494:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4484:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4509:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4544:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4555:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4540:3:17"},"nodeType":"YulFunctionCall","src":"4540:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4564:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"4519:20:17"},"nodeType":"YulFunctionCall","src":"4519:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4509:6:17"}]}]},{"nodeType":"YulBlock","src":"4592:332:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4607:46:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4638:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4649:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4634:3:17"},"nodeType":"YulFunctionCall","src":"4634:18:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4621:12:17"},"nodeType":"YulFunctionCall","src":"4621:32:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4611:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"4700:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"4702:77:17"},"nodeType":"YulFunctionCall","src":"4702:79:17"},"nodeType":"YulExpressionStatement","src":"4702:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4672:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4680:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4669:2:17"},"nodeType":"YulFunctionCall","src":"4669:30:17"},"nodeType":"YulIf","src":"4666:117:17"},{"nodeType":"YulAssignment","src":"4797:117:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4886:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4897:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4882:3:17"},"nodeType":"YulFunctionCall","src":"4882:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4906:7:17"}],"functionName":{"name":"abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulIdentifier","src":"4807:74:17"},"nodeType":"YulFunctionCall","src":"4807:107:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4797:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4288:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4299:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4311:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4319:6:17","type":""}],"src":"4189:742:17"},{"body":{"nodeType":"YulBlock","src":"4982:81:17","statements":[{"nodeType":"YulAssignment","src":"4992:65:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5007:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"5014:42:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5003:3:17"},"nodeType":"YulFunctionCall","src":"5003:54:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4992:7:17"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4964:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4974:7:17","type":""}],"src":"4937:126:17"},{"body":{"nodeType":"YulBlock","src":"5114:51:17","statements":[{"nodeType":"YulAssignment","src":"5124:35:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5153:5:17"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"5135:17:17"},"nodeType":"YulFunctionCall","src":"5135:24:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"5124:7:17"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5096:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"5106:7:17","type":""}],"src":"5069:96:17"},{"body":{"nodeType":"YulBlock","src":"5214:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"5271:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5280:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5283:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5273:6:17"},"nodeType":"YulFunctionCall","src":"5273:12:17"},"nodeType":"YulExpressionStatement","src":"5273:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5237:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5262:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"5244:17:17"},"nodeType":"YulFunctionCall","src":"5244:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"5234:2:17"},"nodeType":"YulFunctionCall","src":"5234:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"5227:6:17"},"nodeType":"YulFunctionCall","src":"5227:43:17"},"nodeType":"YulIf","src":"5224:63:17"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5207:5:17","type":""}],"src":"5171:122:17"},{"body":{"nodeType":"YulBlock","src":"5351:87:17","statements":[{"nodeType":"YulAssignment","src":"5361:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"5383:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5370:12:17"},"nodeType":"YulFunctionCall","src":"5370:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"5361:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5426:5:17"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"5399:26:17"},"nodeType":"YulFunctionCall","src":"5399:33:17"},"nodeType":"YulExpressionStatement","src":"5399:33:17"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"5329:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"5337:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"5345:5:17","type":""}],"src":"5299:139:17"},{"body":{"nodeType":"YulBlock","src":"5527:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"5573:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5575:77:17"},"nodeType":"YulFunctionCall","src":"5575:79:17"},"nodeType":"YulExpressionStatement","src":"5575:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5548:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"5557:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5544:3:17"},"nodeType":"YulFunctionCall","src":"5544:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"5569:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5540:3:17"},"nodeType":"YulFunctionCall","src":"5540:32:17"},"nodeType":"YulIf","src":"5537:119:17"},{"nodeType":"YulBlock","src":"5666:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5681:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5695:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5685:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5710:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5745:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5756:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5741:3:17"},"nodeType":"YulFunctionCall","src":"5741:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5765:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"5720:20:17"},"nodeType":"YulFunctionCall","src":"5720:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5710:6:17"}]}]},{"nodeType":"YulBlock","src":"5793:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5808:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5822:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5812:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5838:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5873:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5884:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5869:3:17"},"nodeType":"YulFunctionCall","src":"5869:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5893:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5848:20:17"},"nodeType":"YulFunctionCall","src":"5848:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5838:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5489:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5500:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5512:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5520:6:17","type":""}],"src":"5444:474:17"},{"body":{"nodeType":"YulBlock","src":"5968:57:17","statements":[{"nodeType":"YulAssignment","src":"5978:41:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5993:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"6000:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5989:3:17"},"nodeType":"YulFunctionCall","src":"5989:30:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"5978:7:17"}]}]},"name":"cleanup_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5950:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"5960:7:17","type":""}],"src":"5924:101:17"},{"body":{"nodeType":"YulBlock","src":"6073:78:17","statements":[{"body":{"nodeType":"YulBlock","src":"6129:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6138:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6141:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6131:6:17"},"nodeType":"YulFunctionCall","src":"6131:12:17"},"nodeType":"YulExpressionStatement","src":"6131:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6096:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6120:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"6103:16:17"},"nodeType":"YulFunctionCall","src":"6103:23:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6093:2:17"},"nodeType":"YulFunctionCall","src":"6093:34:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6086:6:17"},"nodeType":"YulFunctionCall","src":"6086:42:17"},"nodeType":"YulIf","src":"6083:62:17"}]},"name":"validator_revert_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6066:5:17","type":""}],"src":"6031:120:17"},{"body":{"nodeType":"YulBlock","src":"6208:86:17","statements":[{"nodeType":"YulAssignment","src":"6218:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"6240:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"6227:12:17"},"nodeType":"YulFunctionCall","src":"6227:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"6218:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6282:5:17"}],"functionName":{"name":"validator_revert_t_uint64","nodeType":"YulIdentifier","src":"6256:25:17"},"nodeType":"YulFunctionCall","src":"6256:32:17"},"nodeType":"YulExpressionStatement","src":"6256:32:17"}]},"name":"abi_decode_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"6186:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"6194:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"6202:5:17","type":""}],"src":"6157:137:17"},{"body":{"nodeType":"YulBlock","src":"6365:262:17","statements":[{"body":{"nodeType":"YulBlock","src":"6411:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"6413:77:17"},"nodeType":"YulFunctionCall","src":"6413:79:17"},"nodeType":"YulExpressionStatement","src":"6413:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"6386:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"6395:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6382:3:17"},"nodeType":"YulFunctionCall","src":"6382:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"6407:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"6378:3:17"},"nodeType":"YulFunctionCall","src":"6378:32:17"},"nodeType":"YulIf","src":"6375:119:17"},{"nodeType":"YulBlock","src":"6504:116:17","statements":[{"nodeType":"YulVariableDeclaration","src":"6519:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"6533:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"6523:6:17","type":""}]},{"nodeType":"YulAssignment","src":"6548:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6582:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"6593:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6578:3:17"},"nodeType":"YulFunctionCall","src":"6578:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"6602:7:17"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"6558:19:17"},"nodeType":"YulFunctionCall","src":"6558:52:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"6548:6:17"}]}]}]},"name":"abi_decode_tuple_t_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6335:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"6346:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"6358:6:17","type":""}],"src":"6300:327:17"},{"body":{"nodeType":"YulBlock","src":"6675:48:17","statements":[{"nodeType":"YulAssignment","src":"6685:32:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6710:5:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6703:6:17"},"nodeType":"YulFunctionCall","src":"6703:13:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6696:6:17"},"nodeType":"YulFunctionCall","src":"6696:21:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"6685:7:17"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6657:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"6667:7:17","type":""}],"src":"6633:90:17"},{"body":{"nodeType":"YulBlock","src":"6788:50:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6805:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6825:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"6810:14:17"},"nodeType":"YulFunctionCall","src":"6810:21:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6798:6:17"},"nodeType":"YulFunctionCall","src":"6798:34:17"},"nodeType":"YulExpressionStatement","src":"6798:34:17"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6776:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"6783:3:17","type":""}],"src":"6729:109:17"},{"body":{"nodeType":"YulBlock","src":"6936:118:17","statements":[{"nodeType":"YulAssignment","src":"6946:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6958:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"6969:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6954:3:17"},"nodeType":"YulFunctionCall","src":"6954:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6946:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7020:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7033:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7044:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7029:3:17"},"nodeType":"YulFunctionCall","src":"7029:17:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"6982:37:17"},"nodeType":"YulFunctionCall","src":"6982:65:17"},"nodeType":"YulExpressionStatement","src":"6982:65:17"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6908:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6920:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6931:4:17","type":""}],"src":"6844:210:17"},{"body":{"nodeType":"YulBlock","src":"7105:32:17","statements":[{"nodeType":"YulAssignment","src":"7115:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"7126:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"7115:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"7087:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"7097:7:17","type":""}],"src":"7060:77:17"},{"body":{"nodeType":"YulBlock","src":"7186:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"7243:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7252:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7255:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7245:6:17"},"nodeType":"YulFunctionCall","src":"7245:12:17"},"nodeType":"YulExpressionStatement","src":"7245:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7209:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7234:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"7216:17:17"},"nodeType":"YulFunctionCall","src":"7216:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"7206:2:17"},"nodeType":"YulFunctionCall","src":"7206:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"7199:6:17"},"nodeType":"YulFunctionCall","src":"7199:43:17"},"nodeType":"YulIf","src":"7196:63:17"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"7179:5:17","type":""}],"src":"7143:122:17"},{"body":{"nodeType":"YulBlock","src":"7323:87:17","statements":[{"nodeType":"YulAssignment","src":"7333:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"7355:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7342:12:17"},"nodeType":"YulFunctionCall","src":"7342:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"7333:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"7398:5:17"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"7371:26:17"},"nodeType":"YulFunctionCall","src":"7371:33:17"},"nodeType":"YulExpressionStatement","src":"7371:33:17"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"7301:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"7309:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"7317:5:17","type":""}],"src":"7271:139:17"},{"body":{"nodeType":"YulBlock","src":"7499:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"7545:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"7547:77:17"},"nodeType":"YulFunctionCall","src":"7547:79:17"},"nodeType":"YulExpressionStatement","src":"7547:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7520:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"7529:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7516:3:17"},"nodeType":"YulFunctionCall","src":"7516:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"7541:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7512:3:17"},"nodeType":"YulFunctionCall","src":"7512:32:17"},"nodeType":"YulIf","src":"7509:119:17"},{"nodeType":"YulBlock","src":"7638:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7653:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7667:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7657:6:17","type":""}]},{"nodeType":"YulAssignment","src":"7682:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7717:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"7728:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7713:3:17"},"nodeType":"YulFunctionCall","src":"7713:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7737:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"7692:20:17"},"nodeType":"YulFunctionCall","src":"7692:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7682:6:17"}]}]},{"nodeType":"YulBlock","src":"7765:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"7780:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"7794:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"7784:6:17","type":""}]},{"nodeType":"YulAssignment","src":"7810:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7845:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"7856:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7841:3:17"},"nodeType":"YulFunctionCall","src":"7841:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"7865:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"7820:20:17"},"nodeType":"YulFunctionCall","src":"7820:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7810:6:17"}]}]}]},"name":"abi_decode_tuple_t_uint256t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7461:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7472:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7484:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7492:6:17","type":""}],"src":"7416:474:17"},{"body":{"nodeType":"YulBlock","src":"7962:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"8008:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"8010:77:17"},"nodeType":"YulFunctionCall","src":"8010:79:17"},"nodeType":"YulExpressionStatement","src":"8010:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7983:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"7992:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7979:3:17"},"nodeType":"YulFunctionCall","src":"7979:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"8004:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7975:3:17"},"nodeType":"YulFunctionCall","src":"7975:32:17"},"nodeType":"YulIf","src":"7972:119:17"},{"nodeType":"YulBlock","src":"8101:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8116:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"8130:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8120:6:17","type":""}]},{"nodeType":"YulAssignment","src":"8145:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8180:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"8191:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8176:3:17"},"nodeType":"YulFunctionCall","src":"8176:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8200:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"8155:20:17"},"nodeType":"YulFunctionCall","src":"8155:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8145:6:17"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7932:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7943:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7955:6:17","type":""}],"src":"7896:329:17"},{"body":{"nodeType":"YulBlock","src":"8297:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"8343:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"8345:77:17"},"nodeType":"YulFunctionCall","src":"8345:79:17"},"nodeType":"YulExpressionStatement","src":"8345:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"8318:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"8327:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8314:3:17"},"nodeType":"YulFunctionCall","src":"8314:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"8339:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"8310:3:17"},"nodeType":"YulFunctionCall","src":"8310:32:17"},"nodeType":"YulIf","src":"8307:119:17"},{"nodeType":"YulBlock","src":"8436:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"8451:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"8465:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"8455:6:17","type":""}]},{"nodeType":"YulAssignment","src":"8480:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8515:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"8526:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8511:3:17"},"nodeType":"YulFunctionCall","src":"8511:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"8535:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"8490:20:17"},"nodeType":"YulFunctionCall","src":"8490:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"8480:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8267:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"8278:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"8290:6:17","type":""}],"src":"8231:329:17"},{"body":{"nodeType":"YulBlock","src":"8621:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8638:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8661:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"8643:17:17"},"nodeType":"YulFunctionCall","src":"8643:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8631:6:17"},"nodeType":"YulFunctionCall","src":"8631:37:17"},"nodeType":"YulExpressionStatement","src":"8631:37:17"}]},"name":"abi_encode_t_address_to_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8609:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"8616:3:17","type":""}],"src":"8566:108:17"},{"body":{"nodeType":"YulBlock","src":"8735:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8752:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8775:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"8757:17:17"},"nodeType":"YulFunctionCall","src":"8757:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8745:6:17"},"nodeType":"YulFunctionCall","src":"8745:37:17"},"nodeType":"YulExpressionStatement","src":"8745:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8723:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"8730:3:17","type":""}],"src":"8680:108:17"},{"body":{"nodeType":"YulBlock","src":"8843:50:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8860:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8880:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"8865:14:17"},"nodeType":"YulFunctionCall","src":"8865:21:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8853:6:17"},"nodeType":"YulFunctionCall","src":"8853:34:17"},"nodeType":"YulExpressionStatement","src":"8853:34:17"}]},"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8831:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"8838:3:17","type":""}],"src":"8794:99:17"},{"body":{"nodeType":"YulBlock","src":"8943:65:17","statements":[{"nodeType":"YulAssignment","src":"8953:49:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"8968:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"8975:26:17","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"8964:3:17"},"nodeType":"YulFunctionCall","src":"8964:38:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"8953:7:17"}]}]},"name":"cleanup_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"8925:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"8935:7:17","type":""}],"src":"8899:109:17"},{"body":{"nodeType":"YulBlock","src":"9067:52:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9084:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9106:5:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"9089:16:17"},"nodeType":"YulFunctionCall","src":"9089:23:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9077:6:17"},"nodeType":"YulFunctionCall","src":"9077:36:17"},"nodeType":"YulExpressionStatement","src":"9077:36:17"}]},"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9055:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"9062:3:17","type":""}],"src":"9014:105:17"},{"body":{"nodeType":"YulBlock","src":"9295:1838:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9305:28:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9321:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9326:6:17","type":"","value":"0x0140"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9317:3:17"},"nodeType":"YulFunctionCall","src":"9317:16:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"9309:4:17","type":""}]},{"nodeType":"YulBlock","src":"9343:166:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9380:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9410:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"9417:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9406:3:17"},"nodeType":"YulFunctionCall","src":"9406:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9400:5:17"},"nodeType":"YulFunctionCall","src":"9400:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9384:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"9470:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9488:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9493:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9484:3:17"},"nodeType":"YulFunctionCall","src":"9484:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"9436:33:17"},"nodeType":"YulFunctionCall","src":"9436:63:17"},"nodeType":"YulExpressionStatement","src":"9436:63:17"}]},{"nodeType":"YulBlock","src":"9519:165:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9555:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9585:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"9592:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9581:3:17"},"nodeType":"YulFunctionCall","src":"9581:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9575:5:17"},"nodeType":"YulFunctionCall","src":"9575:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9559:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"9645:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9663:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9668:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9659:3:17"},"nodeType":"YulFunctionCall","src":"9659:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"9611:33:17"},"nodeType":"YulFunctionCall","src":"9611:63:17"},"nodeType":"YulExpressionStatement","src":"9611:63:17"}]},{"nodeType":"YulBlock","src":"9694:178:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9743:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9773:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"9780:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9769:3:17"},"nodeType":"YulFunctionCall","src":"9769:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9763:5:17"},"nodeType":"YulFunctionCall","src":"9763:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9747:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"9833:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9851:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9856:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9847:3:17"},"nodeType":"YulFunctionCall","src":"9847:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"9799:33:17"},"nodeType":"YulFunctionCall","src":"9799:63:17"},"nodeType":"YulExpressionStatement","src":"9799:63:17"}]},{"nodeType":"YulBlock","src":"9882:169:17","statements":[{"nodeType":"YulVariableDeclaration","src":"9922:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"9952:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"9959:4:17","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9948:3:17"},"nodeType":"YulFunctionCall","src":"9948:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9942:5:17"},"nodeType":"YulFunctionCall","src":"9942:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9926:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10012:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10030:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10035:4:17","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10026:3:17"},"nodeType":"YulFunctionCall","src":"10026:14:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"9978:33:17"},"nodeType":"YulFunctionCall","src":"9978:63:17"},"nodeType":"YulExpressionStatement","src":"9978:63:17"}]},{"nodeType":"YulBlock","src":"10061:171:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10103:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10133:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"10140:4:17","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10129:3:17"},"nodeType":"YulFunctionCall","src":"10129:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10123:5:17"},"nodeType":"YulFunctionCall","src":"10123:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10107:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10193:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10211:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10216:4:17","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10207:3:17"},"nodeType":"YulFunctionCall","src":"10207:14:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"10159:33:17"},"nodeType":"YulFunctionCall","src":"10159:63:17"},"nodeType":"YulExpressionStatement","src":"10159:63:17"}]},{"nodeType":"YulBlock","src":"10242:165:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10284:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10314:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"10321:4:17","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10310:3:17"},"nodeType":"YulFunctionCall","src":"10310:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10304:5:17"},"nodeType":"YulFunctionCall","src":"10304:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10288:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10368:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10386:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10391:4:17","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10382:3:17"},"nodeType":"YulFunctionCall","src":"10382:14:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"10340:27:17"},"nodeType":"YulFunctionCall","src":"10340:57:17"},"nodeType":"YulExpressionStatement","src":"10340:57:17"}]},{"nodeType":"YulBlock","src":"10417:164:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10458:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10488:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"10495:4:17","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10484:3:17"},"nodeType":"YulFunctionCall","src":"10484:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10478:5:17"},"nodeType":"YulFunctionCall","src":"10478:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10462:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10542:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10560:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10565:4:17","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10556:3:17"},"nodeType":"YulFunctionCall","src":"10556:14:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool","nodeType":"YulIdentifier","src":"10514:27:17"},"nodeType":"YulFunctionCall","src":"10514:57:17"},"nodeType":"YulExpressionStatement","src":"10514:57:17"}]},{"nodeType":"YulBlock","src":"10591:173:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10635:43:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10665:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"10672:4:17","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10661:3:17"},"nodeType":"YulFunctionCall","src":"10661:16:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10655:5:17"},"nodeType":"YulFunctionCall","src":"10655:23:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10639:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10725:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10743:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10748:4:17","type":"","value":"0xe0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10739:3:17"},"nodeType":"YulFunctionCall","src":"10739:14:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address","nodeType":"YulIdentifier","src":"10691:33:17"},"nodeType":"YulFunctionCall","src":"10691:63:17"},"nodeType":"YulExpressionStatement","src":"10691:63:17"}]},{"nodeType":"YulBlock","src":"10774:172:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10815:45:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"10845:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"10852:6:17","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10841:3:17"},"nodeType":"YulFunctionCall","src":"10841:18:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10835:5:17"},"nodeType":"YulFunctionCall","src":"10835:25:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10819:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"10905:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10923:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10928:6:17","type":"","value":"0x0100"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10919:3:17"},"nodeType":"YulFunctionCall","src":"10919:16:17"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint96","nodeType":"YulIdentifier","src":"10873:31:17"},"nodeType":"YulFunctionCall","src":"10873:63:17"},"nodeType":"YulExpressionStatement","src":"10873:63:17"}]},{"nodeType":"YulBlock","src":"10956:170:17","statements":[{"nodeType":"YulVariableDeclaration","src":"10993:45:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11023:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"11030:6:17","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11019:3:17"},"nodeType":"YulFunctionCall","src":"11019:18:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11013:5:17"},"nodeType":"YulFunctionCall","src":"11013:25:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"10997:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"11085:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11103:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"11108:6:17","type":"","value":"0x0120"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11099:3:17"},"nodeType":"YulFunctionCall","src":"11099:16:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"11051:33:17"},"nodeType":"YulFunctionCall","src":"11051:65:17"},"nodeType":"YulExpressionStatement","src":"11051:65:17"}]}]},"name":"abi_encode_t_struct$_Order_$3370_memory_ptr_to_t_struct$_Order_$3370_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"9282:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"9289:3:17","type":""}],"src":"9183:1950:17"},{"body":{"nodeType":"YulBlock","src":"11283:171:17","statements":[{"nodeType":"YulAssignment","src":"11293:27:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11305:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11316:3:17","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11301:3:17"},"nodeType":"YulFunctionCall","src":"11301:19:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11293:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11420:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11433:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11444:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11429:3:17"},"nodeType":"YulFunctionCall","src":"11429:17:17"}],"functionName":{"name":"abi_encode_t_struct$_Order_$3370_memory_ptr_to_t_struct$_Order_$3370_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11330:89:17"},"nodeType":"YulFunctionCall","src":"11330:117:17"},"nodeType":"YulExpressionStatement","src":"11330:117:17"}]},"name":"abi_encode_tuple_t_struct$_Order_$3370_memory_ptr__to_t_struct$_Order_$3370_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11255:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11267:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11278:4:17","type":""}],"src":"11139:315:17"},{"body":{"nodeType":"YulBlock","src":"11525:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11542:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11565:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"11547:17:17"},"nodeType":"YulFunctionCall","src":"11547:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11535:6:17"},"nodeType":"YulFunctionCall","src":"11535:37:17"},"nodeType":"YulExpressionStatement","src":"11535:37:17"}]},"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11513:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11520:3:17","type":""}],"src":"11460:118:17"},{"body":{"nodeType":"YulBlock","src":"11682:124:17","statements":[{"nodeType":"YulAssignment","src":"11692:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11704:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11715:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11700:3:17"},"nodeType":"YulFunctionCall","src":"11700:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11692:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"11772:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11785:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11796:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11781:3:17"},"nodeType":"YulFunctionCall","src":"11781:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"11728:43:17"},"nodeType":"YulFunctionCall","src":"11728:71:17"},"nodeType":"YulExpressionStatement","src":"11728:71:17"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11654:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11666:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11677:4:17","type":""}],"src":"11584:222:17"},{"body":{"nodeType":"YulBlock","src":"11875:52:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11892:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11914:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"11897:16:17"},"nodeType":"YulFunctionCall","src":"11897:23:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11885:6:17"},"nodeType":"YulFunctionCall","src":"11885:36:17"},"nodeType":"YulExpressionStatement","src":"11885:36:17"}]},"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11863:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11870:3:17","type":""}],"src":"11812:115:17"},{"body":{"nodeType":"YulBlock","src":"11998:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12015:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"12038:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"12020:17:17"},"nodeType":"YulFunctionCall","src":"12020:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12008:6:17"},"nodeType":"YulFunctionCall","src":"12008:37:17"},"nodeType":"YulExpressionStatement","src":"12008:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11986:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11993:3:17","type":""}],"src":"11933:118:17"},{"body":{"nodeType":"YulBlock","src":"12181:204:17","statements":[{"nodeType":"YulAssignment","src":"12191:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12203:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12214:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12199:3:17"},"nodeType":"YulFunctionCall","src":"12199:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12191:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12269:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12282:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12293:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12278:3:17"},"nodeType":"YulFunctionCall","src":"12278:17:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"12227:41:17"},"nodeType":"YulFunctionCall","src":"12227:69:17"},"nodeType":"YulExpressionStatement","src":"12227:69:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"12350:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12363:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12374:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12359:3:17"},"nodeType":"YulFunctionCall","src":"12359:18:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"12306:43:17"},"nodeType":"YulFunctionCall","src":"12306:72:17"},"nodeType":"YulExpressionStatement","src":"12306:72:17"}]},"name":"abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12145:9:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12157:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12165:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12176:4:17","type":""}],"src":"12057:328:17"},{"body":{"nodeType":"YulBlock","src":"12491:519:17","statements":[{"body":{"nodeType":"YulBlock","src":"12537:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"12539:77:17"},"nodeType":"YulFunctionCall","src":"12539:79:17"},"nodeType":"YulExpressionStatement","src":"12539:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"12512:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"12521:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12508:3:17"},"nodeType":"YulFunctionCall","src":"12508:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"12533:2:17","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"12504:3:17"},"nodeType":"YulFunctionCall","src":"12504:32:17"},"nodeType":"YulIf","src":"12501:119:17"},{"nodeType":"YulBlock","src":"12630:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12645:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"12659:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12649:6:17","type":""}]},{"nodeType":"YulAssignment","src":"12674:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12709:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"12720:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12705:3:17"},"nodeType":"YulFunctionCall","src":"12705:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12729:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"12684:20:17"},"nodeType":"YulFunctionCall","src":"12684:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"12674:6:17"}]}]},{"nodeType":"YulBlock","src":"12757:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12772:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"12786:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12776:6:17","type":""}]},{"nodeType":"YulAssignment","src":"12802:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12837:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"12848:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12833:3:17"},"nodeType":"YulFunctionCall","src":"12833:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12857:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"12812:20:17"},"nodeType":"YulFunctionCall","src":"12812:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"12802:6:17"}]}]},{"nodeType":"YulBlock","src":"12885:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"12900:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"12914:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"12904:6:17","type":""}]},{"nodeType":"YulAssignment","src":"12930:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12965:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"12976:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12961:3:17"},"nodeType":"YulFunctionCall","src":"12961:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"12985:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"12940:20:17"},"nodeType":"YulFunctionCall","src":"12940:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"12930:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12445:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"12456:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"12468:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12476:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"12484:6:17","type":""}],"src":"12391:619:17"},{"body":{"nodeType":"YulBlock","src":"13058:78:17","statements":[{"body":{"nodeType":"YulBlock","src":"13114:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13123:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13126:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13116:6:17"},"nodeType":"YulFunctionCall","src":"13116:12:17"},"nodeType":"YulExpressionStatement","src":"13116:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13081:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13105:5:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"13088:16:17"},"nodeType":"YulFunctionCall","src":"13088:23:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"13078:2:17"},"nodeType":"YulFunctionCall","src":"13078:34:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"13071:6:17"},"nodeType":"YulFunctionCall","src":"13071:42:17"},"nodeType":"YulIf","src":"13068:62:17"}]},"name":"validator_revert_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"13051:5:17","type":""}],"src":"13016:120:17"},{"body":{"nodeType":"YulBlock","src":"13193:86:17","statements":[{"nodeType":"YulAssignment","src":"13203:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"13225:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"13212:12:17"},"nodeType":"YulFunctionCall","src":"13212:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"13203:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13267:5:17"}],"functionName":{"name":"validator_revert_t_uint96","nodeType":"YulIdentifier","src":"13241:25:17"},"nodeType":"YulFunctionCall","src":"13241:32:17"},"nodeType":"YulExpressionStatement","src":"13241:32:17"}]},"name":"abi_decode_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"13171:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"13179:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"13187:5:17","type":""}],"src":"13142:137:17"},{"body":{"nodeType":"YulBlock","src":"13374:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"13391:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"13394:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13384:6:17"},"nodeType":"YulFunctionCall","src":"13384:12:17"},"nodeType":"YulExpressionStatement","src":"13384:12:17"}]},"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulFunctionDefinition","src":"13285:117:17"},{"body":{"nodeType":"YulBlock","src":"13497:478:17","statements":[{"body":{"nodeType":"YulBlock","src":"13546:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d","nodeType":"YulIdentifier","src":"13548:77:17"},"nodeType":"YulFunctionCall","src":"13548:79:17"},"nodeType":"YulExpressionStatement","src":"13548:79:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"13525:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13533:4:17","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13521:3:17"},"nodeType":"YulFunctionCall","src":"13521:17:17"},{"name":"end","nodeType":"YulIdentifier","src":"13540:3:17"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"13517:3:17"},"nodeType":"YulFunctionCall","src":"13517:27:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"13510:6:17"},"nodeType":"YulFunctionCall","src":"13510:35:17"},"nodeType":"YulIf","src":"13507:122:17"},{"nodeType":"YulAssignment","src":"13638:30:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"13661:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"13648:12:17"},"nodeType":"YulFunctionCall","src":"13648:20:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"13638:6:17"}]},{"body":{"nodeType":"YulBlock","src":"13711:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490","nodeType":"YulIdentifier","src":"13713:77:17"},"nodeType":"YulFunctionCall","src":"13713:79:17"},"nodeType":"YulExpressionStatement","src":"13713:79:17"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"13683:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13691:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"13680:2:17"},"nodeType":"YulFunctionCall","src":"13680:30:17"},"nodeType":"YulIf","src":"13677:117:17"},{"nodeType":"YulAssignment","src":"13803:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"13819:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13827:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13815:3:17"},"nodeType":"YulFunctionCall","src":"13815:17:17"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"13803:8:17"}]},{"body":{"nodeType":"YulBlock","src":"13886:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef","nodeType":"YulIdentifier","src":"13888:77:17"},"nodeType":"YulFunctionCall","src":"13888:79:17"},"nodeType":"YulExpressionStatement","src":"13888:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"13851:8:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"13865:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13873:4:17","type":"","value":"0x01"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"13861:3:17"},"nodeType":"YulFunctionCall","src":"13861:17:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13847:3:17"},"nodeType":"YulFunctionCall","src":"13847:32:17"},{"name":"end","nodeType":"YulIdentifier","src":"13881:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"13844:2:17"},"nodeType":"YulFunctionCall","src":"13844:41:17"},"nodeType":"YulIf","src":"13841:128:17"}]},"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"13464:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"13472:3:17","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"13480:8:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"13490:6:17","type":""}],"src":"13422:553:17"},{"body":{"nodeType":"YulBlock","src":"14185:1343:17","statements":[{"body":{"nodeType":"YulBlock","src":"14232:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"14234:77:17"},"nodeType":"YulFunctionCall","src":"14234:79:17"},"nodeType":"YulExpressionStatement","src":"14234:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"14206:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"14215:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14202:3:17"},"nodeType":"YulFunctionCall","src":"14202:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"14227:3:17","type":"","value":"256"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"14198:3:17"},"nodeType":"YulFunctionCall","src":"14198:33:17"},"nodeType":"YulIf","src":"14195:120:17"},{"nodeType":"YulBlock","src":"14325:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14340:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"14354:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14344:6:17","type":""}]},{"nodeType":"YulAssignment","src":"14369:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14404:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"14415:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14400:3:17"},"nodeType":"YulFunctionCall","src":"14400:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14424:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"14379:20:17"},"nodeType":"YulFunctionCall","src":"14379:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"14369:6:17"}]}]},{"nodeType":"YulBlock","src":"14452:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14467:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"14481:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14471:6:17","type":""}]},{"nodeType":"YulAssignment","src":"14497:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14532:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"14543:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14528:3:17"},"nodeType":"YulFunctionCall","src":"14528:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14552:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"14507:20:17"},"nodeType":"YulFunctionCall","src":"14507:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"14497:6:17"}]}]},{"nodeType":"YulBlock","src":"14580:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14595:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"14609:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14599:6:17","type":""}]},{"nodeType":"YulAssignment","src":"14625:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14660:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"14671:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14656:3:17"},"nodeType":"YulFunctionCall","src":"14656:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14680:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"14635:20:17"},"nodeType":"YulFunctionCall","src":"14635:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"14625:6:17"}]}]},{"nodeType":"YulBlock","src":"14708:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14723:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"14737:2:17","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14727:6:17","type":""}]},{"nodeType":"YulAssignment","src":"14753:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14787:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"14798:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14783:3:17"},"nodeType":"YulFunctionCall","src":"14783:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14807:7:17"}],"functionName":{"name":"abi_decode_t_uint96","nodeType":"YulIdentifier","src":"14763:19:17"},"nodeType":"YulFunctionCall","src":"14763:52:17"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"14753:6:17"}]}]},{"nodeType":"YulBlock","src":"14835:119:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14850:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"14864:3:17","type":"","value":"128"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14854:6:17","type":""}]},{"nodeType":"YulAssignment","src":"14881:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14916:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"14927:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14912:3:17"},"nodeType":"YulFunctionCall","src":"14912:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"14936:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"14891:20:17"},"nodeType":"YulFunctionCall","src":"14891:53:17"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"14881:6:17"}]}]},{"nodeType":"YulBlock","src":"14964:119:17","statements":[{"nodeType":"YulVariableDeclaration","src":"14979:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"14993:3:17","type":"","value":"160"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"14983:6:17","type":""}]},{"nodeType":"YulAssignment","src":"15010:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15045:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"15056:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15041:3:17"},"nodeType":"YulFunctionCall","src":"15041:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"15065:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"15020:20:17"},"nodeType":"YulFunctionCall","src":"15020:53:17"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"15010:6:17"}]}]},{"nodeType":"YulBlock","src":"15093:119:17","statements":[{"nodeType":"YulVariableDeclaration","src":"15108:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"15122:3:17","type":"","value":"192"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"15112:6:17","type":""}]},{"nodeType":"YulAssignment","src":"15139:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15174:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"15185:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15170:3:17"},"nodeType":"YulFunctionCall","src":"15170:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"15194:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"15149:20:17"},"nodeType":"YulFunctionCall","src":"15149:53:17"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"15139:6:17"}]}]},{"nodeType":"YulBlock","src":"15222:299:17","statements":[{"nodeType":"YulVariableDeclaration","src":"15237:47:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15268:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15279:3:17","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15264:3:17"},"nodeType":"YulFunctionCall","src":"15264:19:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"15251:12:17"},"nodeType":"YulFunctionCall","src":"15251:33:17"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"15241:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"15331:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulIdentifier","src":"15333:77:17"},"nodeType":"YulFunctionCall","src":"15333:79:17"},"nodeType":"YulExpressionStatement","src":"15333:79:17"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"15303:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"15311:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"15300:2:17"},"nodeType":"YulFunctionCall","src":"15300:30:17"},"nodeType":"YulIf","src":"15297:117:17"},{"nodeType":"YulAssignment","src":"15428:83:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15483:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"15494:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15479:3:17"},"nodeType":"YulFunctionCall","src":"15479:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"15503:7:17"}],"functionName":{"name":"abi_decode_t_string_calldata_ptr","nodeType":"YulIdentifier","src":"15446:32:17"},"nodeType":"YulFunctionCall","src":"15446:65:17"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"15428:6:17"},{"name":"value8","nodeType":"YulIdentifier","src":"15436:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes32t_uint96t_addresst_uint256t_addresst_string_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14091:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"14102:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"14114:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"14122:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"14130:6:17","type":""},{"name":"value3","nodeType":"YulTypedName","src":"14138:6:17","type":""},{"name":"value4","nodeType":"YulTypedName","src":"14146:6:17","type":""},{"name":"value5","nodeType":"YulTypedName","src":"14154:6:17","type":""},{"name":"value6","nodeType":"YulTypedName","src":"14162:6:17","type":""},{"name":"value7","nodeType":"YulTypedName","src":"14170:6:17","type":""},{"name":"value8","nodeType":"YulTypedName","src":"14178:6:17","type":""}],"src":"13981:1547:17"},{"body":{"nodeType":"YulBlock","src":"15599:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15616:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"15639:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"15621:17:17"},"nodeType":"YulFunctionCall","src":"15621:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15609:6:17"},"nodeType":"YulFunctionCall","src":"15609:37:17"},"nodeType":"YulExpressionStatement","src":"15609:37:17"}]},"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"15587:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"15594:3:17","type":""}],"src":"15534:118:17"},{"body":{"nodeType":"YulBlock","src":"15756:124:17","statements":[{"nodeType":"YulAssignment","src":"15766:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15778:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15789:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15774:3:17"},"nodeType":"YulFunctionCall","src":"15774:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15766:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15846:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15859:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15870:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15855:3:17"},"nodeType":"YulFunctionCall","src":"15855:17:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"15802:43:17"},"nodeType":"YulFunctionCall","src":"15802:71:17"},"nodeType":"YulExpressionStatement","src":"15802:71:17"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15728:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15740:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15751:4:17","type":""}],"src":"15658:222:17"},{"body":{"nodeType":"YulBlock","src":"16002:647:17","statements":[{"body":{"nodeType":"YulBlock","src":"16049:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"16051:77:17"},"nodeType":"YulFunctionCall","src":"16051:79:17"},"nodeType":"YulExpressionStatement","src":"16051:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"16023:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"16032:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16019:3:17"},"nodeType":"YulFunctionCall","src":"16019:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"16044:3:17","type":"","value":"128"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"16015:3:17"},"nodeType":"YulFunctionCall","src":"16015:33:17"},"nodeType":"YulIf","src":"16012:120:17"},{"nodeType":"YulBlock","src":"16142:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16157:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"16171:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"16161:6:17","type":""}]},{"nodeType":"YulAssignment","src":"16186:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16221:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"16232:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16217:3:17"},"nodeType":"YulFunctionCall","src":"16217:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"16241:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"16196:20:17"},"nodeType":"YulFunctionCall","src":"16196:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"16186:6:17"}]}]},{"nodeType":"YulBlock","src":"16269:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16284:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"16298:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"16288:6:17","type":""}]},{"nodeType":"YulAssignment","src":"16314:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16349:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"16360:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16345:3:17"},"nodeType":"YulFunctionCall","src":"16345:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"16369:7:17"}],"functionName":{"name":"abi_decode_t_bytes32","nodeType":"YulIdentifier","src":"16324:20:17"},"nodeType":"YulFunctionCall","src":"16324:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"16314:6:17"}]}]},{"nodeType":"YulBlock","src":"16397:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16412:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"16426:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"16416:6:17","type":""}]},{"nodeType":"YulAssignment","src":"16442:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16477:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"16488:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16473:3:17"},"nodeType":"YulFunctionCall","src":"16473:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"16497:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"16452:20:17"},"nodeType":"YulFunctionCall","src":"16452:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"16442:6:17"}]}]},{"nodeType":"YulBlock","src":"16525:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"16540:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"16554:2:17","type":"","value":"96"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"16544:6:17","type":""}]},{"nodeType":"YulAssignment","src":"16570:62:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16604:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"16615:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16600:3:17"},"nodeType":"YulFunctionCall","src":"16600:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"16624:7:17"}],"functionName":{"name":"abi_decode_t_uint64","nodeType":"YulIdentifier","src":"16580:19:17"},"nodeType":"YulFunctionCall","src":"16580:52:17"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"16570:6:17"}]}]}]},"name":"abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15948:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"15959:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"15971:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15979:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15987:6:17","type":""},{"name":"value3","nodeType":"YulTypedName","src":"15995:6:17","type":""}],"src":"15886:763:17"},{"body":{"nodeType":"YulBlock","src":"16683:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16700:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"16703:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16693:6:17"},"nodeType":"YulFunctionCall","src":"16693:88:17"},"nodeType":"YulExpressionStatement","src":"16693:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16797:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"16800:4:17","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16790:6:17"},"nodeType":"YulFunctionCall","src":"16790:15:17"},"nodeType":"YulExpressionStatement","src":"16790:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"16821:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"16824:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"16814:6:17"},"nodeType":"YulFunctionCall","src":"16814:15:17"},"nodeType":"YulExpressionStatement","src":"16814:15:17"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"16655:180:17"},{"body":{"nodeType":"YulBlock","src":"16938:40:17","statements":[{"nodeType":"YulAssignment","src":"16949:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"16965:5:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"16959:5:17"},"nodeType":"YulFunctionCall","src":"16959:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"16949:6:17"}]}]},"name":"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"16921:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"16931:6:17","type":""}],"src":"16841:137:17"},{"body":{"nodeType":"YulBlock","src":"17124:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17141:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"17146:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17134:6:17"},"nodeType":"YulFunctionCall","src":"17134:19:17"},"nodeType":"YulExpressionStatement","src":"17134:19:17"},{"nodeType":"YulAssignment","src":"17162:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17181:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"17186:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17177:3:17"},"nodeType":"YulFunctionCall","src":"17177:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"17162:11:17"}]}]},"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17096:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"17101:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"17112:11:17","type":""}],"src":"16984:213:17"},{"body":{"nodeType":"YulBlock","src":"17298:87:17","statements":[{"nodeType":"YulAssignment","src":"17308:11:17","value":{"name":"ptr","nodeType":"YulIdentifier","src":"17316:3:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"17308:4:17"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17336:1:17","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"17339:3:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17329:6:17"},"nodeType":"YulFunctionCall","src":"17329:14:17"},"nodeType":"YulExpressionStatement","src":"17329:14:17"},{"nodeType":"YulAssignment","src":"17352:26:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17370:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"17373:4:17","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"17360:9:17"},"nodeType":"YulFunctionCall","src":"17360:18:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"17352:4:17"}]}]},"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"17285:3:17","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"17293:4:17","type":""}],"src":"17203:182:17"},{"body":{"nodeType":"YulBlock","src":"17442:51:17","statements":[{"nodeType":"YulAssignment","src":"17452:34:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17477:1:17","type":"","value":"0"},{"name":"value","nodeType":"YulIdentifier","src":"17480:5:17"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"17473:3:17"},"nodeType":"YulFunctionCall","src":"17473:13:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"17452:8:17"}]}]},"name":"shift_right_0_unsigned","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"17423:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"17433:8:17","type":""}],"src":"17391:102:17"},{"body":{"nodeType":"YulBlock","src":"17557:32:17","statements":[{"nodeType":"YulAssignment","src":"17567:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"17578:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"17567:7:17"}]}]},"name":"cleanup_from_storage_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"17539:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"17549:7:17","type":""}],"src":"17499:90:17"},{"body":{"nodeType":"YulBlock","src":"17670:91:17","statements":[{"nodeType":"YulAssignment","src":"17680:75:17","value":{"arguments":[{"arguments":[{"name":"slot_value","nodeType":"YulIdentifier","src":"17743:10:17"}],"functionName":{"name":"shift_right_0_unsigned","nodeType":"YulIdentifier","src":"17720:22:17"},"nodeType":"YulFunctionCall","src":"17720:34:17"}],"functionName":{"name":"cleanup_from_storage_t_bytes32","nodeType":"YulIdentifier","src":"17689:30:17"},"nodeType":"YulFunctionCall","src":"17689:66:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"17680:5:17"}]}]},"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot_value","nodeType":"YulTypedName","src":"17649:10:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"17664:5:17","type":""}],"src":"17595:166:17"},{"body":{"nodeType":"YulBlock","src":"17822:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17839:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"17862:5:17"}],"functionName":{"name":"cleanup_t_bytes32","nodeType":"YulIdentifier","src":"17844:17:17"},"nodeType":"YulFunctionCall","src":"17844:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17832:6:17"},"nodeType":"YulFunctionCall","src":"17832:37:17"},"nodeType":"YulExpressionStatement","src":"17832:37:17"}]},"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"17810:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"17817:3:17","type":""}],"src":"17767:108:17"},{"body":{"nodeType":"YulBlock","src":"18068:578:17","statements":[{"nodeType":"YulVariableDeclaration","src":"18078:26:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18094:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"18099:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18090:3:17"},"nodeType":"YulFunctionCall","src":"18090:14:17"},"variables":[{"name":"tail","nodeType":"YulTypedName","src":"18082:4:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"18113:18:17","value":{"kind":"number","nodeType":"YulLiteral","src":"18130:1:17","type":"","value":"0"},"variables":[{"name":"slotValue","nodeType":"YulTypedName","src":"18117:9:17","type":""}]},{"nodeType":"YulBlock","src":"18141:244:17","statements":[{"nodeType":"YulAssignment","src":"18175:36:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"18198:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"18205:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18194:3:17"},"nodeType":"YulFunctionCall","src":"18194:16:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"18188:5:17"},"nodeType":"YulFunctionCall","src":"18188:23:17"},"variableNames":[{"name":"slotValue","nodeType":"YulIdentifier","src":"18175:9:17"}]},{"nodeType":"YulVariableDeclaration","src":"18224:75:17","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"18289:9:17"}],"functionName":{"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulIdentifier","src":"18244:44:17"},"nodeType":"YulFunctionCall","src":"18244:55:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"18228:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"18346:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18364:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"18369:4:17","type":"","value":"0x00"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18360:3:17"},"nodeType":"YulFunctionCall","src":"18360:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"18312:33:17"},"nodeType":"YulFunctionCall","src":"18312:63:17"},"nodeType":"YulExpressionStatement","src":"18312:63:17"}]},{"nodeType":"YulBlock","src":"18395:244:17","statements":[{"nodeType":"YulAssignment","src":"18429:36:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"18452:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"18459:4:17","type":"","value":"0x01"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18448:3:17"},"nodeType":"YulFunctionCall","src":"18448:16:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"18442:5:17"},"nodeType":"YulFunctionCall","src":"18442:23:17"},"variableNames":[{"name":"slotValue","nodeType":"YulIdentifier","src":"18429:9:17"}]},{"nodeType":"YulVariableDeclaration","src":"18478:75:17","value":{"arguments":[{"name":"slotValue","nodeType":"YulIdentifier","src":"18543:9:17"}],"functionName":{"name":"extract_from_storage_value_offset_0t_bytes32","nodeType":"YulIdentifier","src":"18498:44:17"},"nodeType":"YulFunctionCall","src":"18498:55:17"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"18482:12:17","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"18600:12:17"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18618:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"18623:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18614:3:17"},"nodeType":"YulFunctionCall","src":"18614:14:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32","nodeType":"YulIdentifier","src":"18566:33:17"},"nodeType":"YulFunctionCall","src":"18566:63:17"},"nodeType":"YulExpressionStatement","src":"18566:63:17"}]}]},"name":"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"18055:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"18062:3:17","type":""}],"src":"17957:689:17"},{"body":{"nodeType":"YulBlock","src":"18787:154:17","statements":[{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"18886:6:17"},{"name":"pos","nodeType":"YulIdentifier","src":"18894:3:17"}],"functionName":{"name":"abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"18797:88:17"},"nodeType":"YulFunctionCall","src":"18797:101:17"},"nodeType":"YulExpressionStatement","src":"18797:101:17"},{"nodeType":"YulAssignment","src":"18907:28:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18925:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"18930:4:17","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18921:3:17"},"nodeType":"YulFunctionCall","src":"18921:14:17"},"variableNames":[{"name":"updatedPos","nodeType":"YulIdentifier","src":"18907:10:17"}]}]},"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value0","nodeType":"YulTypedName","src":"18760:6:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"18768:3:17","type":""}],"returnVariables":[{"name":"updatedPos","nodeType":"YulTypedName","src":"18776:10:17","type":""}],"src":"18652:289:17"},{"body":{"nodeType":"YulBlock","src":"19045:38:17","statements":[{"nodeType":"YulAssignment","src":"19055:22:17","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"19067:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"19072:4:17","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19063:3:17"},"nodeType":"YulFunctionCall","src":"19063:14:17"},"variableNames":[{"name":"next","nodeType":"YulIdentifier","src":"19055:4:17"}]}]},"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"19032:3:17","type":""}],"returnVariables":[{"name":"next","nodeType":"YulTypedName","src":"19040:4:17","type":""}],"src":"18947:136:17"},{"body":{"nodeType":"YulBlock","src":"19345:754:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19355:91:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19440:5:17"}],"functionName":{"name":"array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"19369:70:17"},"nodeType":"YulFunctionCall","src":"19369:77:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"19359:6:17","type":""}]},{"nodeType":"YulAssignment","src":"19455:122:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"19565:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"19570:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"19462:102:17"},"nodeType":"YulFunctionCall","src":"19462:115:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"19455:3:17"}]},{"nodeType":"YulVariableDeclaration","src":"19586:94:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19674:5:17"}],"functionName":{"name":"array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"19601:72:17"},"nodeType":"YulFunctionCall","src":"19601:79:17"},"variables":[{"name":"baseRef","nodeType":"YulTypedName","src":"19590:7:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"19689:21:17","value":{"name":"baseRef","nodeType":"YulIdentifier","src":"19703:7:17"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"19693:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"19779:295:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19793:27:17","value":{"name":"srcPtr","nodeType":"YulIdentifier","src":"19814:6:17"},"variables":[{"name":"elementValue0","nodeType":"YulTypedName","src":"19797:13:17","type":""}]},{"nodeType":"YulAssignment","src":"19833:125:17","value":{"arguments":[{"name":"elementValue0","nodeType":"YulIdentifier","src":"19939:13:17"},{"name":"pos","nodeType":"YulIdentifier","src":"19954:3:17"}],"functionName":{"name":"abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr","nodeType":"YulIdentifier","src":"19840:98:17"},"nodeType":"YulFunctionCall","src":"19840:118:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"19833:3:17"}]},{"nodeType":"YulAssignment","src":"19971:93:17","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"20057:6:17"}],"functionName":{"name":"array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage","nodeType":"YulIdentifier","src":"19981:75:17"},"nodeType":"YulFunctionCall","src":"19981:83:17"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"19971:6:17"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"19741:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"19744:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"19738:2:17"},"nodeType":"YulFunctionCall","src":"19738:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"19752:18:17","statements":[{"nodeType":"YulAssignment","src":"19754:14:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"19763:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"19766:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19759:3:17"},"nodeType":"YulFunctionCall","src":"19759:9:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"19754:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"19723:14:17","statements":[{"nodeType":"YulVariableDeclaration","src":"19725:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"19734:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"19729:1:17","type":""}]}]},"src":"19719:355:17"},{"nodeType":"YulAssignment","src":"20083:10:17","value":{"name":"pos","nodeType":"YulIdentifier","src":"20090:3:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"20083:3:17"}]}]},"name":"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"19324:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"19331:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"19340:3:17","type":""}],"src":"19169:930:17"},{"body":{"nodeType":"YulBlock","src":"20305:277:17","statements":[{"nodeType":"YulAssignment","src":"20315:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20327:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"20338:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20323:3:17"},"nodeType":"YulFunctionCall","src":"20323:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20315:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20362:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"20373:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20358:3:17"},"nodeType":"YulFunctionCall","src":"20358:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"20381:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"20387:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"20377:3:17"},"nodeType":"YulFunctionCall","src":"20377:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20351:6:17"},"nodeType":"YulFunctionCall","src":"20351:47:17"},"nodeType":"YulExpressionStatement","src":"20351:47:17"},{"nodeType":"YulAssignment","src":"20407:168:17","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"20561:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"20570:4:17"}],"functionName":{"name":"abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"20415:145:17"},"nodeType":"YulFunctionCall","src":"20415:160:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20407:4:17"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20277:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"20289:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20300:4:17","type":""}],"src":"20105:477:17"},{"body":{"nodeType":"YulBlock","src":"20684:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20701:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"20706:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20694:6:17"},"nodeType":"YulFunctionCall","src":"20694:19:17"},"nodeType":"YulExpressionStatement","src":"20694:19:17"},{"nodeType":"YulAssignment","src":"20722:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"20741:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"20746:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20737:3:17"},"nodeType":"YulFunctionCall","src":"20737:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"20722:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"20656:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"20661:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"20672:11:17","type":""}],"src":"20588:169:17"},{"body":{"nodeType":"YulBlock","src":"20869:65:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"20891:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"20899:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20887:3:17"},"nodeType":"YulFunctionCall","src":"20887:14:17"},{"hexValue":"476174657761793a207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"20903:23:17","type":"","value":"Gateway: zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20880:6:17"},"nodeType":"YulFunctionCall","src":"20880:47:17"},"nodeType":"YulExpressionStatement","src":"20880:47:17"}]},"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"20861:6:17","type":""}],"src":"20763:171:17"},{"body":{"nodeType":"YulBlock","src":"21086:220:17","statements":[{"nodeType":"YulAssignment","src":"21096:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21162:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"21167:2:17","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"21103:58:17"},"nodeType":"YulFunctionCall","src":"21103:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"21096:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21268:3:17"}],"functionName":{"name":"store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf","nodeType":"YulIdentifier","src":"21179:88:17"},"nodeType":"YulFunctionCall","src":"21179:93:17"},"nodeType":"YulExpressionStatement","src":"21179:93:17"},{"nodeType":"YulAssignment","src":"21281:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"21292:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"21297:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21288:3:17"},"nodeType":"YulFunctionCall","src":"21288:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"21281:3:17"}]}]},"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"21074:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"21082:3:17","type":""}],"src":"20940:366:17"},{"body":{"nodeType":"YulBlock","src":"21483:248:17","statements":[{"nodeType":"YulAssignment","src":"21493:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21505:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"21516:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21501:3:17"},"nodeType":"YulFunctionCall","src":"21501:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21493:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21540:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"21551:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21536:3:17"},"nodeType":"YulFunctionCall","src":"21536:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"21559:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"21565:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21555:3:17"},"nodeType":"YulFunctionCall","src":"21555:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21529:6:17"},"nodeType":"YulFunctionCall","src":"21529:47:17"},"nodeType":"YulExpressionStatement","src":"21529:47:17"},{"nodeType":"YulAssignment","src":"21585:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"21719:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"21593:124:17"},"nodeType":"YulFunctionCall","src":"21593:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21585:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21463:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21478:4:17","type":""}],"src":"21312:419:17"},{"body":{"nodeType":"YulBlock","src":"21843:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"21865:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"21873:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21861:3:17"},"nodeType":"YulFunctionCall","src":"21861:14:17"},{"hexValue":"476174657761793a207472656173757279206164647265737320616c72656164","kind":"string","nodeType":"YulLiteral","src":"21877:34:17","type":"","value":"Gateway: treasury address alread"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21854:6:17"},"nodeType":"YulFunctionCall","src":"21854:58:17"},"nodeType":"YulExpressionStatement","src":"21854:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"21933:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"21941:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21929:3:17"},"nodeType":"YulFunctionCall","src":"21929:15:17"},{"hexValue":"7920736574","kind":"string","nodeType":"YulLiteral","src":"21946:7:17","type":"","value":"y set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21922:6:17"},"nodeType":"YulFunctionCall","src":"21922:32:17"},"nodeType":"YulExpressionStatement","src":"21922:32:17"}]},"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"21835:6:17","type":""}],"src":"21737:224:17"},{"body":{"nodeType":"YulBlock","src":"22113:220:17","statements":[{"nodeType":"YulAssignment","src":"22123:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"22189:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"22194:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"22130:58:17"},"nodeType":"YulFunctionCall","src":"22130:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"22123:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"22295:3:17"}],"functionName":{"name":"store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead","nodeType":"YulIdentifier","src":"22206:88:17"},"nodeType":"YulFunctionCall","src":"22206:93:17"},"nodeType":"YulExpressionStatement","src":"22206:93:17"},{"nodeType":"YulAssignment","src":"22308:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"22319:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"22324:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22315:3:17"},"nodeType":"YulFunctionCall","src":"22315:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"22308:3:17"}]}]},"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"22101:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"22109:3:17","type":""}],"src":"21967:366:17"},{"body":{"nodeType":"YulBlock","src":"22510:248:17","statements":[{"nodeType":"YulAssignment","src":"22520:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22532:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"22543:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22528:3:17"},"nodeType":"YulFunctionCall","src":"22528:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22520:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22567:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"22578:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22563:3:17"},"nodeType":"YulFunctionCall","src":"22563:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"22586:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"22592:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22582:3:17"},"nodeType":"YulFunctionCall","src":"22582:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22556:6:17"},"nodeType":"YulFunctionCall","src":"22556:47:17"},"nodeType":"YulExpressionStatement","src":"22556:47:17"},{"nodeType":"YulAssignment","src":"22612:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"22746:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"22620:124:17"},"nodeType":"YulFunctionCall","src":"22620:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22612:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22490:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22505:4:17","type":""}],"src":"22339:419:17"},{"body":{"nodeType":"YulBlock","src":"22870:120:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"22892:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"22900:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22888:3:17"},"nodeType":"YulFunctionCall","src":"22888:14:17"},{"hexValue":"476174657761793a2061676772656761746f72206164647265737320616c7265","kind":"string","nodeType":"YulLiteral","src":"22904:34:17","type":"","value":"Gateway: aggregator address alre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22881:6:17"},"nodeType":"YulFunctionCall","src":"22881:58:17"},"nodeType":"YulExpressionStatement","src":"22881:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"22960:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"22968:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22956:3:17"},"nodeType":"YulFunctionCall","src":"22956:15:17"},{"hexValue":"61647920736574","kind":"string","nodeType":"YulLiteral","src":"22973:9:17","type":"","value":"ady set"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22949:6:17"},"nodeType":"YulFunctionCall","src":"22949:34:17"},"nodeType":"YulExpressionStatement","src":"22949:34:17"}]},"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"22862:6:17","type":""}],"src":"22764:226:17"},{"body":{"nodeType":"YulBlock","src":"23142:220:17","statements":[{"nodeType":"YulAssignment","src":"23152:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23218:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"23223:2:17","type":"","value":"39"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"23159:58:17"},"nodeType":"YulFunctionCall","src":"23159:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"23152:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23324:3:17"}],"functionName":{"name":"store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4","nodeType":"YulIdentifier","src":"23235:88:17"},"nodeType":"YulFunctionCall","src":"23235:93:17"},"nodeType":"YulExpressionStatement","src":"23235:93:17"},{"nodeType":"YulAssignment","src":"23337:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"23348:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"23353:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23344:3:17"},"nodeType":"YulFunctionCall","src":"23344:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"23337:3:17"}]}]},"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"23130:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"23138:3:17","type":""}],"src":"22996:366:17"},{"body":{"nodeType":"YulBlock","src":"23539:248:17","statements":[{"nodeType":"YulAssignment","src":"23549:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23561:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"23572:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23557:3:17"},"nodeType":"YulFunctionCall","src":"23557:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23549:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23596:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"23607:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23592:3:17"},"nodeType":"YulFunctionCall","src":"23592:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"23615:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"23621:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"23611:3:17"},"nodeType":"YulFunctionCall","src":"23611:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23585:6:17"},"nodeType":"YulFunctionCall","src":"23585:47:17"},"nodeType":"YulExpressionStatement","src":"23585:47:17"},{"nodeType":"YulAssignment","src":"23641:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"23775:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"23649:124:17"},"nodeType":"YulFunctionCall","src":"23649:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23641:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23519:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23534:4:17","type":""}],"src":"23368:419:17"},{"body":{"nodeType":"YulBlock","src":"23889:122:17","statements":[{"nodeType":"YulAssignment","src":"23899:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23911:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"23922:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23907:3:17"},"nodeType":"YulFunctionCall","src":"23907:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23899:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"23977:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23990:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"24001:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23986:3:17"},"nodeType":"YulFunctionCall","src":"23986:17:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint64_fromStack","nodeType":"YulIdentifier","src":"23935:41:17"},"nodeType":"YulFunctionCall","src":"23935:69:17"},"nodeType":"YulExpressionStatement","src":"23935:69:17"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23861:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"23873:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23884:4:17","type":""}],"src":"23793:218:17"},{"body":{"nodeType":"YulBlock","src":"24123:58:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"24145:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"24153:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24141:3:17"},"nodeType":"YulFunctionCall","src":"24141:14:17"},{"hexValue":"4f6e6c7941676772656761746f72","kind":"string","nodeType":"YulLiteral","src":"24157:16:17","type":"","value":"OnlyAggregator"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24134:6:17"},"nodeType":"YulFunctionCall","src":"24134:40:17"},"nodeType":"YulExpressionStatement","src":"24134:40:17"}]},"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"24115:6:17","type":""}],"src":"24017:164:17"},{"body":{"nodeType":"YulBlock","src":"24333:220:17","statements":[{"nodeType":"YulAssignment","src":"24343:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24409:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"24414:2:17","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24350:58:17"},"nodeType":"YulFunctionCall","src":"24350:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"24343:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24515:3:17"}],"functionName":{"name":"store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243","nodeType":"YulIdentifier","src":"24426:88:17"},"nodeType":"YulFunctionCall","src":"24426:93:17"},"nodeType":"YulExpressionStatement","src":"24426:93:17"},{"nodeType":"YulAssignment","src":"24528:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"24539:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"24544:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24535:3:17"},"nodeType":"YulFunctionCall","src":"24535:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"24528:3:17"}]}]},"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"24321:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"24329:3:17","type":""}],"src":"24187:366:17"},{"body":{"nodeType":"YulBlock","src":"24730:248:17","statements":[{"nodeType":"YulAssignment","src":"24740:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24752:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"24763:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24748:3:17"},"nodeType":"YulFunctionCall","src":"24748:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24740:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24787:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"24798:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24783:3:17"},"nodeType":"YulFunctionCall","src":"24783:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24806:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"24812:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"24802:3:17"},"nodeType":"YulFunctionCall","src":"24802:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24776:6:17"},"nodeType":"YulFunctionCall","src":"24776:47:17"},"nodeType":"YulExpressionStatement","src":"24776:47:17"},{"nodeType":"YulAssignment","src":"24832:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"24966:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"24840:124:17"},"nodeType":"YulFunctionCall","src":"24840:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24832:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24710:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24725:4:17","type":""}],"src":"24559:419:17"},{"body":{"nodeType":"YulBlock","src":"25090:58:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"25112:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"25120:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25108:3:17"},"nodeType":"YulFunctionCall","src":"25108:14:17"},{"hexValue":"4f7264657246756c66696c6c6564","kind":"string","nodeType":"YulLiteral","src":"25124:16:17","type":"","value":"OrderFulfilled"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25101:6:17"},"nodeType":"YulFunctionCall","src":"25101:40:17"},"nodeType":"YulExpressionStatement","src":"25101:40:17"}]},"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"25082:6:17","type":""}],"src":"24984:164:17"},{"body":{"nodeType":"YulBlock","src":"25300:220:17","statements":[{"nodeType":"YulAssignment","src":"25310:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"25376:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"25381:2:17","type":"","value":"14"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"25317:58:17"},"nodeType":"YulFunctionCall","src":"25317:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"25310:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"25482:3:17"}],"functionName":{"name":"store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5","nodeType":"YulIdentifier","src":"25393:88:17"},"nodeType":"YulFunctionCall","src":"25393:93:17"},"nodeType":"YulExpressionStatement","src":"25393:93:17"},{"nodeType":"YulAssignment","src":"25495:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"25506:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"25511:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25502:3:17"},"nodeType":"YulFunctionCall","src":"25502:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"25495:3:17"}]}]},"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"25288:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"25296:3:17","type":""}],"src":"25154:366:17"},{"body":{"nodeType":"YulBlock","src":"25697:248:17","statements":[{"nodeType":"YulAssignment","src":"25707:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25719:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"25730:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25715:3:17"},"nodeType":"YulFunctionCall","src":"25715:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25707:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25754:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"25765:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25750:3:17"},"nodeType":"YulFunctionCall","src":"25750:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25773:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"25779:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"25769:3:17"},"nodeType":"YulFunctionCall","src":"25769:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25743:6:17"},"nodeType":"YulFunctionCall","src":"25743:47:17"},"nodeType":"YulExpressionStatement","src":"25743:47:17"},{"nodeType":"YulAssignment","src":"25799:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"25933:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"25807:124:17"},"nodeType":"YulFunctionCall","src":"25807:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25799:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25677:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25692:4:17","type":""}],"src":"25526:419:17"},{"body":{"nodeType":"YulBlock","src":"26057:57:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"26079:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"26087:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26075:3:17"},"nodeType":"YulFunctionCall","src":"26075:14:17"},{"hexValue":"4f72646572526566756e646564","kind":"string","nodeType":"YulLiteral","src":"26091:15:17","type":"","value":"OrderRefunded"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26068:6:17"},"nodeType":"YulFunctionCall","src":"26068:39:17"},"nodeType":"YulExpressionStatement","src":"26068:39:17"}]},"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"26049:6:17","type":""}],"src":"25951:163:17"},{"body":{"nodeType":"YulBlock","src":"26266:220:17","statements":[{"nodeType":"YulAssignment","src":"26276:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26342:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"26347:2:17","type":"","value":"13"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26283:58:17"},"nodeType":"YulFunctionCall","src":"26283:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"26276:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26448:3:17"}],"functionName":{"name":"store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd","nodeType":"YulIdentifier","src":"26359:88:17"},"nodeType":"YulFunctionCall","src":"26359:93:17"},"nodeType":"YulExpressionStatement","src":"26359:93:17"},{"nodeType":"YulAssignment","src":"26461:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"26472:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"26477:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26468:3:17"},"nodeType":"YulFunctionCall","src":"26468:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"26461:3:17"}]}]},"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"26254:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"26262:3:17","type":""}],"src":"26120:366:17"},{"body":{"nodeType":"YulBlock","src":"26663:248:17","statements":[{"nodeType":"YulAssignment","src":"26673:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26685:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"26696:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26681:3:17"},"nodeType":"YulFunctionCall","src":"26681:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26673:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26720:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"26731:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26716:3:17"},"nodeType":"YulFunctionCall","src":"26716:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"26739:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"26745:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"26735:3:17"},"nodeType":"YulFunctionCall","src":"26735:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26709:6:17"},"nodeType":"YulFunctionCall","src":"26709:47:17"},"nodeType":"YulExpressionStatement","src":"26709:47:17"},{"nodeType":"YulAssignment","src":"26765:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"26899:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"26773:124:17"},"nodeType":"YulFunctionCall","src":"26773:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26765:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26643:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26658:4:17","type":""}],"src":"26492:419:17"},{"body":{"nodeType":"YulBlock","src":"27023:65:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"27045:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"27053:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27041:3:17"},"nodeType":"YulFunctionCall","src":"27041:14:17"},{"hexValue":"4665654578636565647350726f746f636f6c466565","kind":"string","nodeType":"YulLiteral","src":"27057:23:17","type":"","value":"FeeExceedsProtocolFee"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27034:6:17"},"nodeType":"YulFunctionCall","src":"27034:47:17"},"nodeType":"YulExpressionStatement","src":"27034:47:17"}]},"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"27015:6:17","type":""}],"src":"26917:171:17"},{"body":{"nodeType":"YulBlock","src":"27240:220:17","statements":[{"nodeType":"YulAssignment","src":"27250:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27316:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"27321:2:17","type":"","value":"21"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27257:58:17"},"nodeType":"YulFunctionCall","src":"27257:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"27250:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27422:3:17"}],"functionName":{"name":"store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de","nodeType":"YulIdentifier","src":"27333:88:17"},"nodeType":"YulFunctionCall","src":"27333:93:17"},"nodeType":"YulExpressionStatement","src":"27333:93:17"},{"nodeType":"YulAssignment","src":"27435:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"27446:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"27451:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27442:3:17"},"nodeType":"YulFunctionCall","src":"27442:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"27435:3:17"}]}]},"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"27228:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"27236:3:17","type":""}],"src":"27094:366:17"},{"body":{"nodeType":"YulBlock","src":"27637:248:17","statements":[{"nodeType":"YulAssignment","src":"27647:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27659:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"27670:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27655:3:17"},"nodeType":"YulFunctionCall","src":"27655:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27647:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27694:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"27705:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27690:3:17"},"nodeType":"YulFunctionCall","src":"27690:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27713:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"27719:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"27709:3:17"},"nodeType":"YulFunctionCall","src":"27709:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27683:6:17"},"nodeType":"YulFunctionCall","src":"27683:47:17"},"nodeType":"YulExpressionStatement","src":"27683:47:17"},{"nodeType":"YulAssignment","src":"27739:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"27873:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"27747:124:17"},"nodeType":"YulFunctionCall","src":"27747:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27739:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27617:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27632:4:17","type":""}],"src":"27466:419:17"},{"body":{"nodeType":"YulBlock","src":"28017:206:17","statements":[{"nodeType":"YulAssignment","src":"28027:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28039:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"28050:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28035:3:17"},"nodeType":"YulFunctionCall","src":"28035:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28027:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"28107:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28120:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"28131:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28116:3:17"},"nodeType":"YulFunctionCall","src":"28116:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"28063:43:17"},"nodeType":"YulFunctionCall","src":"28063:71:17"},"nodeType":"YulExpressionStatement","src":"28063:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"28188:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28201:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"28212:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28197:3:17"},"nodeType":"YulFunctionCall","src":"28197:18:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"28144:43:17"},"nodeType":"YulFunctionCall","src":"28144:72:17"},"nodeType":"YulExpressionStatement","src":"28144:72:17"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27981:9:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"27993:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"28001:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28012:4:17","type":""}],"src":"27891:332:17"},{"body":{"nodeType":"YulBlock","src":"28269:76:17","statements":[{"body":{"nodeType":"YulBlock","src":"28323:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"28332:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"28335:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"28325:6:17"},"nodeType":"YulFunctionCall","src":"28325:12:17"},"nodeType":"YulExpressionStatement","src":"28325:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"28292:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"28314:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"28299:14:17"},"nodeType":"YulFunctionCall","src":"28299:21:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"28289:2:17"},"nodeType":"YulFunctionCall","src":"28289:32:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"28282:6:17"},"nodeType":"YulFunctionCall","src":"28282:40:17"},"nodeType":"YulIf","src":"28279:60:17"}]},"name":"validator_revert_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"28262:5:17","type":""}],"src":"28229:116:17"},{"body":{"nodeType":"YulBlock","src":"28411:77:17","statements":[{"nodeType":"YulAssignment","src":"28421:22:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"28436:6:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"28430:5:17"},"nodeType":"YulFunctionCall","src":"28430:13:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"28421:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"28476:5:17"}],"functionName":{"name":"validator_revert_t_bool","nodeType":"YulIdentifier","src":"28452:23:17"},"nodeType":"YulFunctionCall","src":"28452:30:17"},"nodeType":"YulExpressionStatement","src":"28452:30:17"}]},"name":"abi_decode_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"28389:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"28397:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"28405:5:17","type":""}],"src":"28351:137:17"},{"body":{"nodeType":"YulBlock","src":"28568:271:17","statements":[{"body":{"nodeType":"YulBlock","src":"28614:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"28616:77:17"},"nodeType":"YulFunctionCall","src":"28616:79:17"},"nodeType":"YulExpressionStatement","src":"28616:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"28589:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"28598:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"28585:3:17"},"nodeType":"YulFunctionCall","src":"28585:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"28610:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"28581:3:17"},"nodeType":"YulFunctionCall","src":"28581:32:17"},"nodeType":"YulIf","src":"28578:119:17"},{"nodeType":"YulBlock","src":"28707:125:17","statements":[{"nodeType":"YulVariableDeclaration","src":"28722:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"28736:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"28726:6:17","type":""}]},{"nodeType":"YulAssignment","src":"28751:71:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28794:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"28805:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28790:3:17"},"nodeType":"YulFunctionCall","src":"28790:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"28814:7:17"}],"functionName":{"name":"abi_decode_t_bool_fromMemory","nodeType":"YulIdentifier","src":"28761:28:17"},"nodeType":"YulFunctionCall","src":"28761:61:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"28751:6:17"}]}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28538:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"28549:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"28561:6:17","type":""}],"src":"28494:345:17"},{"body":{"nodeType":"YulBlock","src":"28873:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"28890:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"28893:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28883:6:17"},"nodeType":"YulFunctionCall","src":"28883:88:17"},"nodeType":"YulExpressionStatement","src":"28883:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"28987:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"28990:4:17","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28980:6:17"},"nodeType":"YulFunctionCall","src":"28980:15:17"},"nodeType":"YulExpressionStatement","src":"28980:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"29011:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"29014:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"29004:6:17"},"nodeType":"YulFunctionCall","src":"29004:15:17"},"nodeType":"YulExpressionStatement","src":"29004:15:17"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"28845:180:17"},{"body":{"nodeType":"YulBlock","src":"29075:147:17","statements":[{"nodeType":"YulAssignment","src":"29085:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29108:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29090:17:17"},"nodeType":"YulFunctionCall","src":"29090:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"29085:1:17"}]},{"nodeType":"YulAssignment","src":"29119:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29142:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29124:17:17"},"nodeType":"YulFunctionCall","src":"29124:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"29119:1:17"}]},{"nodeType":"YulAssignment","src":"29153:16:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29164:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"29167:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29160:3:17"},"nodeType":"YulFunctionCall","src":"29160:9:17"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"29153:3:17"}]},{"body":{"nodeType":"YulBlock","src":"29193:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"29195:16:17"},"nodeType":"YulFunctionCall","src":"29195:18:17"},"nodeType":"YulExpressionStatement","src":"29195:18:17"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29185:1:17"},{"name":"sum","nodeType":"YulIdentifier","src":"29188:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"29182:2:17"},"nodeType":"YulFunctionCall","src":"29182:10:17"},"nodeType":"YulIf","src":"29179:36:17"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"29062:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"29065:1:17","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"29071:3:17","type":""}],"src":"29031:191:17"},{"body":{"nodeType":"YulBlock","src":"29273:149:17","statements":[{"nodeType":"YulAssignment","src":"29283:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29306:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29288:17:17"},"nodeType":"YulFunctionCall","src":"29288:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"29283:1:17"}]},{"nodeType":"YulAssignment","src":"29317:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"29340:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"29322:17:17"},"nodeType":"YulFunctionCall","src":"29322:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"29317:1:17"}]},{"nodeType":"YulAssignment","src":"29351:17:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"29363:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"29366:1:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"29359:3:17"},"nodeType":"YulFunctionCall","src":"29359:9:17"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"29351:4:17"}]},{"body":{"nodeType":"YulBlock","src":"29393:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"29395:16:17"},"nodeType":"YulFunctionCall","src":"29395:18:17"},"nodeType":"YulExpressionStatement","src":"29395:18:17"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"29384:4:17"},{"name":"x","nodeType":"YulIdentifier","src":"29390:1:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"29381:2:17"},"nodeType":"YulFunctionCall","src":"29381:11:17"},"nodeType":"YulIf","src":"29378:37:17"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"29259:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"29262:1:17","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"29268:4:17","type":""}],"src":"29228:194:17"},{"body":{"nodeType":"YulBlock","src":"29526:124:17","statements":[{"nodeType":"YulAssignment","src":"29536:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29548:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"29559:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29544:3:17"},"nodeType":"YulFunctionCall","src":"29544:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"29536:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"29616:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29629:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"29640:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29625:3:17"},"nodeType":"YulFunctionCall","src":"29625:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"29572:43:17"},"nodeType":"YulFunctionCall","src":"29572:71:17"},"nodeType":"YulExpressionStatement","src":"29572:71:17"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"29498:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"29510:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"29521:4:17","type":""}],"src":"29428:222:17"},{"body":{"nodeType":"YulBlock","src":"29762:122:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"29784:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"29792:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29780:3:17"},"nodeType":"YulFunctionCall","src":"29780:14:17"},{"hexValue":"4f776e61626c6532537465703a2063616c6c6572206973206e6f742074686520","kind":"string","nodeType":"YulLiteral","src":"29796:34:17","type":"","value":"Ownable2Step: caller is not the "}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29773:6:17"},"nodeType":"YulFunctionCall","src":"29773:58:17"},"nodeType":"YulExpressionStatement","src":"29773:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"29852:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"29860:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29848:3:17"},"nodeType":"YulFunctionCall","src":"29848:15:17"},{"hexValue":"6e6577206f776e6572","kind":"string","nodeType":"YulLiteral","src":"29865:11:17","type":"","value":"new owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29841:6:17"},"nodeType":"YulFunctionCall","src":"29841:36:17"},"nodeType":"YulExpressionStatement","src":"29841:36:17"}]},"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"29754:6:17","type":""}],"src":"29656:228:17"},{"body":{"nodeType":"YulBlock","src":"30036:220:17","statements":[{"nodeType":"YulAssignment","src":"30046:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30112:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"30117:2:17","type":"","value":"41"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"30053:58:17"},"nodeType":"YulFunctionCall","src":"30053:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"30046:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30218:3:17"}],"functionName":{"name":"store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc","nodeType":"YulIdentifier","src":"30129:88:17"},"nodeType":"YulFunctionCall","src":"30129:93:17"},"nodeType":"YulExpressionStatement","src":"30129:93:17"},{"nodeType":"YulAssignment","src":"30231:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"30242:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"30247:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30238:3:17"},"nodeType":"YulFunctionCall","src":"30238:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"30231:3:17"}]}]},"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"30024:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"30032:3:17","type":""}],"src":"29890:366:17"},{"body":{"nodeType":"YulBlock","src":"30433:248:17","statements":[{"nodeType":"YulAssignment","src":"30443:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30455:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"30466:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30451:3:17"},"nodeType":"YulFunctionCall","src":"30451:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30443:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30490:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"30501:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30486:3:17"},"nodeType":"YulFunctionCall","src":"30486:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"30509:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"30515:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"30505:3:17"},"nodeType":"YulFunctionCall","src":"30505:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30479:6:17"},"nodeType":"YulFunctionCall","src":"30479:47:17"},"nodeType":"YulExpressionStatement","src":"30479:47:17"},{"nodeType":"YulAssignment","src":"30535:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"30669:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"30543:124:17"},"nodeType":"YulFunctionCall","src":"30543:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30535:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"30413:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"30428:4:17","type":""}],"src":"30262:419:17"},{"body":{"nodeType":"YulBlock","src":"30793:127:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"30815:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"30823:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30811:3:17"},"nodeType":"YulFunctionCall","src":"30811:14:17"},{"hexValue":"496e697469616c697a61626c653a20636f6e747261637420697320616c726561","kind":"string","nodeType":"YulLiteral","src":"30827:34:17","type":"","value":"Initializable: contract is alrea"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30804:6:17"},"nodeType":"YulFunctionCall","src":"30804:58:17"},"nodeType":"YulExpressionStatement","src":"30804:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"30883:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"30891:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30879:3:17"},"nodeType":"YulFunctionCall","src":"30879:15:17"},{"hexValue":"647920696e697469616c697a6564","kind":"string","nodeType":"YulLiteral","src":"30896:16:17","type":"","value":"dy initialized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30872:6:17"},"nodeType":"YulFunctionCall","src":"30872:41:17"},"nodeType":"YulExpressionStatement","src":"30872:41:17"}]},"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"30785:6:17","type":""}],"src":"30687:233:17"},{"body":{"nodeType":"YulBlock","src":"31072:220:17","statements":[{"nodeType":"YulAssignment","src":"31082:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31148:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"31153:2:17","type":"","value":"46"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31089:58:17"},"nodeType":"YulFunctionCall","src":"31089:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"31082:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31254:3:17"}],"functionName":{"name":"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759","nodeType":"YulIdentifier","src":"31165:88:17"},"nodeType":"YulFunctionCall","src":"31165:93:17"},"nodeType":"YulExpressionStatement","src":"31165:93:17"},{"nodeType":"YulAssignment","src":"31267:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"31278:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"31283:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31274:3:17"},"nodeType":"YulFunctionCall","src":"31274:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"31267:3:17"}]}]},"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"31060:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"31068:3:17","type":""}],"src":"30926:366:17"},{"body":{"nodeType":"YulBlock","src":"31469:248:17","statements":[{"nodeType":"YulAssignment","src":"31479:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31491:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"31502:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31487:3:17"},"nodeType":"YulFunctionCall","src":"31487:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31479:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31526:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"31537:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31522:3:17"},"nodeType":"YulFunctionCall","src":"31522:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31545:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"31551:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"31541:3:17"},"nodeType":"YulFunctionCall","src":"31541:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31515:6:17"},"nodeType":"YulFunctionCall","src":"31515:47:17"},"nodeType":"YulExpressionStatement","src":"31515:47:17"},{"nodeType":"YulAssignment","src":"31571:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"31705:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"31579:124:17"},"nodeType":"YulFunctionCall","src":"31579:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31571:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31449:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31464:4:17","type":""}],"src":"31298:419:17"},{"body":{"nodeType":"YulBlock","src":"31776:32:17","statements":[{"nodeType":"YulAssignment","src":"31786:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"31797:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"31786:7:17"}]}]},"name":"cleanup_t_rational_1_by_1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"31758:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"31768:7:17","type":""}],"src":"31723:85:17"},{"body":{"nodeType":"YulBlock","src":"31857:43:17","statements":[{"nodeType":"YulAssignment","src":"31867:27:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"31882:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"31889:4:17","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"31878:3:17"},"nodeType":"YulFunctionCall","src":"31878:16:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"31867:7:17"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"31839:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"31849:7:17","type":""}],"src":"31814:86:17"},{"body":{"nodeType":"YulBlock","src":"31938:28:17","statements":[{"nodeType":"YulAssignment","src":"31948:12:17","value":{"name":"value","nodeType":"YulIdentifier","src":"31955:5:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"31948:3:17"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"31924:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"31934:3:17","type":""}],"src":"31906:60:17"},{"body":{"nodeType":"YulBlock","src":"32038:88:17","statements":[{"nodeType":"YulAssignment","src":"32048:72:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32112:5:17"}],"functionName":{"name":"cleanup_t_rational_1_by_1","nodeType":"YulIdentifier","src":"32086:25:17"},"nodeType":"YulFunctionCall","src":"32086:32:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"32077:8:17"},"nodeType":"YulFunctionCall","src":"32077:42:17"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"32061:15:17"},"nodeType":"YulFunctionCall","src":"32061:59:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"32048:9:17"}]}]},"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32018:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"32028:9:17","type":""}],"src":"31972:154:17"},{"body":{"nodeType":"YulBlock","src":"32203:72:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"32220:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"32262:5:17"}],"functionName":{"name":"convert_t_rational_1_by_1_to_t_uint8","nodeType":"YulIdentifier","src":"32225:36:17"},"nodeType":"YulFunctionCall","src":"32225:43:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32213:6:17"},"nodeType":"YulFunctionCall","src":"32213:56:17"},"nodeType":"YulExpressionStatement","src":"32213:56:17"}]},"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"32191:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"32198:3:17","type":""}],"src":"32132:143:17"},{"body":{"nodeType":"YulBlock","src":"32385:130:17","statements":[{"nodeType":"YulAssignment","src":"32395:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32407:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"32418:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32403:3:17"},"nodeType":"YulFunctionCall","src":"32403:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"32395:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"32481:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32494:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"32505:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32490:3:17"},"nodeType":"YulFunctionCall","src":"32490:17:17"}],"functionName":{"name":"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"32431:49:17"},"nodeType":"YulFunctionCall","src":"32431:77:17"},"nodeType":"YulExpressionStatement","src":"32431:77:17"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"32357:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"32369:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"32380:4:17","type":""}],"src":"32281:234:17"},{"body":{"nodeType":"YulBlock","src":"32627:67:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"32649:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"32657:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32645:3:17"},"nodeType":"YulFunctionCall","src":"32645:14:17"},{"hexValue":"476174657761793a20696e76616c696420737461747573","kind":"string","nodeType":"YulLiteral","src":"32661:25:17","type":"","value":"Gateway: invalid status"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32638:6:17"},"nodeType":"YulFunctionCall","src":"32638:49:17"},"nodeType":"YulExpressionStatement","src":"32638:49:17"}]},"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"32619:6:17","type":""}],"src":"32521:173:17"},{"body":{"nodeType":"YulBlock","src":"32846:220:17","statements":[{"nodeType":"YulAssignment","src":"32856:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"32922:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"32927:2:17","type":"","value":"23"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"32863:58:17"},"nodeType":"YulFunctionCall","src":"32863:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"32856:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33028:3:17"}],"functionName":{"name":"store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338","nodeType":"YulIdentifier","src":"32939:88:17"},"nodeType":"YulFunctionCall","src":"32939:93:17"},"nodeType":"YulExpressionStatement","src":"32939:93:17"},{"nodeType":"YulAssignment","src":"33041:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33052:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"33057:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33048:3:17"},"nodeType":"YulFunctionCall","src":"33048:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"33041:3:17"}]}]},"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"32834:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"32842:3:17","type":""}],"src":"32700:366:17"},{"body":{"nodeType":"YulBlock","src":"33243:248:17","statements":[{"nodeType":"YulAssignment","src":"33253:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33265:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"33276:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33261:3:17"},"nodeType":"YulFunctionCall","src":"33261:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"33253:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"33300:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"33311:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33296:3:17"},"nodeType":"YulFunctionCall","src":"33296:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"33319:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"33325:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"33315:3:17"},"nodeType":"YulFunctionCall","src":"33315:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33289:6:17"},"nodeType":"YulFunctionCall","src":"33289:47:17"},"nodeType":"YulExpressionStatement","src":"33289:47:17"},{"nodeType":"YulAssignment","src":"33345:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"33479:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"33353:124:17"},"nodeType":"YulFunctionCall","src":"33353:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"33345:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"33223:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"33238:4:17","type":""}],"src":"33072:419:17"},{"body":{"nodeType":"YulBlock","src":"33603:62:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"33625:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"33633:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"33621:3:17"},"nodeType":"YulFunctionCall","src":"33621:14:17"},{"hexValue":"496e76616c69644d65737361676548617368","kind":"string","nodeType":"YulLiteral","src":"33637:20:17","type":"","value":"InvalidMessageHash"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"33614:6:17"},"nodeType":"YulFunctionCall","src":"33614:44:17"},"nodeType":"YulExpressionStatement","src":"33614:44:17"}]},"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"33595:6:17","type":""}],"src":"33497:168:17"},{"body":{"nodeType":"YulBlock","src":"33817:220:17","statements":[{"nodeType":"YulAssignment","src":"33827:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33893:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"33898:2:17","type":"","value":"18"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"33834:58:17"},"nodeType":"YulFunctionCall","src":"33834:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"33827:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"33999:3:17"}],"functionName":{"name":"store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4","nodeType":"YulIdentifier","src":"33910:88:17"},"nodeType":"YulFunctionCall","src":"33910:93:17"},"nodeType":"YulExpressionStatement","src":"33910:93:17"},{"nodeType":"YulAssignment","src":"34012:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"34023:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"34028:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34019:3:17"},"nodeType":"YulFunctionCall","src":"34019:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"34012:3:17"}]}]},"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"33805:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"33813:3:17","type":""}],"src":"33671:366:17"},{"body":{"nodeType":"YulBlock","src":"34214:248:17","statements":[{"nodeType":"YulAssignment","src":"34224:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34236:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34247:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34232:3:17"},"nodeType":"YulFunctionCall","src":"34232:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34224:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34271:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34282:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34267:3:17"},"nodeType":"YulFunctionCall","src":"34267:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34290:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"34296:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"34286:3:17"},"nodeType":"YulFunctionCall","src":"34286:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"34260:6:17"},"nodeType":"YulFunctionCall","src":"34260:47:17"},"nodeType":"YulExpressionStatement","src":"34260:47:17"},{"nodeType":"YulAssignment","src":"34316:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"34450:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"34324:124:17"},"nodeType":"YulFunctionCall","src":"34324:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34316:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"34194:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"34209:4:17","type":""}],"src":"34043:419:17"},{"body":{"nodeType":"YulBlock","src":"34622:288:17","statements":[{"nodeType":"YulAssignment","src":"34632:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34644:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34655:2:17","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34640:3:17"},"nodeType":"YulFunctionCall","src":"34640:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"34632:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"34712:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34725:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34736:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34721:3:17"},"nodeType":"YulFunctionCall","src":"34721:17:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"34668:43:17"},"nodeType":"YulFunctionCall","src":"34668:71:17"},"nodeType":"YulExpressionStatement","src":"34668:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"34793:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34806:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34817:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34802:3:17"},"nodeType":"YulFunctionCall","src":"34802:18:17"}],"functionName":{"name":"abi_encode_t_address_to_t_address_fromStack","nodeType":"YulIdentifier","src":"34749:43:17"},"nodeType":"YulFunctionCall","src":"34749:72:17"},"nodeType":"YulExpressionStatement","src":"34749:72:17"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"34875:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"34888:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"34899:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"34884:3:17"},"nodeType":"YulFunctionCall","src":"34884:18:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"34831:43:17"},"nodeType":"YulFunctionCall","src":"34831:72:17"},"nodeType":"YulExpressionStatement","src":"34831:72:17"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"34578:9:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"34590:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"34598:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"34606:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"34617:4:17","type":""}],"src":"34468:442:17"},{"body":{"nodeType":"YulBlock","src":"34959:190:17","statements":[{"nodeType":"YulAssignment","src":"34969:33:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"34996:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"34978:17:17"},"nodeType":"YulFunctionCall","src":"34978:24:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"34969:5:17"}]},{"body":{"nodeType":"YulBlock","src":"35092:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"35094:16:17"},"nodeType":"YulFunctionCall","src":"35094:18:17"},"nodeType":"YulExpressionStatement","src":"35094:18:17"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"35017:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"35024:66:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"35014:2:17"},"nodeType":"YulFunctionCall","src":"35014:77:17"},"nodeType":"YulIf","src":"35011:103:17"},{"nodeType":"YulAssignment","src":"35123:20:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"35134:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"35141:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"35130:3:17"},"nodeType":"YulFunctionCall","src":"35130:13:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"35123:3:17"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"34945:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"34955:3:17","type":""}],"src":"34916:233:17"},{"body":{"nodeType":"YulBlock","src":"35203:362:17","statements":[{"nodeType":"YulAssignment","src":"35213:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"35236:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"35218:17:17"},"nodeType":"YulFunctionCall","src":"35218:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"35213:1:17"}]},{"nodeType":"YulAssignment","src":"35247:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"35270:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"35252:17:17"},"nodeType":"YulFunctionCall","src":"35252:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"35247:1:17"}]},{"nodeType":"YulVariableDeclaration","src":"35281:28:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"35304:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"35307:1:17"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"35300:3:17"},"nodeType":"YulFunctionCall","src":"35300:9:17"},"variables":[{"name":"product_raw","nodeType":"YulTypedName","src":"35285:11:17","type":""}]},{"nodeType":"YulAssignment","src":"35318:41:17","value":{"arguments":[{"name":"product_raw","nodeType":"YulIdentifier","src":"35347:11:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"35329:17:17"},"nodeType":"YulFunctionCall","src":"35329:30:17"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"35318:7:17"}]},{"body":{"nodeType":"YulBlock","src":"35536:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"35538:16:17"},"nodeType":"YulFunctionCall","src":"35538:18:17"},"nodeType":"YulExpressionStatement","src":"35538:18:17"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"35469:1:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"35462:6:17"},"nodeType":"YulFunctionCall","src":"35462:9:17"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"35492:1:17"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"35499:7:17"},{"name":"x","nodeType":"YulIdentifier","src":"35508:1:17"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"35495:3:17"},"nodeType":"YulFunctionCall","src":"35495:15:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"35489:2:17"},"nodeType":"YulFunctionCall","src":"35489:22:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"35442:2:17"},"nodeType":"YulFunctionCall","src":"35442:83:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"35422:6:17"},"nodeType":"YulFunctionCall","src":"35422:113:17"},"nodeType":"YulIf","src":"35419:139:17"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"35186:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"35189:1:17","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"35195:7:17","type":""}],"src":"35155:410:17"},{"body":{"nodeType":"YulBlock","src":"35599:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"35616:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"35619:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35609:6:17"},"nodeType":"YulFunctionCall","src":"35609:88:17"},"nodeType":"YulExpressionStatement","src":"35609:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"35713:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"35716:4:17","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"35706:6:17"},"nodeType":"YulFunctionCall","src":"35706:15:17"},"nodeType":"YulExpressionStatement","src":"35706:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"35737:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"35740:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"35730:6:17"},"nodeType":"YulFunctionCall","src":"35730:15:17"},"nodeType":"YulExpressionStatement","src":"35730:15:17"}]},"name":"panic_error_0x12","nodeType":"YulFunctionDefinition","src":"35571:180:17"},{"body":{"nodeType":"YulBlock","src":"35799:143:17","statements":[{"nodeType":"YulAssignment","src":"35809:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"35832:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"35814:17:17"},"nodeType":"YulFunctionCall","src":"35814:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"35809:1:17"}]},{"nodeType":"YulAssignment","src":"35843:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"35866:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"35848:17:17"},"nodeType":"YulFunctionCall","src":"35848:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"35843:1:17"}]},{"body":{"nodeType":"YulBlock","src":"35890:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nodeType":"YulIdentifier","src":"35892:16:17"},"nodeType":"YulFunctionCall","src":"35892:18:17"},"nodeType":"YulExpressionStatement","src":"35892:18:17"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"35887:1:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"35880:6:17"},"nodeType":"YulFunctionCall","src":"35880:9:17"},"nodeType":"YulIf","src":"35877:35:17"},{"nodeType":"YulAssignment","src":"35922:14:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"35931:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"35934:1:17"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"35927:3:17"},"nodeType":"YulFunctionCall","src":"35927:9:17"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"35922:1:17"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"35788:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"35791:1:17","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"35797:1:17","type":""}],"src":"35757:185:17"},{"body":{"nodeType":"YulBlock","src":"36007:81:17","statements":[{"nodeType":"YulAssignment","src":"36017:65:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"36074:5:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"36057:16:17"},"nodeType":"YulFunctionCall","src":"36057:23:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"36048:8:17"},"nodeType":"YulFunctionCall","src":"36048:33:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"36030:17:17"},"nodeType":"YulFunctionCall","src":"36030:52:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"36017:9:17"}]}]},"name":"convert_t_uint96_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"35987:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"35997:9:17","type":""}],"src":"35948:140:17"},{"body":{"nodeType":"YulBlock","src":"36158:65:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36175:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"36210:5:17"}],"functionName":{"name":"convert_t_uint96_to_t_uint256","nodeType":"YulIdentifier","src":"36180:29:17"},"nodeType":"YulFunctionCall","src":"36180:36:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36168:6:17"},"nodeType":"YulFunctionCall","src":"36168:49:17"},"nodeType":"YulExpressionStatement","src":"36168:49:17"}]},"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"36146:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"36153:3:17","type":""}],"src":"36094:129:17"},{"body":{"nodeType":"YulBlock","src":"36293:82:17","statements":[{"expression":{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"36316:3:17"},{"name":"src","nodeType":"YulIdentifier","src":"36321:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"36326:6:17"}],"functionName":{"name":"calldatacopy","nodeType":"YulIdentifier","src":"36303:12:17"},"nodeType":"YulFunctionCall","src":"36303:30:17"},"nodeType":"YulExpressionStatement","src":"36303:30:17"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"36353:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"36358:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36349:3:17"},"nodeType":"YulFunctionCall","src":"36349:16:17"},{"kind":"number","nodeType":"YulLiteral","src":"36367:1:17","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"36342:6:17"},"nodeType":"YulFunctionCall","src":"36342:27:17"},"nodeType":"YulExpressionStatement","src":"36342:27:17"}]},"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"36275:3:17","type":""},{"name":"dst","nodeType":"YulTypedName","src":"36280:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"36285:6:17","type":""}],"src":"36229:146:17"},{"body":{"nodeType":"YulBlock","src":"36507:215:17","statements":[{"nodeType":"YulAssignment","src":"36517:78:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36583:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"36588:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"36524:58:17"},"nodeType":"YulFunctionCall","src":"36524:71:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"36517:3:17"}]},{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"36642:5:17"},{"name":"pos","nodeType":"YulIdentifier","src":"36649:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"36654:6:17"}],"functionName":{"name":"copy_calldata_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"36605:36:17"},"nodeType":"YulFunctionCall","src":"36605:56:17"},"nodeType":"YulExpressionStatement","src":"36605:56:17"},{"nodeType":"YulAssignment","src":"36670:46:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"36681:3:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"36708:6:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"36686:21:17"},"nodeType":"YulFunctionCall","src":"36686:29:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36677:3:17"},"nodeType":"YulFunctionCall","src":"36677:39:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"36670:3:17"}]}]},"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"36480:5:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"36487:6:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"36495:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"36503:3:17","type":""}],"src":"36405:317:17"},{"body":{"nodeType":"YulBlock","src":"36967:534:17","statements":[{"nodeType":"YulAssignment","src":"36977:27:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"36989:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37000:3:17","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"36985:3:17"},"nodeType":"YulFunctionCall","src":"36985:19:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"36977:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"37058:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37071:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37082:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37067:3:17"},"nodeType":"YulFunctionCall","src":"37067:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"37014:43:17"},"nodeType":"YulFunctionCall","src":"37014:71:17"},"nodeType":"YulExpressionStatement","src":"37014:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"37139:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37152:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37163:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37148:3:17"},"nodeType":"YulFunctionCall","src":"37148:18:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"37095:43:17"},"nodeType":"YulFunctionCall","src":"37095:72:17"},"nodeType":"YulExpressionStatement","src":"37095:72:17"},{"expression":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"37220:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37233:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37244:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37229:3:17"},"nodeType":"YulFunctionCall","src":"37229:18:17"}],"functionName":{"name":"abi_encode_t_uint96_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"37177:42:17"},"nodeType":"YulFunctionCall","src":"37177:71:17"},"nodeType":"YulExpressionStatement","src":"37177:71:17"},{"expression":{"arguments":[{"name":"value3","nodeType":"YulIdentifier","src":"37302:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37315:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37326:2:17","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37311:3:17"},"nodeType":"YulFunctionCall","src":"37311:18:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"37258:43:17"},"nodeType":"YulFunctionCall","src":"37258:72:17"},"nodeType":"YulExpressionStatement","src":"37258:72:17"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"37351:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"37362:3:17","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"37347:3:17"},"nodeType":"YulFunctionCall","src":"37347:19:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"37372:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"37378:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"37368:3:17"},"nodeType":"YulFunctionCall","src":"37368:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37340:6:17"},"nodeType":"YulFunctionCall","src":"37340:49:17"},"nodeType":"YulExpressionStatement","src":"37340:49:17"},{"nodeType":"YulAssignment","src":"37398:96:17","value":{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"37472:6:17"},{"name":"value5","nodeType":"YulIdentifier","src":"37480:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"37489:4:17"}],"functionName":{"name":"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"37406:65:17"},"nodeType":"YulFunctionCall","src":"37406:88:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"37398:4:17"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_bytes32_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_bytes32_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"36899:9:17","type":""},{"name":"value5","nodeType":"YulTypedName","src":"36911:6:17","type":""},{"name":"value4","nodeType":"YulTypedName","src":"36919:6:17","type":""},{"name":"value3","nodeType":"YulTypedName","src":"36927:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"36935:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"36943:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"36951:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"36962:4:17","type":""}],"src":"36728:773:17"},{"body":{"nodeType":"YulBlock","src":"37551:172:17","statements":[{"nodeType":"YulAssignment","src":"37561:24:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"37583:1:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"37566:16:17"},"nodeType":"YulFunctionCall","src":"37566:19:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"37561:1:17"}]},{"nodeType":"YulAssignment","src":"37594:24:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"37616:1:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"37599:16:17"},"nodeType":"YulFunctionCall","src":"37599:19:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"37594:1:17"}]},{"nodeType":"YulAssignment","src":"37627:17:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"37639:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"37642:1:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"37635:3:17"},"nodeType":"YulFunctionCall","src":"37635:9:17"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"37627:4:17"}]},{"body":{"nodeType":"YulBlock","src":"37694:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"37696:16:17"},"nodeType":"YulFunctionCall","src":"37696:18:17"},"nodeType":"YulExpressionStatement","src":"37696:18:17"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"37660:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"37666:26:17","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"37657:2:17"},"nodeType":"YulFunctionCall","src":"37657:36:17"},"nodeType":"YulIf","src":"37654:62:17"}]},"name":"checked_sub_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"37537:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"37540:1:17","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"37546:4:17","type":""}],"src":"37507:216:17"},{"body":{"nodeType":"YulBlock","src":"37787:80:17","statements":[{"nodeType":"YulAssignment","src":"37797:64:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"37853:5:17"}],"functionName":{"name":"cleanup_t_uint64","nodeType":"YulIdentifier","src":"37836:16:17"},"nodeType":"YulFunctionCall","src":"37836:23:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"37827:8:17"},"nodeType":"YulFunctionCall","src":"37827:33:17"}],"functionName":{"name":"cleanup_t_uint96","nodeType":"YulIdentifier","src":"37810:16:17"},"nodeType":"YulFunctionCall","src":"37810:51:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"37797:9:17"}]}]},"name":"convert_t_uint64_to_t_uint96","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"37767:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"37777:9:17","type":""}],"src":"37729:138:17"},{"body":{"nodeType":"YulBlock","src":"37936:64:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"37953:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"37987:5:17"}],"functionName":{"name":"convert_t_uint64_to_t_uint96","nodeType":"YulIdentifier","src":"37958:28:17"},"nodeType":"YulFunctionCall","src":"37958:35:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"37946:6:17"},"nodeType":"YulFunctionCall","src":"37946:48:17"},"nodeType":"YulExpressionStatement","src":"37946:48:17"}]},"name":"abi_encode_t_uint64_to_t_uint96_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"37924:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"37931:3:17","type":""}],"src":"37873:127:17"},{"body":{"nodeType":"YulBlock","src":"38130:204:17","statements":[{"nodeType":"YulAssignment","src":"38140:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38152:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38163:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38148:3:17"},"nodeType":"YulFunctionCall","src":"38148:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"38140:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"38220:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38233:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38244:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38229:3:17"},"nodeType":"YulFunctionCall","src":"38229:17:17"}],"functionName":{"name":"abi_encode_t_bytes32_to_t_bytes32_fromStack","nodeType":"YulIdentifier","src":"38176:43:17"},"nodeType":"YulFunctionCall","src":"38176:71:17"},"nodeType":"YulExpressionStatement","src":"38176:71:17"},{"expression":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"38299:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"38312:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"38323:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38308:3:17"},"nodeType":"YulFunctionCall","src":"38308:18:17"}],"functionName":{"name":"abi_encode_t_uint64_to_t_uint96_fromStack","nodeType":"YulIdentifier","src":"38257:41:17"},"nodeType":"YulFunctionCall","src":"38257:70:17"},"nodeType":"YulExpressionStatement","src":"38257:70:17"}]},"name":"abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"38094:9:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"38106:6:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"38114:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"38125:4:17","type":""}],"src":"38006:328:17"},{"body":{"nodeType":"YulBlock","src":"38446:76:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"38468:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"38476:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38464:3:17"},"nodeType":"YulFunctionCall","src":"38464:14:17"},{"hexValue":"4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572","kind":"string","nodeType":"YulLiteral","src":"38480:34:17","type":"","value":"Ownable: caller is not the owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"38457:6:17"},"nodeType":"YulFunctionCall","src":"38457:58:17"},"nodeType":"YulExpressionStatement","src":"38457:58:17"}]},"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"38438:6:17","type":""}],"src":"38340:182:17"},{"body":{"nodeType":"YulBlock","src":"38674:220:17","statements":[{"nodeType":"YulAssignment","src":"38684:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"38750:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"38755:2:17","type":"","value":"32"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"38691:58:17"},"nodeType":"YulFunctionCall","src":"38691:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"38684:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"38856:3:17"}],"functionName":{"name":"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe","nodeType":"YulIdentifier","src":"38767:88:17"},"nodeType":"YulFunctionCall","src":"38767:93:17"},"nodeType":"YulExpressionStatement","src":"38767:93:17"},{"nodeType":"YulAssignment","src":"38869:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"38880:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"38885:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"38876:3:17"},"nodeType":"YulFunctionCall","src":"38876:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"38869:3:17"}]}]},"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"38662:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"38670:3:17","type":""}],"src":"38528:366:17"},{"body":{"nodeType":"YulBlock","src":"39071:248:17","statements":[{"nodeType":"YulAssignment","src":"39081:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39093:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"39104:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39089:3:17"},"nodeType":"YulFunctionCall","src":"39089:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"39081:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"39128:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"39139:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39124:3:17"},"nodeType":"YulFunctionCall","src":"39124:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"39147:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"39153:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"39143:3:17"},"nodeType":"YulFunctionCall","src":"39143:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39117:6:17"},"nodeType":"YulFunctionCall","src":"39117:47:17"},"nodeType":"YulExpressionStatement","src":"39117:47:17"},{"nodeType":"YulAssignment","src":"39173:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"39307:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"39181:124:17"},"nodeType":"YulFunctionCall","src":"39181:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"39173:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"39051:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"39066:4:17","type":""}],"src":"38900:419:17"},{"body":{"nodeType":"YulBlock","src":"39431:124:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"39453:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"39461:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39449:3:17"},"nodeType":"YulFunctionCall","src":"39449:14:17"},{"hexValue":"496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069","kind":"string","nodeType":"YulLiteral","src":"39465:34:17","type":"","value":"Initializable: contract is not i"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39442:6:17"},"nodeType":"YulFunctionCall","src":"39442:58:17"},"nodeType":"YulExpressionStatement","src":"39442:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"39521:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"39529:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39517:3:17"},"nodeType":"YulFunctionCall","src":"39517:15:17"},{"hexValue":"6e697469616c697a696e67","kind":"string","nodeType":"YulLiteral","src":"39534:13:17","type":"","value":"nitializing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"39510:6:17"},"nodeType":"YulFunctionCall","src":"39510:38:17"},"nodeType":"YulExpressionStatement","src":"39510:38:17"}]},"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"39423:6:17","type":""}],"src":"39325:230:17"},{"body":{"nodeType":"YulBlock","src":"39707:220:17","statements":[{"nodeType":"YulAssignment","src":"39717:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39783:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"39788:2:17","type":"","value":"43"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"39724:58:17"},"nodeType":"YulFunctionCall","src":"39724:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"39717:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39889:3:17"}],"functionName":{"name":"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b","nodeType":"YulIdentifier","src":"39800:88:17"},"nodeType":"YulFunctionCall","src":"39800:93:17"},"nodeType":"YulExpressionStatement","src":"39800:93:17"},{"nodeType":"YulAssignment","src":"39902:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"39913:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"39918:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"39909:3:17"},"nodeType":"YulFunctionCall","src":"39909:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"39902:3:17"}]}]},"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"39695:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"39703:3:17","type":""}],"src":"39561:366:17"},{"body":{"nodeType":"YulBlock","src":"40104:248:17","statements":[{"nodeType":"YulAssignment","src":"40114:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40126:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"40137:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40122:3:17"},"nodeType":"YulFunctionCall","src":"40122:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40114:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"40161:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"40172:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40157:3:17"},"nodeType":"YulFunctionCall","src":"40157:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"40180:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"40186:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"40176:3:17"},"nodeType":"YulFunctionCall","src":"40176:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40150:6:17"},"nodeType":"YulFunctionCall","src":"40150:47:17"},"nodeType":"YulExpressionStatement","src":"40150:47:17"},{"nodeType":"YulAssignment","src":"40206:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"40340:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40214:124:17"},"nodeType":"YulFunctionCall","src":"40214:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"40206:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"40084:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"40099:4:17","type":""}],"src":"39933:419:17"},{"body":{"nodeType":"YulBlock","src":"40464:60:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"40486:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"40494:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40482:3:17"},"nodeType":"YulFunctionCall","src":"40482:14:17"},{"hexValue":"5061757361626c653a20706175736564","kind":"string","nodeType":"YulLiteral","src":"40498:18:17","type":"","value":"Pausable: paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"40475:6:17"},"nodeType":"YulFunctionCall","src":"40475:42:17"},"nodeType":"YulExpressionStatement","src":"40475:42:17"}]},"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"40456:6:17","type":""}],"src":"40358:166:17"},{"body":{"nodeType":"YulBlock","src":"40676:220:17","statements":[{"nodeType":"YulAssignment","src":"40686:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40752:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"40757:2:17","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"40693:58:17"},"nodeType":"YulFunctionCall","src":"40693:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"40686:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40858:3:17"}],"functionName":{"name":"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a","nodeType":"YulIdentifier","src":"40769:88:17"},"nodeType":"YulFunctionCall","src":"40769:93:17"},"nodeType":"YulExpressionStatement","src":"40769:93:17"},{"nodeType":"YulAssignment","src":"40871:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"40882:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"40887:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"40878:3:17"},"nodeType":"YulFunctionCall","src":"40878:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"40871:3:17"}]}]},"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"40664:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"40672:3:17","type":""}],"src":"40530:366:17"},{"body":{"nodeType":"YulBlock","src":"41073:248:17","statements":[{"nodeType":"YulAssignment","src":"41083:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41095:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"41106:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41091:3:17"},"nodeType":"YulFunctionCall","src":"41091:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"41083:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"41130:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"41141:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41126:3:17"},"nodeType":"YulFunctionCall","src":"41126:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"41149:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"41155:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"41145:3:17"},"nodeType":"YulFunctionCall","src":"41145:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41119:6:17"},"nodeType":"YulFunctionCall","src":"41119:47:17"},"nodeType":"YulExpressionStatement","src":"41119:47:17"},{"nodeType":"YulAssignment","src":"41175:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"41309:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"41183:124:17"},"nodeType":"YulFunctionCall","src":"41183:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"41175:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"41053:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"41068:4:17","type":""}],"src":"40902:419:17"},{"body":{"nodeType":"YulBlock","src":"41433:61:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"41455:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"41463:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41451:3:17"},"nodeType":"YulFunctionCall","src":"41451:14:17"},{"hexValue":"546f6b656e4e6f74537570706f72746564","kind":"string","nodeType":"YulLiteral","src":"41467:19:17","type":"","value":"TokenNotSupported"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"41444:6:17"},"nodeType":"YulFunctionCall","src":"41444:43:17"},"nodeType":"YulExpressionStatement","src":"41444:43:17"}]},"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"41425:6:17","type":""}],"src":"41327:167:17"},{"body":{"nodeType":"YulBlock","src":"41646:220:17","statements":[{"nodeType":"YulAssignment","src":"41656:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41722:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"41727:2:17","type":"","value":"17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"41663:58:17"},"nodeType":"YulFunctionCall","src":"41663:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"41656:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41828:3:17"}],"functionName":{"name":"store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1","nodeType":"YulIdentifier","src":"41739:88:17"},"nodeType":"YulFunctionCall","src":"41739:93:17"},"nodeType":"YulExpressionStatement","src":"41739:93:17"},{"nodeType":"YulAssignment","src":"41841:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"41852:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"41857:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"41848:3:17"},"nodeType":"YulFunctionCall","src":"41848:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"41841:3:17"}]}]},"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"41634:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"41642:3:17","type":""}],"src":"41500:366:17"},{"body":{"nodeType":"YulBlock","src":"42043:248:17","statements":[{"nodeType":"YulAssignment","src":"42053:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42065:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"42076:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42061:3:17"},"nodeType":"YulFunctionCall","src":"42061:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42053:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"42100:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"42111:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42096:3:17"},"nodeType":"YulFunctionCall","src":"42096:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42119:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"42125:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"42115:3:17"},"nodeType":"YulFunctionCall","src":"42115:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42089:6:17"},"nodeType":"YulFunctionCall","src":"42089:47:17"},"nodeType":"YulExpressionStatement","src":"42089:47:17"},{"nodeType":"YulAssignment","src":"42145:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"42279:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42153:124:17"},"nodeType":"YulFunctionCall","src":"42153:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"42145:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"42023:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"42038:4:17","type":""}],"src":"41872:419:17"},{"body":{"nodeType":"YulBlock","src":"42403:56:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"42425:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"42433:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42421:3:17"},"nodeType":"YulFunctionCall","src":"42421:14:17"},{"hexValue":"416d6f756e7449735a65726f","kind":"string","nodeType":"YulLiteral","src":"42437:14:17","type":"","value":"AmountIsZero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"42414:6:17"},"nodeType":"YulFunctionCall","src":"42414:38:17"},"nodeType":"YulExpressionStatement","src":"42414:38:17"}]},"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"42395:6:17","type":""}],"src":"42297:162:17"},{"body":{"nodeType":"YulBlock","src":"42611:220:17","statements":[{"nodeType":"YulAssignment","src":"42621:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42687:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"42692:2:17","type":"","value":"12"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"42628:58:17"},"nodeType":"YulFunctionCall","src":"42628:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"42621:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42793:3:17"}],"functionName":{"name":"store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2","nodeType":"YulIdentifier","src":"42704:88:17"},"nodeType":"YulFunctionCall","src":"42704:93:17"},"nodeType":"YulExpressionStatement","src":"42704:93:17"},{"nodeType":"YulAssignment","src":"42806:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"42817:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"42822:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"42813:3:17"},"nodeType":"YulFunctionCall","src":"42813:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"42806:3:17"}]}]},"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"42599:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"42607:3:17","type":""}],"src":"42465:366:17"},{"body":{"nodeType":"YulBlock","src":"43008:248:17","statements":[{"nodeType":"YulAssignment","src":"43018:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43030:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"43041:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43026:3:17"},"nodeType":"YulFunctionCall","src":"43026:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43018:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43065:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"43076:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43061:3:17"},"nodeType":"YulFunctionCall","src":"43061:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43084:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"43090:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"43080:3:17"},"nodeType":"YulFunctionCall","src":"43080:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43054:6:17"},"nodeType":"YulFunctionCall","src":"43054:47:17"},"nodeType":"YulExpressionStatement","src":"43054:47:17"},{"nodeType":"YulAssignment","src":"43110:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"43244:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43118:124:17"},"nodeType":"YulFunctionCall","src":"43118:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43110:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"42988:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"43003:4:17","type":""}],"src":"42837:419:17"},{"body":{"nodeType":"YulBlock","src":"43368:60:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"43390:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"43398:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43386:3:17"},"nodeType":"YulFunctionCall","src":"43386:14:17"},{"hexValue":"5468726f775a65726f41646472657373","kind":"string","nodeType":"YulLiteral","src":"43402:18:17","type":"","value":"ThrowZeroAddress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"43379:6:17"},"nodeType":"YulFunctionCall","src":"43379:42:17"},"nodeType":"YulExpressionStatement","src":"43379:42:17"}]},"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"43360:6:17","type":""}],"src":"43262:166:17"},{"body":{"nodeType":"YulBlock","src":"43580:220:17","statements":[{"nodeType":"YulAssignment","src":"43590:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43656:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"43661:2:17","type":"","value":"16"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"43597:58:17"},"nodeType":"YulFunctionCall","src":"43597:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"43590:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43762:3:17"}],"functionName":{"name":"store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7","nodeType":"YulIdentifier","src":"43673:88:17"},"nodeType":"YulFunctionCall","src":"43673:93:17"},"nodeType":"YulExpressionStatement","src":"43673:93:17"},{"nodeType":"YulAssignment","src":"43775:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"43786:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"43791:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43782:3:17"},"nodeType":"YulFunctionCall","src":"43782:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"43775:3:17"}]}]},"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"43568:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"43576:3:17","type":""}],"src":"43434:366:17"},{"body":{"nodeType":"YulBlock","src":"43977:248:17","statements":[{"nodeType":"YulAssignment","src":"43987:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"43999:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"44010:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"43995:3:17"},"nodeType":"YulFunctionCall","src":"43995:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"43987:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44034:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"44045:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44030:3:17"},"nodeType":"YulFunctionCall","src":"44030:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44053:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"44059:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"44049:3:17"},"nodeType":"YulFunctionCall","src":"44049:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44023:6:17"},"nodeType":"YulFunctionCall","src":"44023:47:17"},"nodeType":"YulExpressionStatement","src":"44023:47:17"},{"nodeType":"YulAssignment","src":"44079:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"44213:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44087:124:17"},"nodeType":"YulFunctionCall","src":"44087:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44079:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"43957:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"43972:4:17","type":""}],"src":"43806:419:17"},{"body":{"nodeType":"YulBlock","src":"44337:66:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"44359:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"44367:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44355:3:17"},"nodeType":"YulFunctionCall","src":"44355:14:17"},{"hexValue":"496e76616c6964496e737469747574696f6e436f6465","kind":"string","nodeType":"YulLiteral","src":"44371:24:17","type":"","value":"InvalidInstitutionCode"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44348:6:17"},"nodeType":"YulFunctionCall","src":"44348:48:17"},"nodeType":"YulExpressionStatement","src":"44348:48:17"}]},"name":"store_literal_in_memory_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"44329:6:17","type":""}],"src":"44231:172:17"},{"body":{"nodeType":"YulBlock","src":"44555:220:17","statements":[{"nodeType":"YulAssignment","src":"44565:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44631:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"44636:2:17","type":"","value":"22"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"44572:58:17"},"nodeType":"YulFunctionCall","src":"44572:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"44565:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44737:3:17"}],"functionName":{"name":"store_literal_in_memory_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5","nodeType":"YulIdentifier","src":"44648:88:17"},"nodeType":"YulFunctionCall","src":"44648:93:17"},"nodeType":"YulExpressionStatement","src":"44648:93:17"},{"nodeType":"YulAssignment","src":"44750:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"44761:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"44766:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44757:3:17"},"nodeType":"YulFunctionCall","src":"44757:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"44750:3:17"}]}]},"name":"abi_encode_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"44543:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"44551:3:17","type":""}],"src":"44409:366:17"},{"body":{"nodeType":"YulBlock","src":"44952:248:17","statements":[{"nodeType":"YulAssignment","src":"44962:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"44974:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"44985:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"44970:3:17"},"nodeType":"YulFunctionCall","src":"44970:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"44962:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45009:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"45020:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45005:3:17"},"nodeType":"YulFunctionCall","src":"45005:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45028:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"45034:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"45024:3:17"},"nodeType":"YulFunctionCall","src":"45024:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"44998:6:17"},"nodeType":"YulFunctionCall","src":"44998:47:17"},"nodeType":"YulExpressionStatement","src":"44998:47:17"},{"nodeType":"YulAssignment","src":"45054:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"45188:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45062:124:17"},"nodeType":"YulFunctionCall","src":"45062:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45054:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"44932:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"44947:4:17","type":""}],"src":"44781:419:17"},{"body":{"nodeType":"YulBlock","src":"45312:69:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"45334:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"45342:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45330:3:17"},"nodeType":"YulFunctionCall","src":"45330:14:17"},{"hexValue":"496e76616c696453656e646572466565526563697069656e74","kind":"string","nodeType":"YulLiteral","src":"45346:27:17","type":"","value":"InvalidSenderFeeRecipient"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45323:6:17"},"nodeType":"YulFunctionCall","src":"45323:51:17"},"nodeType":"YulExpressionStatement","src":"45323:51:17"}]},"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"45304:6:17","type":""}],"src":"45206:175:17"},{"body":{"nodeType":"YulBlock","src":"45533:220:17","statements":[{"nodeType":"YulAssignment","src":"45543:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45609:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"45614:2:17","type":"","value":"25"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"45550:58:17"},"nodeType":"YulFunctionCall","src":"45550:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"45543:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45715:3:17"}],"functionName":{"name":"store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8","nodeType":"YulIdentifier","src":"45626:88:17"},"nodeType":"YulFunctionCall","src":"45626:93:17"},"nodeType":"YulExpressionStatement","src":"45626:93:17"},{"nodeType":"YulAssignment","src":"45728:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"45739:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"45744:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45735:3:17"},"nodeType":"YulFunctionCall","src":"45735:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"45728:3:17"}]}]},"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"45521:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"45529:3:17","type":""}],"src":"45387:366:17"},{"body":{"nodeType":"YulBlock","src":"45930:248:17","statements":[{"nodeType":"YulAssignment","src":"45940:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45952:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"45963:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45948:3:17"},"nodeType":"YulFunctionCall","src":"45948:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"45940:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"45987:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"45998:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"45983:3:17"},"nodeType":"YulFunctionCall","src":"45983:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46006:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"46012:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"46002:3:17"},"nodeType":"YulFunctionCall","src":"46002:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"45976:6:17"},"nodeType":"YulFunctionCall","src":"45976:47:17"},"nodeType":"YulExpressionStatement","src":"45976:47:17"},{"nodeType":"YulAssignment","src":"46032:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46166:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46040:124:17"},"nodeType":"YulFunctionCall","src":"46040:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46032:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"45910:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"45925:4:17","type":""}],"src":"45759:419:17"},{"body":{"nodeType":"YulBlock","src":"46290:64:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"46312:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"46320:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46308:3:17"},"nodeType":"YulFunctionCall","src":"46308:14:17"},{"hexValue":"5061757361626c653a206e6f7420706175736564","kind":"string","nodeType":"YulLiteral","src":"46324:22:17","type":"","value":"Pausable: not paused"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46301:6:17"},"nodeType":"YulFunctionCall","src":"46301:46:17"},"nodeType":"YulExpressionStatement","src":"46301:46:17"}]},"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"46282:6:17","type":""}],"src":"46184:170:17"},{"body":{"nodeType":"YulBlock","src":"46506:220:17","statements":[{"nodeType":"YulAssignment","src":"46516:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46582:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"46587:2:17","type":"","value":"20"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"46523:58:17"},"nodeType":"YulFunctionCall","src":"46523:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"46516:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46688:3:17"}],"functionName":{"name":"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a","nodeType":"YulIdentifier","src":"46599:88:17"},"nodeType":"YulFunctionCall","src":"46599:93:17"},"nodeType":"YulExpressionStatement","src":"46599:93:17"},{"nodeType":"YulAssignment","src":"46701:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"46712:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"46717:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46708:3:17"},"nodeType":"YulFunctionCall","src":"46708:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"46701:3:17"}]}]},"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"46494:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"46502:3:17","type":""}],"src":"46360:366:17"},{"body":{"nodeType":"YulBlock","src":"46903:248:17","statements":[{"nodeType":"YulAssignment","src":"46913:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46925:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"46936:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46921:3:17"},"nodeType":"YulFunctionCall","src":"46921:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"46913:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"46960:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"46971:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"46956:3:17"},"nodeType":"YulFunctionCall","src":"46956:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"46979:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"46985:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"46975:3:17"},"nodeType":"YulFunctionCall","src":"46975:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"46949:6:17"},"nodeType":"YulFunctionCall","src":"46949:47:17"},"nodeType":"YulExpressionStatement","src":"46949:47:17"},{"nodeType":"YulAssignment","src":"47005:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"47139:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"47013:124:17"},"nodeType":"YulFunctionCall","src":"47013:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"47005:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"46883:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"46898:4:17","type":""}],"src":"46732:419:17"}]},"contents":"{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f() {\n revert(0, 0)\n }\n\n function revert_error_5e8f644817bc4960744f35c15999b6eff64ae702f94b1c46297cfd4e1aec2421() {\n revert(0, 0)\n }\n\n // struct SharedStructs.Institution\n function abi_decode_t_struct$_Institution_$3449_memory_ptr(headStart, end) -> value {\n if slt(sub(end, headStart), 0x40) { revert_error_3538a459e4a0eb828f1aed5ebe5dc96fe59620a31d9b33e41259bb820cae769f() }\n value := allocate_memory(0x40)\n\n {\n // code\n\n let offset := 0\n\n mstore(add(value, 0x00), abi_decode_t_bytes32(add(headStart, offset), end))\n\n }\n\n {\n // name\n\n let offset := 32\n\n mstore(add(value, 0x20), abi_decode_t_bytes32(add(headStart, offset), end))\n\n }\n\n }\n\n // struct SharedStructs.Institution[]\n function abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let srcEnd := add(offset, mul(length, 0x40))\n if gt(srcEnd, end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let src := offset } lt(src, srcEnd) { src := add(src, 0x40) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_struct$_Institution_$3449_memory_ptr(elementPos, end))\n dst := add(dst, 0x20)\n }\n }\n\n // struct SharedStructs.Institution[]\n function abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_bytes32t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function validator_revert_t_uint64(value) {\n if iszero(eq(value, cleanup_t_uint64(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint64(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint64(value)\n }\n\n function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_bytes32(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_bool_to_t_bool(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function cleanup_t_uint96(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffff)\n }\n\n function abi_encode_t_uint96_to_t_uint96(value, pos) {\n mstore(pos, cleanup_t_uint96(value))\n }\n\n // struct IGatewayV2.Order -> struct IGatewayV2.Order\n function abi_encode_t_struct$_Order_$3370_memory_ptr_to_t_struct$_Order_$3370_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0x0140)\n\n {\n // sender\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x00))\n }\n\n {\n // token\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x20))\n }\n\n {\n // senderFeeRecipient\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x40))\n }\n\n {\n // senderFee\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // protocolFee\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n {\n // isFulfilled\n\n let memberValue0 := mload(add(value, 0xa0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xa0))\n }\n\n {\n // isRefunded\n\n let memberValue0 := mload(add(value, 0xc0))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0xc0))\n }\n\n {\n // refundAddress\n\n let memberValue0 := mload(add(value, 0xe0))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0xe0))\n }\n\n {\n // currentBPS\n\n let memberValue0 := mload(add(value, 0x0100))\n abi_encode_t_uint96_to_t_uint96(memberValue0, add(pos, 0x0100))\n }\n\n {\n // amount\n\n let memberValue0 := mload(add(value, 0x0120))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x0120))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_Order_$3370_memory_ptr__to_t_struct$_Order_$3370_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 320)\n\n abi_encode_t_struct$_Order_$3370_memory_ptr_to_t_struct$_Order_$3370_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint64_t_uint256__to_t_uint64_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_decode_tuple_t_bytes32t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_uint96(value) {\n if iszero(eq(value, cleanup_t_uint96(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint96(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint96(value)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n // string\n function abi_decode_t_string_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_tuple_t_addresst_uint256t_bytes32t_uint96t_addresst_uint256t_addresst_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8 {\n if slt(sub(dataEnd, headStart), 256) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint96(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 192\n\n value6 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 224))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value7, value8 := abi_decode_t_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_bytes32t_addresst_uint64(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value) -> length {\n\n length := sload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function shift_right_0_unsigned(value) -> newValue {\n newValue :=\n\n shr(0, value)\n\n }\n\n function cleanup_from_storage_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function extract_from_storage_value_offset_0t_bytes32(slot_value) -> value {\n value := cleanup_from_storage_t_bytes32(shift_right_0_unsigned(slot_value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n // struct SharedStructs.Institution -> struct SharedStructs.Institution\n function abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value, pos) {\n let tail := add(pos, 0x40)\n let slotValue := 0\n\n {\n // code\n slotValue := sload(add(value, 0x00))\n let memberValue0 := extract_from_storage_value_offset_0t_bytes32(slotValue)\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x00))\n }\n\n {\n // name\n slotValue := sload(add(value, 0x01))\n let memberValue0 := extract_from_storage_value_offset_0t_bytes32(slotValue)\n abi_encode_t_bytes32_to_t_bytes32(memberValue0, add(pos, 0x20))\n }\n\n }\n\n function abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value0, pos) -> updatedPos {\n abi_encode_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(value0, pos)\n updatedPos := add(pos, 0x40)\n }\n\n function array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(ptr) -> next {\n next := add(ptr, 0x02)\n }\n\n // struct SharedStructs.Institution[] -> struct SharedStructs.Institution[]\n function abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := srcPtr\n pos := abi_encodeUpdatedPos_t_struct$_Institution_$3449_storage_to_t_struct$_Institution_$3449_memory_ptr(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage__to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_Institution_$3449_storage_$dyn_storage_to_t_array$_t_struct$_Institution_$3449_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: zero address\")\n\n }\n\n function abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1ed1b610c65ae67667a8e3cd9480c209600a6bf02b22b4af311243c2e6c74caf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: treasury address alread\")\n\n mstore(add(memPtr, 32), \"y set\")\n\n }\n\n function abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b6e1af8cead2910a847eecbe92be55c8397880e12250986fbcac76421d557ead_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: aggregator address alre\")\n\n mstore(add(memPtr, 32), \"ady set\")\n\n }\n\n function abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_df54c347a849fd7dd0b01f92bc3efd917cd7e26dbe67aebf880d956b8dc0bca4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(memPtr) {\n\n mstore(add(memPtr, 0), \"OnlyAggregator\")\n\n }\n\n function abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_feafe41130685cc96aef13592e300ecc17e4f49a66bae4a40d65fbdcce6c7243_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderFulfilled\")\n\n }\n\n function abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_84045048554d058b8a53b78300214112125a1eccddd735f23a805c1c4be2d6f5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(memPtr) {\n\n mstore(add(memPtr, 0), \"OrderRefunded\")\n\n }\n\n function abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 13)\n store_literal_in_memory_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0ab1527a936433fc64df27b599aa49d8cbaac3a88b1b3888cf4384b9e8bea9cd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(memPtr) {\n\n mstore(add(memPtr, 0), \"FeeExceedsProtocolFee\")\n\n }\n\n function abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 21)\n store_literal_in_memory_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c06b87282d804789c7604f19c70a4ed32c29ae2e290ed8b49435ec1484c8a5de_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable2Step: caller is not the \")\n\n mstore(add(memPtr, 32), \"new owner\")\n\n }\n\n function abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_225559eb8402045bea7ff07c35d0ad8c0547830223ac1c21d44fb948d6896ebc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is alrea\")\n\n mstore(add(memPtr, 32), \"dy initialized\")\n\n }\n\n function abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_rational_1_by_1(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_rational_1_by_1_to_t_uint8(value) -> converted {\n converted := cleanup_t_uint8(identity(cleanup_t_rational_1_by_1(value)))\n }\n\n function abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_rational_1_by_1_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(memPtr) {\n\n mstore(add(memPtr, 0), \"Gateway: invalid status\")\n\n }\n\n function abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8363ef1a03c6ce5789016e221f816fab24945c59c2f0126d3b368bfc57b03338_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidMessageHash\")\n\n }\n\n function abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cb943cef37628d805c376539a30fa265326b6f2ae5d9af4711b17e54dc8f15d4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function convert_t_uint96_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint96(value)))\n }\n\n function abi_encode_t_uint96_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_uint96_to_t_uint256(value))\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n // string -> string\n function abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n\n copy_calldata_to_memory_with_cleanup(start, pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_bytes32_t_uint96_t_bytes32_t_string_calldata_ptr__to_t_uint256_t_bytes32_t_uint256_t_bytes32_t_string_memory_ptr__fromStack_reversed(headStart , value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint96_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value3, add(headStart, 96))\n\n mstore(add(headStart, 128), sub(tail, headStart))\n tail := abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(value4, value5, tail)\n\n }\n\n function checked_sub_t_uint96(x, y) -> diff {\n x := cleanup_t_uint96(x)\n y := cleanup_t_uint96(y)\n diff := sub(x, y)\n\n if gt(diff, 0xffffffffffffffffffffffff) { panic_error_0x11() }\n\n }\n\n function convert_t_uint64_to_t_uint96(value) -> converted {\n converted := cleanup_t_uint96(identity(cleanup_t_uint64(value)))\n }\n\n function abi_encode_t_uint64_to_t_uint96_fromStack(value, pos) {\n mstore(pos, convert_t_uint64_to_t_uint96(value))\n }\n\n function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint96__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint64_to_t_uint96_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is not i\")\n\n mstore(add(memPtr, 32), \"nitializing\")\n\n }\n\n function abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenNotSupported\")\n\n }\n\n function abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 17)\n store_literal_in_memory_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d2f8e8f0a3132d85392dd42596f134395b200d03cc73cebaef0c903d898657e1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(memPtr) {\n\n mstore(add(memPtr, 0), \"AmountIsZero\")\n\n }\n\n function abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 12)\n store_literal_in_memory_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_41a3c7da6a405d0b582130b233ab9373122491f5044da88c4622af2417f2b5d2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(memPtr) {\n\n mstore(add(memPtr, 0), \"ThrowZeroAddress\")\n\n }\n\n function abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c69ddfb7ac12bc88a1972db6046dbf646efc1690dd81423d8eb86a59fbc59dd7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidInstitutionCode\")\n\n }\n\n function abi_encode_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 22)\n store_literal_in_memory_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8d342490ebeb898cd40842289fa022183f4fcca41c57866dcb96110f8ec752a5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(memPtr) {\n\n mstore(add(memPtr, 0), \"InvalidSenderFeeRecipient\")\n\n }\n\n function abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ffb69afb32cdb1c7026bbd5bf2be167eb8b698d96a6fa0abd73b70c43ca464b8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106101215760003560e01c806379ba5097116100ad578063cd99240011610071578063cd99240014610297578063d12ff20a146102b3578063e30c3978146102e3578063f22ee70414610301578063f2fde38b1461033157610121565b806379ba50971461023c5780638129fc1c146102465780638456cb59146102505780638da5cb5b1461025a578063b810c6361461027857610121565b80635c975abb116100f45780635c975abb14610184578063715018a6146101a257806371eedb88146101ac57806375151b63146101dc578063768c6ec01461020c57610121565b806332200882146101265780633f4ba83a1461014257806340ebc6771461014c57806347094e2e14610168575b600080fd5b610140600480360381019061013b91906128f7565b61034d565b005b61014a6104c2565b005b610166600480360381019061016191906129b1565b6104d4565b005b610182600480360381019061017d9190612a31565b61079c565b005b61018c610807565b6040516101999190612a79565b60405180910390f35b6101aa61081e565b005b6101c660048036038101906101c19190612aca565b610832565b6040516101d39190612a79565b60405180910390f35b6101f660048036038101906101f19190612b0a565b610cd2565b6040516102039190612a79565b60405180910390f35b61022660048036038101906102219190612b37565b610d2e565b6040516102339190612c84565b60405180910390f35b610244610f47565b005b61024e610fd4565b005b610258611124565b005b610262611136565b60405161026f9190612caf565b60405180910390f35b610280611160565b60405161028e929190612ce8565b60405180910390f35b6102b160048036038101906102ac9190612d11565b611185565b005b6102cd60048036038101906102c89190612deb565b61130a565b6040516102da9190612ed0565b60405180910390f35b6102eb611851565b6040516102f89190612caf565b60405180910390f35b61031b60048036038101906103169190612eeb565b61187b565b6040516103289190612a79565b60405180910390f35b61034b60048036038101906103469190612b0a565b611ed7565b005b610355611f84565b60cd6000838152602001908152602001600020600061037491906125f7565b60005b81518110156104735760cd60008481526020019081526020016000208282815181106103a6576103a5612f52565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061040b5761040a612f52565b5b60200260200101516020015181526020018481525060ce600084848151811061043757610436612f52565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610377565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516104b691906130bb565b60405180910390a25050565b6104ca611f84565b6104d2612002565b565b6104dc611f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361054b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105429061313a565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361064e578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb906131cc565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905061074c565b7f61676772656761746f7200000000000000000000000000000000000000000000830361074b578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc9061325e565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610797578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6107a4611f84565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516107fc919061327e565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b610826611f84565b6108306000612065565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906132e5565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613351565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff161561098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906133bd565b60405180910390fd5b8261010160008481526020019081526020016000206004015410156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90613429565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610a7c929190613449565b6020604051808303816000875af1158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf919061349e565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610b7491906134fa565b610b7e919061352e565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610c2e91906134fa565b6040518363ffffffff1660e01b8152600401610c4b929190613449565b6020604051808303816000875af1158015610c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8e919061349e565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610cbf9190613562565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d245760019050610d29565b600090505b919050565b610d3661261b565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b6000610f51612096565b90508073ffffffffffffffffffffffffffffffffffffffff16610f72611851565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906135ef565b60405180910390fd5b610fd181612065565b50565b60008060019054906101000a900460ff161590508080156110055750600160008054906101000a900460ff1660ff16105b8061103257506110143061209e565b1580156110315750600160008054906101000a900460ff1660ff16145b5b611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613681565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156110ae576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506110c06120c1565b6110c861211a565b80156111215760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161111891906136f3565b60405180910390a15b50565b61112c611f84565b611134612173565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b61118d611f84565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061313a565b60405180910390fd5b600181148061120b5750600281145b61124a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112419061375a565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611305578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516112fc9190613562565b60405180910390a35b505050565b60006113146121d6565b6113228a8a8689898d612220565b60008383905003611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906137c6565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d61139291906134fa565b6040518463ffffffff1660e01b81526004016113b0939291906137e6565b6020604051808303816000875af11580156113cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f3919061349e565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906114459061381d565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405160200161149d929190613449565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6114e69190613865565b6114f091906138d6565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6115b8919061352e565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161183b96959493929190613974565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906132e5565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613351565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff16156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce906133bd565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611a5b91906139d0565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d8d576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611cb457610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611bdd929190613449565b6020604051808303816000875af1158015611bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c20919061349e565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611d8c578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611d47929190613449565b6020604051808303816000875af1158015611d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8a919061349e565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611dbf9190613865565b611dc991906138d6565b90508061010160008881526020019081526020016000206007016000828254611df2919061352e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611e34929190613449565b6020604051808303816000875af1158015611e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e77919061349e565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ec1929190613a41565b60405180910390a3600192505050949350505050565b611edf611f84565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611f3f611136565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611f8c612096565b73ffffffffffffffffffffffffffffffffffffffff16611faa611136565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790613ab6565b60405180910390fd5b565b61200a61241b565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61204e612096565b60405161205b9190612caf565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561209381612464565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613b48565b60405180910390fd5b61211861252a565b565b600060019054906101000a900460ff16612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613b48565b60405180910390fd5b61217161258b565b565b61217b6121d6565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121bf612096565b6040516121cc9190612caf565b60405180910390a1565b6121de610807565b1561221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613bb4565b60405180910390fd5b565b600160cc60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613c20565b60405180910390fd5b600085036122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90613c8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613cf8565b60405180910390fd5b6000602060ff161161239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290613d64565b60405180910390fd5b6000821461241357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990613dd0565b60405180910390fd5b5b505050505050565b612423610807565b612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990613e3c565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff16612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090613b48565b60405180910390fd5b612589612584612096565b612065565b565b600060019054906101000a900460ff166125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190613b48565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061261891906126d8565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b5b808211156126fb576000808201600090556001820160009055506002016126d9565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61272681612713565b811461273157600080fd5b50565b6000813590506127438161271d565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127978261274e565b810181811067ffffffffffffffff821117156127b6576127b561275f565b5b80604052505050565b60006127c96126ff565b90506127d5828261278e565b919050565b600067ffffffffffffffff8211156127f5576127f461275f565b5b602082029050602081019050919050565b600080fd5b600080fd5b6000604082840312156128265761282561280b565b5b61283060406127bf565b9050600061284084828501612734565b600083015250602061285484828501612734565b60208301525092915050565b600061287361286e846127da565b6127bf565b9050808382526020820190506040840283018581111561289657612895612806565b5b835b818110156128bf57806128ab8882612810565b845260208401935050604081019050612898565b5050509392505050565b600082601f8301126128de576128dd612749565b5b81356128ee848260208601612860565b91505092915050565b6000806040838503121561290e5761290d612709565b5b600061291c85828601612734565b925050602083013567ffffffffffffffff81111561293d5761293c61270e565b5b612949858286016128c9565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297e82612953565b9050919050565b61298e81612973565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c7612709565b5b60006129d685828601612734565b92505060206129e78582860161299c565b9150509250929050565b600067ffffffffffffffff82169050919050565b612a0e816129f1565b8114612a1957600080fd5b50565b600081359050612a2b81612a05565b92915050565b600060208284031215612a4757612a46612709565b5b6000612a5584828501612a1c565b91505092915050565b60008115159050919050565b612a7381612a5e565b82525050565b6000602082019050612a8e6000830184612a6a565b92915050565b6000819050919050565b612aa781612a94565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b60008060408385031215612ae157612ae0612709565b5b6000612aef85828601612ab5565b9250506020612b0085828601612734565b9150509250929050565b600060208284031215612b2057612b1f612709565b5b6000612b2e8482850161299c565b91505092915050565b600060208284031215612b4d57612b4c612709565b5b6000612b5b84828501612734565b91505092915050565b612b6d81612973565b82525050565b612b7c81612a94565b82525050565b612b8b81612a5e565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612bb281612b91565b82525050565b61014082016000820151612bcf6000850182612b64565b506020820151612be26020850182612b64565b506040820151612bf56040850182612b64565b506060820151612c086060850182612b73565b506080820151612c1b6080850182612b73565b5060a0820151612c2e60a0850182612b82565b5060c0820151612c4160c0850182612b82565b5060e0820151612c5460e0850182612b64565b50610100820151612c69610100850182612ba9565b50610120820151612c7e610120850182612b73565b50505050565b600061014082019050612c9a6000830184612bb8565b92915050565b612ca981612973565b82525050565b6000602082019050612cc46000830184612ca0565b92915050565b612cd3816129f1565b82525050565b612ce281612a94565b82525050565b6000604082019050612cfd6000830185612cca565b612d0a6020830184612cd9565b9392505050565b600080600060608486031215612d2a57612d29612709565b5b6000612d3886828701612734565b9350506020612d498682870161299c565b9250506040612d5a86828701612ab5565b9150509250925092565b612d6d81612b91565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b600080fd5b60008083601f840112612dab57612daa612749565b5b8235905067ffffffffffffffff811115612dc857612dc7612d90565b5b602083019150836001820283011115612de457612de3612806565b5b9250929050565b60008060008060008060008060006101008a8c031215612e0e57612e0d612709565b5b6000612e1c8c828d0161299c565b9950506020612e2d8c828d01612ab5565b9850506040612e3e8c828d01612734565b9750506060612e4f8c828d01612d7b565b9650506080612e608c828d0161299c565b95505060a0612e718c828d01612ab5565b94505060c0612e828c828d0161299c565b93505060e08a013567ffffffffffffffff811115612ea357612ea261270e565b5b612eaf8c828d01612d95565b92509250509295985092959850929598565b612eca81612713565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b60008060008060808587031215612f0557612f04612709565b5b6000612f1387828801612734565b9450506020612f2487828801612734565b9350506040612f358782880161299c565b9250506060612f4687828801612a1c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000612fdc612fd783612fb2565b612fbf565b9050919050565b612fec81612713565b82525050565b60408201600080830154905061300781612fc9565b6130146000860182612fe3565b506001830154905061302581612fc9565b6130326020860182612fe3565b5050505050565b60006130458383612ff2565b60408301905092915050565b6000600282019050919050565b600061306982612f81565b6130738185612f8c565b935061307e83612f9d565b8060005b838110156130ae57816130958882613039565b97506130a083613051565b925050600181019050613082565b5085935050505092915050565b600060208201905081810360008301526130d5818461305e565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b60006131246015836130dd565b915061312f826130ee565b602082019050919050565b6000602082019050818103600083015261315381613117565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006131b66025836130dd565b91506131c18261315a565b604082019050919050565b600060208201905081810360008301526131e5816131a9565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006132486027836130dd565b9150613253826131ec565b604082019050919050565b600060208201905081810360008301526132778161323b565b9050919050565b60006020820190506132936000830184612cca565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b60006132cf600e836130dd565b91506132da82613299565b602082019050919050565b600060208201905081810360008301526132fe816132c2565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b600061333b600e836130dd565b915061334682613305565b602082019050919050565b6000602082019050818103600083015261336a8161332e565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006133a7600d836130dd565b91506133b282613371565b602082019050919050565b600060208201905081810360008301526133d68161339a565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b60006134136015836130dd565b915061341e826133dd565b602082019050919050565b6000602082019050818103600083015261344281613406565b9050919050565b600060408201905061345e6000830185612ca0565b61346b6020830184612cd9565b9392505050565b61347b81612a5e565b811461348657600080fd5b50565b60008151905061349881613472565b92915050565b6000602082840312156134b4576134b3612709565b5b60006134c284828501613489565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061350582612a94565b915061351083612a94565b9250828201905080821115613528576135276134cb565b5b92915050565b600061353982612a94565b915061354483612a94565b925082820390508181111561355c5761355b6134cb565b5b92915050565b60006020820190506135776000830184612cd9565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135d96029836130dd565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061366b602e836130dd565b91506136768261360f565b604082019050919050565b6000602082019050818103600083015261369a8161365e565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b60006136dd6136d86136d3846136a1565b6136b8565b6136ab565b9050919050565b6136ed816136c2565b82525050565b600060208201905061370860008301846136e4565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006137446017836130dd565b915061374f8261370e565b602082019050919050565b6000602082019050818103600083015261377381613737565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006137b06012836130dd565b91506137bb8261377a565b602082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b60006060820190506137fb6000830186612ca0565b6138086020830185612ca0565b6138156040830184612cd9565b949350505050565b600061382882612a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361385a576138596134cb565b5b600182019050919050565b600061387082612a94565b915061387b83612a94565b925082820261388981612a94565b915082820484148315176138a05761389f6134cb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138e182612a94565b91506138ec83612a94565b9250826138fc576138fb6138a7565b5b828204905092915050565b600061392261391d61391884612b91565b6136b8565b612a94565b9050919050565b61393281613907565b82525050565b82818337600083830152505050565b600061395383856130dd565b9350613960838584613938565b6139698361274e565b840190509392505050565b600060a0820190506139896000830189612cd9565b6139966020830188612ec1565b6139a36040830187613929565b6139b06060830186612ec1565b81810360808301526139c3818486613947565b9050979650505050505050565b60006139db82612b91565b91506139e683612b91565b925082820390506bffffffffffffffffffffffff811115613a0a57613a096134cb565b5b92915050565b6000613a2b613a26613a21846129f1565b6136b8565b612b91565b9050919050565b613a3b81613a10565b82525050565b6000604082019050613a566000830185612ec1565b613a636020830184613a32565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aa06020836130dd565b9150613aab82613a6a565b602082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613b32602b836130dd565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613b9e6010836130dd565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613c0a6011836130dd565b9150613c1582613bd4565b602082019050919050565b60006020820190508181036000830152613c3981613bfd565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613c76600c836130dd565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613ce26010836130dd565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f496e76616c6964496e737469747574696f6e436f646500000000000000000000600082015250565b6000613d4e6016836130dd565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613dba6019836130dd565b9150613dc582613d84565b602082019050919050565b60006020820190508181036000830152613de981613dad565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613e266014836130dd565b9150613e3182613df0565b602082019050919050565b60006020820190508181036000830152613e5581613e19565b905091905056fea26469706673582212207052e17dbf1c403e694b894ce0e7c48def05964824c5ca61166978940a74897964736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79BA5097 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xCD992400 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xCD992400 EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0xD12FF20A EQ PUSH2 0x2B3 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0xF22EE704 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x331 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x79BA5097 EQ PUSH2 0x23C JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x25A JUMPI DUP1 PUSH4 0xB810C636 EQ PUSH2 0x278 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x5C975ABB GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x71EEDB88 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x75151B63 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0x768C6EC0 EQ PUSH2 0x20C JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x32200882 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x40EBC677 EQ PUSH2 0x14C JUMPI DUP1 PUSH4 0x47094E2E EQ PUSH2 0x168 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x140 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x28F7 JUMP JUMPDEST PUSH2 0x34D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14A PUSH2 0x4C2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0x29B1 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0x2A31 JUMP JUMPDEST PUSH2 0x79C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18C PUSH2 0x807 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x199 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AA PUSH2 0x81E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C1 SWAP2 SWAP1 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x832 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D3 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x2B0A JUMP JUMPDEST PUSH2 0xCD2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x203 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x226 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x221 SWAP2 SWAP1 PUSH2 0x2B37 JUMP JUMPDEST PUSH2 0xD2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x233 SWAP2 SWAP1 PUSH2 0x2C84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x244 PUSH2 0xF47 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24E PUSH2 0xFD4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x258 PUSH2 0x1124 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x262 PUSH2 0x1136 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26F SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x280 PUSH2 0x1160 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28E SWAP3 SWAP2 SWAP1 PUSH2 0x2CE8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x2D11 JUMP JUMPDEST PUSH2 0x1185 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C8 SWAP2 SWAP1 PUSH2 0x2DEB JUMP JUMPDEST PUSH2 0x130A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x2ED0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2EB PUSH2 0x1851 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F8 SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x31B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x316 SWAP2 SWAP1 PUSH2 0x2EEB JUMP JUMPDEST PUSH2 0x187B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x2A79 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x346 SWAP2 SWAP1 PUSH2 0x2B0A JUMP JUMPDEST PUSH2 0x1ED7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x355 PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x374 SWAP2 SWAP1 PUSH2 0x25F7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x473 JUMPI PUSH1 0xCD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A6 JUMPI PUSH2 0x3A5 PUSH2 0x2F52 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x40B JUMPI PUSH2 0x40A PUSH2 0x2F52 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP PUSH1 0xCE PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x437 JUMPI PUSH2 0x436 PUSH2 0x2F52 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP DUP1 PUSH1 0x1 ADD SWAP1 POP PUSH2 0x377 JUMP JUMPDEST POP DUP2 PUSH32 0x58F3A30EC15A8D3E09FA65F9EF10219BC7A9A99D872A4ED895C37C2E761AC2AC PUSH1 0xCD PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x4B6 SWAP2 SWAP1 PUSH2 0x30BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x4CA PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x4D2 PUSH2 0x2002 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x4DC PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x54B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x542 SWAP1 PUSH2 0x313A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x7472656173757279000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x64E JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x604 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5FB SWAP1 PUSH2 0x31CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x98 PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP PUSH2 0x74C JUMP JUMPDEST PUSH32 0x61676772656761746F7200000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x74B JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x705 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6FC SWAP1 PUSH2 0x325E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x99 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST JUMPDEST DUP1 ISZERO PUSH2 0x797 JUMPI DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xBBC5B96E57CFECB3DBEEADF92E87F15E58E64FCD75CBE256DCC5D9EF2E51E8A4 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x1F84 JUMP JUMPDEST DUP1 PUSH1 0x98 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x1CE29A697A4765BD17D91DF93BA75B250B629ECF030553FF1F6AB59F15AE6C7B DUP2 PUSH1 0x40 MLOAD PUSH2 0x7FC SWAP2 SWAP1 PUSH2 0x327E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x826 PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x830 PUSH1 0x0 PUSH2 0x2065 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8BB SWAP1 PUSH2 0x32E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x929 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x920 SWAP1 PUSH2 0x3351 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x98E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x985 SWAP1 PUSH2 0x33BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD LT ISZERO PUSH2 0x9E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9DF SWAP1 PUSH2 0x3429 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA7C SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA9B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xABF SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP4 PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0xB74 SWAP2 SWAP1 PUSH2 0x34FA JUMP JUMPDEST PUSH2 0xB7E SWAP2 SWAP1 PUSH2 0x352E JUMP JUMPDEST SWAP1 POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD DUP5 PUSH2 0xC2E SWAP2 SWAP1 PUSH2 0x34FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC4B SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xC6A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC8E SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP DUP3 PUSH32 0x736FE428E1747CA8D387C2E6FA1A31A0CDE62D3A167C40A46ADE59A3CDC828E DUP6 PUSH1 0x40 MLOAD PUSH2 0xCBF SWAP2 SWAP1 PUSH2 0x3562 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SUB PUSH2 0xD24 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xD29 JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD36 PUSH2 0x261B JUMP JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF51 PUSH2 0x2096 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF72 PUSH2 0x1851 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFC8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFBF SWAP1 PUSH2 0x35EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFD1 DUP2 PUSH2 0x2065 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1005 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x1032 JUMPI POP PUSH2 0x1014 ADDRESS PUSH2 0x209E JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1031 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x1071 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1068 SWAP1 PUSH2 0x3681 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x10AE JUMPI PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH3 0x186A0 PUSH1 0x97 DUP2 SWAP1 SSTORE POP PUSH2 0x10C0 PUSH2 0x20C1 JUMP JUMPDEST PUSH2 0x10C8 PUSH2 0x211A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1121 JUMPI PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x1118 SWAP2 SWAP1 PUSH2 0x36F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x112C PUSH2 0x1F84 JUMP JUMPDEST PUSH2 0x1134 PUSH2 0x2173 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x97 SLOAD SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x118D PUSH2 0x1F84 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x11FC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11F3 SWAP1 PUSH2 0x313A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x120B JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x124A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1241 SWAP1 PUSH2 0x375A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 DUP4 SUB PUSH2 0x1305 JUMPI DUP1 PUSH1 0xCC PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xCFA976492AF7C14A916CC3A239F4C9C75BBD7F5F0E398BEB41D892C7EECCAE4C DUP4 PUSH1 0x40 MLOAD PUSH2 0x12FC SWAP2 SWAP1 PUSH2 0x3562 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1314 PUSH2 0x21D6 JUMP JUMPDEST PUSH2 0x1322 DUP11 DUP11 DUP7 DUP10 DUP10 DUP14 PUSH2 0x2220 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 SWAP1 POP SUB PUSH2 0x1368 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x135F SWAP1 PUSH2 0x37C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP9 DUP14 PUSH2 0x1392 SWAP2 SWAP1 PUSH2 0x34FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13B0 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x37E6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13CF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x13F3 SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1445 SWAP1 PUSH2 0x381D JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP CALLER PUSH2 0x102 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x149D SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH1 0x97 SLOAD PUSH1 0x98 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP12 PUSH2 0x14E6 SWAP2 SWAP1 PUSH2 0x3865 JUMP JUMPDEST PUSH2 0x14F0 SWAP2 SWAP1 PUSH2 0x38D6 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x97 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP13 PUSH2 0x15B8 SWAP2 SWAP1 PUSH2 0x352E JUMP JUMPDEST DUP2 MSTORE POP PUSH2 0x101 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD SSTORE SWAP1 POP POP PUSH2 0x101 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x3BDD0D86E09A22D7CE596118BD3CA5EC73EA47533A465BE37621E913ED2BF333 DUP5 DUP7 DUP14 DUP16 DUP12 DUP12 PUSH1 0x40 MLOAD PUSH2 0x183B SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3974 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x99 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x190D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1904 SWAP1 PUSH2 0x32E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1972 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1969 SWAP1 PUSH2 0x3351 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x101 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x19D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19CE SWAP1 PUSH2 0x33BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A5B SWAP2 SWAP1 PUSH2 0x39D0 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1D8D JUMPI PUSH1 0x1 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD EQ PUSH2 0x1CB4 JUMPI PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BDD SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BFC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1C20 SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP PUSH2 0x101 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x44F6938CA4A10313AABB76F874CCED61E35710A734A126E4AFB34461BF8C2501 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x0 PUSH2 0x101 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD EQ PUSH2 0x1D8C JUMPI DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x98 PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D47 SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D66 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1D8A SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x97 SLOAD DUP5 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x101 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD SLOAD PUSH2 0x1DBF SWAP2 SWAP1 PUSH2 0x3865 JUMP JUMPDEST PUSH2 0x1DC9 SWAP2 SWAP1 PUSH2 0x38D6 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x101 PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x7 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1DF2 SWAP2 SWAP1 PUSH2 0x352E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP7 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E34 SWAP3 SWAP2 SWAP1 PUSH2 0x3449 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1E53 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E77 SWAP2 SWAP1 PUSH2 0x349E JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH32 0x98ECE21E01A01CBE1D1C0DAD3B053C8FBD368F99BE78BE958FCF1D1D13FD249A DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1EC1 SWAP3 SWAP2 SWAP1 PUSH2 0x3A41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP3 POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1EDF PUSH2 0x1F84 JUMP JUMPDEST DUP1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1F3F PUSH2 0x1136 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH2 0x1F8C PUSH2 0x2096 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1FAA PUSH2 0x1136 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2000 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FF7 SWAP1 PUSH2 0x3AB6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x200A PUSH2 0x241B JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x204E PUSH2 0x2096 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x205B SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH2 0x2093 DUP2 PUSH2 0x2464 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2110 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2107 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2118 PUSH2 0x252A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2169 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2160 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2171 PUSH2 0x258B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x217B PUSH2 0x21D6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x21BF PUSH2 0x2096 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21CC SWAP2 SWAP1 PUSH2 0x2CAF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x21DE PUSH2 0x807 JUMP JUMPDEST ISZERO PUSH2 0x221E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2215 SWAP1 PUSH2 0x3BB4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0xCC PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ PUSH2 0x22A2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2299 SWAP1 PUSH2 0x3C20 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP6 SUB PUSH2 0x22E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22DC SWAP1 PUSH2 0x3C8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2354 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x234B SWAP1 PUSH2 0x3CF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0xFF AND GT PUSH2 0x239B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2392 SWAP1 PUSH2 0x3D64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x2413 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2412 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2409 SWAP1 PUSH2 0x3DD0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2423 PUSH2 0x807 JUMP JUMPDEST PUSH2 0x2462 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2459 SWAP1 PUSH2 0x3E3C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2579 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2570 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2589 PUSH2 0x2584 PUSH2 0x2096 JUMP JUMPDEST PUSH2 0x2065 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x25D1 SWAP1 PUSH2 0x3B48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x2618 SWAP2 SWAP1 PUSH2 0x26D8 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x26FB JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0x26D9 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2726 DUP2 PUSH2 0x2713 JUMP JUMPDEST DUP2 EQ PUSH2 0x2731 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2743 DUP2 PUSH2 0x271D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2797 DUP3 PUSH2 0x274E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x27B6 JUMPI PUSH2 0x27B5 PUSH2 0x275F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27C9 PUSH2 0x26FF JUMP JUMPDEST SWAP1 POP PUSH2 0x27D5 DUP3 DUP3 PUSH2 0x278E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x27F5 JUMPI PUSH2 0x27F4 PUSH2 0x275F JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2826 JUMPI PUSH2 0x2825 PUSH2 0x280B JUMP JUMPDEST JUMPDEST PUSH2 0x2830 PUSH1 0x40 PUSH2 0x27BF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2840 DUP5 DUP3 DUP6 ADD PUSH2 0x2734 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x2854 DUP5 DUP3 DUP6 ADD PUSH2 0x2734 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2873 PUSH2 0x286E DUP5 PUSH2 0x27DA JUMP JUMPDEST PUSH2 0x27BF JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x40 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x2896 JUMPI PUSH2 0x2895 PUSH2 0x2806 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x28BF JUMPI DUP1 PUSH2 0x28AB DUP9 DUP3 PUSH2 0x2810 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x40 DUP2 ADD SWAP1 POP PUSH2 0x2898 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x28DE JUMPI PUSH2 0x28DD PUSH2 0x2749 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x28EE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2860 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x290E JUMPI PUSH2 0x290D PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x291C DUP6 DUP3 DUP7 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x293D JUMPI PUSH2 0x293C PUSH2 0x270E JUMP JUMPDEST JUMPDEST PUSH2 0x2949 DUP6 DUP3 DUP7 ADD PUSH2 0x28C9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x297E DUP3 PUSH2 0x2953 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x298E DUP2 PUSH2 0x2973 JUMP JUMPDEST DUP2 EQ PUSH2 0x2999 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x29AB DUP2 PUSH2 0x2985 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x29C8 JUMPI PUSH2 0x29C7 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x29D6 DUP6 DUP3 DUP7 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x29E7 DUP6 DUP3 DUP7 ADD PUSH2 0x299C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A0E DUP2 PUSH2 0x29F1 JUMP JUMPDEST DUP2 EQ PUSH2 0x2A19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2A2B DUP2 PUSH2 0x2A05 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A47 JUMPI PUSH2 0x2A46 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A55 DUP5 DUP3 DUP6 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A73 DUP2 PUSH2 0x2A5E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2A8E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A6A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2AA7 DUP2 PUSH2 0x2A94 JUMP JUMPDEST DUP2 EQ PUSH2 0x2AB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2AC4 DUP2 PUSH2 0x2A9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2AE1 JUMPI PUSH2 0x2AE0 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2AEF DUP6 DUP3 DUP7 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2B00 DUP6 DUP3 DUP7 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B20 JUMPI PUSH2 0x2B1F PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B2E DUP5 DUP3 DUP6 ADD PUSH2 0x299C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B4D JUMPI PUSH2 0x2B4C PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B5B DUP5 DUP3 DUP6 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2B6D DUP2 PUSH2 0x2973 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2B7C DUP2 PUSH2 0x2A94 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2B8B DUP2 PUSH2 0x2A5E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BB2 DUP2 PUSH2 0x2B91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x140 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2BCF PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2BE2 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x2BF5 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x2C08 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x2B73 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x2C1B PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x2B73 JUMP JUMPDEST POP PUSH1 0xA0 DUP3 ADD MLOAD PUSH2 0x2C2E PUSH1 0xA0 DUP6 ADD DUP3 PUSH2 0x2B82 JUMP JUMPDEST POP PUSH1 0xC0 DUP3 ADD MLOAD PUSH2 0x2C41 PUSH1 0xC0 DUP6 ADD DUP3 PUSH2 0x2B82 JUMP JUMPDEST POP PUSH1 0xE0 DUP3 ADD MLOAD PUSH2 0x2C54 PUSH1 0xE0 DUP6 ADD DUP3 PUSH2 0x2B64 JUMP JUMPDEST POP PUSH2 0x100 DUP3 ADD MLOAD PUSH2 0x2C69 PUSH2 0x100 DUP6 ADD DUP3 PUSH2 0x2BA9 JUMP JUMPDEST POP PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x2C7E PUSH2 0x120 DUP6 ADD DUP3 PUSH2 0x2B73 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x140 DUP3 ADD SWAP1 POP PUSH2 0x2C9A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BB8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2CA9 DUP2 PUSH2 0x2973 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2CC4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CA0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2CD3 DUP2 PUSH2 0x29F1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2CE2 DUP2 PUSH2 0x2A94 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2CFD PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2CCA JUMP JUMPDEST PUSH2 0x2D0A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2D2A JUMPI PUSH2 0x2D29 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D38 DUP7 DUP3 DUP8 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2D49 DUP7 DUP3 DUP8 ADD PUSH2 0x299C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2D5A DUP7 DUP3 DUP8 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH2 0x2D6D DUP2 PUSH2 0x2B91 JUMP JUMPDEST DUP2 EQ PUSH2 0x2D78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2D8A DUP2 PUSH2 0x2D64 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2DAB JUMPI PUSH2 0x2DAA PUSH2 0x2749 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2DC8 JUMPI PUSH2 0x2DC7 PUSH2 0x2D90 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x2DE4 JUMPI PUSH2 0x2DE3 PUSH2 0x2806 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x100 DUP11 DUP13 SUB SLT ISZERO PUSH2 0x2E0E JUMPI PUSH2 0x2E0D PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E1C DUP13 DUP3 DUP14 ADD PUSH2 0x299C JUMP JUMPDEST SWAP10 POP POP PUSH1 0x20 PUSH2 0x2E2D DUP13 DUP3 DUP14 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x40 PUSH2 0x2E3E DUP13 DUP3 DUP14 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 PUSH2 0x2E4F DUP13 DUP3 DUP14 ADD PUSH2 0x2D7B JUMP JUMPDEST SWAP7 POP POP PUSH1 0x80 PUSH2 0x2E60 DUP13 DUP3 DUP14 ADD PUSH2 0x299C JUMP JUMPDEST SWAP6 POP POP PUSH1 0xA0 PUSH2 0x2E71 DUP13 DUP3 DUP14 ADD PUSH2 0x2AB5 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xC0 PUSH2 0x2E82 DUP13 DUP3 DUP14 ADD PUSH2 0x299C JUMP JUMPDEST SWAP4 POP POP PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2EA3 JUMPI PUSH2 0x2EA2 PUSH2 0x270E JUMP JUMPDEST JUMPDEST PUSH2 0x2EAF DUP13 DUP3 DUP14 ADD PUSH2 0x2D95 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH2 0x2ECA DUP2 PUSH2 0x2713 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2EE5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2F05 JUMPI PUSH2 0x2F04 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2F13 DUP8 DUP3 DUP9 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2F24 DUP8 DUP3 DUP9 ADD PUSH2 0x2734 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2F35 DUP8 DUP3 DUP9 ADD PUSH2 0x299C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x2F46 DUP8 DUP3 DUP9 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FDC PUSH2 0x2FD7 DUP4 PUSH2 0x2FB2 JUMP JUMPDEST PUSH2 0x2FBF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2FEC DUP2 PUSH2 0x2713 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3007 DUP2 PUSH2 0x2FC9 JUMP JUMPDEST PUSH2 0x3014 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x2FE3 JUMP JUMPDEST POP PUSH1 0x1 DUP4 ADD SLOAD SWAP1 POP PUSH2 0x3025 DUP2 PUSH2 0x2FC9 JUMP JUMPDEST PUSH2 0x3032 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x2FE3 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3045 DUP4 DUP4 PUSH2 0x2FF2 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3069 DUP3 PUSH2 0x2F81 JUMP JUMPDEST PUSH2 0x3073 DUP2 DUP6 PUSH2 0x2F8C JUMP JUMPDEST SWAP4 POP PUSH2 0x307E DUP4 PUSH2 0x2F9D JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x30AE JUMPI DUP2 PUSH2 0x3095 DUP9 DUP3 PUSH2 0x3039 JUMP JUMPDEST SWAP8 POP PUSH2 0x30A0 DUP4 PUSH2 0x3051 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3082 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x30D5 DUP2 DUP5 PUSH2 0x305E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A207A65726F20616464726573730000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3124 PUSH1 0x15 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x312F DUP3 PUSH2 0x30EE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3153 DUP2 PUSH2 0x3117 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A207472656173757279206164647265737320616C72656164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7920736574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31B6 PUSH1 0x25 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x31C1 DUP3 PUSH2 0x315A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x31E5 DUP2 PUSH2 0x31A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x476174657761793A2061676772656761746F72206164647265737320616C7265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6164792073657400000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3248 PUSH1 0x27 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3253 DUP3 PUSH2 0x31EC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3277 DUP2 PUSH2 0x323B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3293 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CCA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C7941676772656761746F72000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32CF PUSH1 0xE DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x32DA DUP3 PUSH2 0x3299 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32FE DUP2 PUSH2 0x32C2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F7264657246756C66696C6C6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x333B PUSH1 0xE DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3346 DUP3 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x336A DUP2 PUSH2 0x332E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F72646572526566756E64656400000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33A7 PUSH1 0xD DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x33B2 DUP3 PUSH2 0x3371 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33D6 DUP2 PUSH2 0x339A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4665654578636565647350726F746F636F6C4665650000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3413 PUSH1 0x15 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x341E DUP3 PUSH2 0x33DD JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3442 DUP2 PUSH2 0x3406 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x345E PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2CA0 JUMP JUMPDEST PUSH2 0x346B PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x347B DUP2 PUSH2 0x2A5E JUMP JUMPDEST DUP2 EQ PUSH2 0x3486 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3498 DUP2 PUSH2 0x3472 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34B4 JUMPI PUSH2 0x34B3 PUSH2 0x2709 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34C2 DUP5 DUP3 DUP6 ADD PUSH2 0x3489 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3505 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x3510 DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x3528 JUMPI PUSH2 0x3527 PUSH2 0x34CB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3539 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x3544 DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x355C JUMPI PUSH2 0x355B PUSH2 0x34CB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3577 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C6532537465703A2063616C6C6572206973206E6F742074686520 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6577206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35D9 PUSH1 0x29 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x35E4 DUP3 PUSH2 0x357D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3608 DUP2 PUSH2 0x35CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366B PUSH1 0x2E DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3676 DUP3 PUSH2 0x360F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x369A DUP2 PUSH2 0x365E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36DD PUSH2 0x36D8 PUSH2 0x36D3 DUP5 PUSH2 0x36A1 JUMP JUMPDEST PUSH2 0x36B8 JUMP JUMPDEST PUSH2 0x36AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x36ED DUP2 PUSH2 0x36C2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3708 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x36E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x476174657761793A20696E76616C696420737461747573000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3744 PUSH1 0x17 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x374F DUP3 PUSH2 0x370E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3773 DUP2 PUSH2 0x3737 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69644D657373616765486173680000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37B0 PUSH1 0x12 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x37BB DUP3 PUSH2 0x377A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37DF DUP2 PUSH2 0x37A3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x37FB PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2CA0 JUMP JUMPDEST PUSH2 0x3808 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2CA0 JUMP JUMPDEST PUSH2 0x3815 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2CD9 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3828 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x385A JUMPI PUSH2 0x3859 PUSH2 0x34CB JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3870 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x387B DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3889 DUP2 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x38A0 JUMPI PUSH2 0x389F PUSH2 0x34CB JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x38E1 DUP3 PUSH2 0x2A94 JUMP JUMPDEST SWAP2 POP PUSH2 0x38EC DUP4 PUSH2 0x2A94 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x38FC JUMPI PUSH2 0x38FB PUSH2 0x38A7 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3922 PUSH2 0x391D PUSH2 0x3918 DUP5 PUSH2 0x2B91 JUMP JUMPDEST PUSH2 0x36B8 JUMP JUMPDEST PUSH2 0x2A94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3932 DUP2 PUSH2 0x3907 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3953 DUP4 DUP6 PUSH2 0x30DD JUMP JUMPDEST SWAP4 POP PUSH2 0x3960 DUP4 DUP6 DUP5 PUSH2 0x3938 JUMP JUMPDEST PUSH2 0x3969 DUP4 PUSH2 0x274E JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3989 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x2CD9 JUMP JUMPDEST PUSH2 0x3996 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x2EC1 JUMP JUMPDEST PUSH2 0x39A3 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x3929 JUMP JUMPDEST PUSH2 0x39B0 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x2EC1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x39C3 DUP2 DUP5 DUP7 PUSH2 0x3947 JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39DB DUP3 PUSH2 0x2B91 JUMP JUMPDEST SWAP2 POP PUSH2 0x39E6 DUP4 PUSH2 0x2B91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3A0A JUMPI PUSH2 0x3A09 PUSH2 0x34CB JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A2B PUSH2 0x3A26 PUSH2 0x3A21 DUP5 PUSH2 0x29F1 JUMP JUMPDEST PUSH2 0x36B8 JUMP JUMPDEST PUSH2 0x2B91 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A3B DUP2 PUSH2 0x3A10 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3A56 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2EC1 JUMP JUMPDEST PUSH2 0x3A63 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A32 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3AA0 PUSH1 0x20 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3AAB DUP3 PUSH2 0x3A6A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3ACF DUP2 PUSH2 0x3A93 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B32 PUSH1 0x2B DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3B3D DUP3 PUSH2 0x3AD6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3B61 DUP2 PUSH2 0x3B25 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B9E PUSH1 0x10 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3BA9 DUP3 PUSH2 0x3B68 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3BCD DUP2 PUSH2 0x3B91 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E4E6F74537570706F72746564000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C0A PUSH1 0x11 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3C15 DUP3 PUSH2 0x3BD4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C39 DUP2 PUSH2 0x3BFD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416D6F756E7449735A65726F0000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C76 PUSH1 0xC DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3C81 DUP3 PUSH2 0x3C40 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CA5 DUP2 PUSH2 0x3C69 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5468726F775A65726F4164647265737300000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CE2 PUSH1 0x10 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3CED DUP3 PUSH2 0x3CAC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D11 DUP2 PUSH2 0x3CD5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C6964496E737469747574696F6E436F646500000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D4E PUSH1 0x16 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3D59 DUP3 PUSH2 0x3D18 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3D7D DUP2 PUSH2 0x3D41 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C696453656E646572466565526563697069656E7400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DBA PUSH1 0x19 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3DC5 DUP3 PUSH2 0x3D84 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DE9 DUP2 PUSH2 0x3DAD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E26 PUSH1 0x14 DUP4 PUSH2 0x30DD JUMP JUMPDEST SWAP2 POP PUSH2 0x3E31 DUP3 PUSH2 0x3DF0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E55 DUP2 PUSH2 0x3E19 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x52E17DBF1C403E694B894CE0E7C48DEF05 SWAP7 BASEFEE 0x24 0xC5 0xCA PUSH2 0x1669 PUSH25 0x940A74897964736F6C63430008120033000000000000000000 ","sourceMap":"394:7150:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2323:539:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1429:56:12;;;:::i;:::-;;3394:551:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2995:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1879:84:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2085:101:1;;;:::i;:::-;;5930:926:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7245:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7089:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2031:212:0;;;:::i;:::-;;803:114:12;;;:::i;:::-;;1333:52;;;:::i;:::-;;1462:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7433:109:12;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1773:335:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1717:1435:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1144:99:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4396:1495:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1436:178:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2323:539:11;1355:13:1;:11;:13::i;:::-;2461:21:11::1;:31;2483:8;2461:31;;;;;;;;;;;;2454:38;;;;:::i;:::-;2501:6;2496:283;2513:12;:19;2509:1;:23;2496:283;;;2541:21;:31;2563:8;2541:31;;;;;;;;;;;2578:12;2591:1;2578:15;;;;;;;;:::i;:::-;;;;;;;;2541:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651:94;;;;;;;;2695:12;2708:1;2695:15;;;;;;;;:::i;:::-;;;;;;;;:20;;;2651:94;;;;2731:8;2651:94;;::::0;2599:27:::1;:49;2627:12;2640:1;2627:15;;;;;;;;:::i;:::-;;;;;;;;:20;;;2599:49;;;;;;;;;;;:146;;;;;;;;;;;;;;;;;;;2766:3;;;;;2496:283;;;;2816:8;2787:71;2826:21;:31;2848:8;2826:31;;;;;;;;;;;2787:71;;;;;;:::i;:::-;;;;;;;;2323:539:::0;;:::o;1429:56:12:-;1355:13:1;:11;:13::i;:::-;1471:10:12::1;:8;:10::i;:::-;1429:56::o:0;3394:551:11:-;1355:13:1;:11;:13::i;:::-;3502:1:11::1;3485:19;;:5;:19;;::::0;3477:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3534:12;3554:18;:4;:18:::0;3550:326:::1;;3606:5;3587:24;;:15;;;;;;;;;;;:24;;::::0;3579:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3676:5;3658:15;;:23;;;;;;;;;;;;;;;;;;3696:4;3686:14;;3550:326;;;3715:20;:4;:20:::0;3711:165:::1;;3772:5;3750:27;;:18;;;;;;;;;;;:27;;::::0;3742:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3847:5;3826:18;;:26;;;;;;;;;;;;;;;;;;3867:4;3857:14;;3711:165;3550:326;3883:7;3879:63;;;3931:5;3902:35;;3925:4;3902:35;;;;;;;;;;3879:63;3473:472;3394:551:::0;;:::o;2995:170::-;1355:13:1;:11;:13::i;:::-;3094:19:11::1;3073:18;;:40;;;;;;;;;;;;;;;;;;3122:39;3141:19;3122:39;;;;;;:::i;:::-;;;;;;;;2995:170:::0;:::o;1879:84:3:-;1926:4;1949:7;;;;;;;;;;;1942:14;;1879:84;:::o;2085:101:1:-;1355:13;:11;:13::i;:::-;2149:30:::1;2176:1;2149:18;:30::i;:::-;2085:101::o:0;5930:926:12:-;6011:4;1052:18;;;;;;;;;;;1038:32;;:10;:32;;;1030:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;6081:5:::1;:15;6087:8;6081:15;;;;;;;;;;;:27;;;;;;;;;;;;6080:28;6072:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;6140:5;:15;6146:8;6140:15;;;;;;;;;;;:26;;;;;;;;;;;;6139:27;6131:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;6227:4;6196:5;:15;6202:8;6196:15;;;;;;;;;;;:27;;;:35;;6188:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;6310:5;:15;6316:8;6310:15;;;;;;;;;;;:21;;;;;;;;;;;;6303:38;;;6342:15;;;;;;;;;;;6359:4;6303:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6422:4;6393:5;:15;6399:8;6393:15;;;;;;;;;;;:26;;;:33;;;;;;;;;;;;;;;;;;6459:1;6430:5;:15;6436:8;6430:15;;;;;;;;;;;:26;;;:30;;;;;;;;;;;;;;;;;;6499:20;6577:4;6547:5;:15;6553:8;6547:15;;;;;;;;;;;:27;;;6522:5;:15;6528:8;6522:15;;;;;;;;;;;:22;;;:52;;;;:::i;:::-;:59;;;;:::i;:::-;6499:82;;6658:5;:15;6664:8;6658:15;;;;;;;;;;;:21;;;;;;;;;;;;6651:38;;;6694:5;:15;6700:8;6694:15;;;;;;;;;;;:29;;;;;;;;;;;;6743:5;:15;6749:8;6743:15;;;;;;;;;;;:25;;;6728:12;:40;;;;:::i;:::-;6651:121;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6827:8;6807:29;6821:4;6807:29;;;;;;:::i;:::-;;;;;;;;6848:4;6841:11;;;5930:926:::0;;;;:::o;7245:142::-;7310:4;7353:1;7324:17;:25;7342:6;7324:25;;;;;;;;;;;;;;;;:30;7320:47;;7363:4;7356:11;;;;7320:47;7378:5;7371:12;;7245:142;;;;:::o;7089:107::-;7152:12;;:::i;:::-;7177:5;:15;7183:8;7177:15;;;;;;;;;;;7170:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7089:107;;;:::o;2031:212:0:-;2083:14;2100:12;:10;:12::i;:::-;2083:29;;2148:6;2130:24;;:14;:12;:14::i;:::-;:24;;;2122:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2210:26;2229:6;2210:18;:26::i;:::-;2073:170;2031:212::o;803:114:12:-;3279:19:2;3302:13;;;;;;;;;;;3301:14;3279:36;;3347:14;:34;;;;;3380:1;3365:12;;;;;;;;;;:16;;;3347:34;3346:108;;;;3388:44;3426:4;3388:29;:44::i;:::-;3387:45;:66;;;;;3452:1;3436:12;;;;;;;;;;:17;;;3387:66;3346:108;3325:201;;;;;;;;;;;;:::i;:::-;;;;;;;;;3551:1;3536:12;;:16;;;;;;;;;;;;;;;;;;3566:14;3562:65;;;3612:4;3596:13;;:20;;;;;;;;;;;;;;;;;;3562:65;860:7:12::1;850;:17;;;;871:21;:19;:21::i;:::-;896:17;:15;:17::i;:::-;3651:14:2::0;3647:99;;;3697:5;3681:13;;:21;;;;;;;;;;;;;;;;;;3721:14;3733:1;3721:14;;;;;;:::i;:::-;;;;;;;;3647:99;3269:483;803:114:12:o;1333:52::-;1355:13:1;:11;:13::i;:::-;1373:8:12::1;:6;:8::i;:::-;1333:52::o:0;1462:85:1:-;1508:7;1534:6;;;;;;;;;;;1527:13;;1462:85;:::o;7433:109:12:-;7481:6;7489:7;7510:18;;;;;;;;;;;7530:7;;7502:36;;;;7433:109;;:::o;1773:335:11:-;1355:13:1;:11;:13::i;:::-;1894:1:11::1;1877:19;;:5;:19;;::::0;1869:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1944:1;1934:6;:11;:26;;;;1959:1;1949:6;:11;1934:26;1926:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1996:15;:4;:15:::0;1992:113:::1;;2045:6;2018:17;:24;2036:5;2018:24;;;;;;;;;;;;;;;:33;;;;2086:5;2061:39;;2080:4;2061:39;2093:6;2061:39;;;;;;:::i;:::-;;;;;;;;1992:113;1773:335:::0;;;:::o;1717:1435:12:-;1964:15;1503:19:3;:17;:19::i;:::-;2015:114:12::1;2028:6;2039:7;2051:14;2070:19;2094:10;2109:16;2015:8;:114::i;:::-;2197:1;2174:11;;2168:25;;:30:::0;2160:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2281:6;2274:27;;;2302:10;2322:4;2339:10;2329:7;:20;;;;:::i;:::-;2274:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2405:6;:18;2412:10;2405:18;;;;;;;;;;;;;;;;:20;;;;;;;;;:::i;:::-;;;;;;2510:10;2522:6;:18;2529:10;2522:18;;;;;;;;;;;;;;;;2499:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2489:53;;;;;;2479:63;;2571:20;2627:7;;2605:18;;;;;;;;;;;2595:28;;:7;:28;;;;:::i;:::-;2594:40;;;;:::i;:::-;2571:63;;2655:298;;;;;;;;2674:10;2655:298;;;;;;2696:6;2655:298;;;;;;2727:19;2655:298;;;;;;2762:10;2655:298;;;;2790:12;2655:298;;;;2820:5;2655:298;;;;;;2842:5;2655:298;;;;;;2867:14;2655:298;;;;;;2905:7;;2655:298;;;;;;;;2936:12;2926:7;:22;;;;:::i;:::-;2655:298;;::::0;2638:5:::1;:14;2644:7;2638:14;;;;;;;;;;;:315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3047:5;:14;3053:7;3047:14;;;;;;;;;;;:21;;;3036:6;2993:155;;3010:5;:14;3016:7;3010:14;;;;;;;;;;;:21;;;;;;;;;;;;2993:155;;;3073:12;3090:7;3102:5;3112:16;3133:11;;2993:155;;;;;;;;;;;:::i;:::-;;;;;;;;1981:1171;1717:1435:::0;;;;;;;;;;;:::o;1144:99:0:-;1197:7;1223:13;;;;;;;;;;;1216:20;;1144:99;:::o;4396:1495:12:-;4548:4;1052:18;;;;;;;;;;;1038:32;;:10;:32;;;1030:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4618:5:::1;:15;4624:8;4618:15;;;;;;;;;;;:27;;;;;;;;;;;;4617:28;4609:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4677:5;:15;4683:8;4677:15;;;;;;;;;;;:26;;;;;;;;;;;;4676:27;4668:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;4758:13;4774:5;:15;4780:8;4774:15;;;;;;;;;;;:21;;;;;;;;;;;;4758:37;;4892:14;4862:44;;:5;:15;4868:8;4862:15;;;;;;;;;;;:26;;;:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4945:1;4915:5;:15;4921:8;4915:15;;;;;;;;;;;:26;;;;;;;;;;;;:31;;::::0;4911:604:::1;;5028:4;4998:5;:15;5004:8;4998:15;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;5071:1;5042:5;:15;5048:8;5042:15;;;;;;;;;;;:25;;;:30;5038:321;;5114:5;:15;5120:8;5114:15;;;;;;;;;;;:21;;;;;;;;;;;;5107:38;;;5152:5;:15;5158:8;5152:15;;;;;;;;;;;:34;;;;;;;;;;;;5193:5;:15;5199:8;5193:15;;;;;;;;;;;:25;;;5107:117;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5322:5;:15;5328:8;5322:15;;;;;;;;;;;:25;;;5281:5;:15;5287:8;5281:15;;;;;;;;;;;:34;;;;;;;;;;;;5254:99;;;;;;;;;;;;5038:321;5399:1;5368:5;:15;5374:8;5368:15;;;;;;;;;;;:27;;;:32;5364:147;;5444:5;5437:22;;;5460:15;;;;;;;;;;;5477:5;:15;5483:8;5477:15;;;;;;;;;;;:27;;;5437:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5364:147;4911:604;5555:31;5633:7;;5615:14;5590:39;;:5;:15;5596:8;5590:15;;;;;;;;;;;:22;;;:39;;;;:::i;:::-;5589:51;;;;:::i;:::-;5555:85;;5670:23;5644:5;:15;5650:8;5644:15;;;;;;;;;;;:22;;;:49;;;;;;;:::i;:::-;;;;;;;;5704:5;5697:22;;;5720:18;5740:23;5697:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5836:18;5798:73;;5826:8;5798:73;5811:13;5856:14;5798:73;;;;;;;:::i;:::-;;;;;;;;5883:4;5876:11;;;;4396:1495:::0;;;;;;:::o;1436:178:0:-;1355:13:1;:11;:13::i;:::-;1541:8:0::1;1525:13;;:24;;;;;;;;;;;;;;;;;;1598:8;1564:43;;1589:7;:5;:7::i;:::-;1564:43;;;;;;;;;;;;1436:178:::0;:::o;1620:130:1:-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1620:130::o;2697:117:3:-;1750:16;:14;:16::i;:::-;2765:5:::1;2755:7;;:15;;;;;;;;;;;;;;;;;;2785:22;2794:12;:10;:12::i;:::-;2785:22;;;;;;:::i;:::-;;;;;;;;2697:117::o:0;1798:153:0:-;1887:13;;1880:20;;;;;;;;;;;1910:34;1935:8;1910:24;:34::i;:::-;1798:153;:::o;886:96:5:-;939:7;965:10;958:17;;886:96;:::o;1423:320:4:-;1483:4;1735:1;1713:7;:19;;;:23;1706:30;;1423:320;;;:::o;889:100:0:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;956:26:0::1;:24;:26::i;:::-;889:100::o:0;1084:97:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1147:27:3::1;:25;:27::i;:::-;1084:97::o:0;2450:115::-;1503:19;:17;:19::i;:::-;2519:4:::1;2509:7;;:14;;;;;;;;;;;;;;;;;;2538:20;2545:12;:10;:12::i;:::-;2538:20;;;;;;:::i;:::-;;;;;;;;2450:115::o:0;2031:106::-;2101:8;:6;:8::i;:::-;2100:9;2092:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:106::o;3628:531:12:-;3848:1;3819:17;:25;3837:6;3819:25;;;;;;;;;;;;;;;;:30;3811:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3894:1;3883:7;:12;3875:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;3950:1;3924:28;;:14;:28;;;3916:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4015:1;3989:23;:27;;;3977:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;4072:1;4058:10;:15;4054:102;;4119:1;4088:33;;:19;:33;;;4080:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4054:102;3628:531;;;;;;:::o;2209:106:3:-;2275:8;:6;:8::i;:::-;2267:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2209:106::o;2687:187:1:-;2760:16;2779:6;;;;;;;;;;;2760:25;;2804:8;2795:6;;:17;;;;;;;;;;;;;;;;;;2858:8;2827:40;;2848:8;2827:40;;;;;;;;;;;;2750:124;2687:187;:::o;1125:111::-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1197:32:1::1;1216:12;:10;:12::i;:::-;1197:18;:32::i;:::-;1125:111::o:0;1187:95:3:-;5374:13:2;;;;;;;;;;;5366:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1270:5:3::1;1260:7;;:15;;;;;;;;;;;;;;;;;;1187:95::o:0;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:17:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:117::-;799:1;796;789:12;813:102;854:6;905:2;901:7;896:2;889:5;885:14;881:28;871:38;;813:102;;;:::o;921:180::-;969:77;966:1;959:88;1066:4;1063:1;1056:15;1090:4;1087:1;1080:15;1107:281;1190:27;1212:4;1190:27;:::i;:::-;1182:6;1178:40;1320:6;1308:10;1305:22;1284:18;1272:10;1269:34;1266:62;1263:88;;;1331:18;;:::i;:::-;1263:88;1371:10;1367:2;1360:22;1150:238;1107:281;;:::o;1394:129::-;1428:6;1455:20;;:::i;:::-;1445:30;;1484:33;1512:4;1504:6;1484:33;:::i;:::-;1394:129;;;:::o;1529:340::-;1635:4;1725:18;1717:6;1714:30;1711:56;;;1747:18;;:::i;:::-;1711:56;1797:4;1789:6;1785:17;1777:25;;1857:4;1851;1847:15;1839:23;;1529:340;;;:::o;1875:117::-;1984:1;1981;1974:12;1998:117;2107:1;2104;2097:12;2284:578;2362:5;2406:4;2394:9;2389:3;2385:19;2381:30;2378:117;;;2414:79;;:::i;:::-;2378:117;2513:21;2529:4;2513:21;:::i;:::-;2504:30;;2593:1;2633:49;2678:3;2669:6;2658:9;2654:22;2633:49;:::i;:::-;2626:4;2619:5;2615:16;2608:75;2544:150;2753:2;2794:49;2839:3;2830:6;2819:9;2815:22;2794:49;:::i;:::-;2787:4;2780:5;2776:16;2769:75;2704:151;2284:578;;;;:::o;2910:797::-;3035:5;3060:110;3076:93;3162:6;3076:93;:::i;:::-;3060:110;:::i;:::-;3051:119;;3190:5;3219:6;3212:5;3205:21;3253:4;3246:5;3242:16;3235:23;;3306:4;3298:6;3294:17;3286:6;3282:30;3335:3;3327:6;3324:15;3321:122;;;3354:79;;:::i;:::-;3321:122;3469:6;3452:249;3486:6;3481:3;3478:15;3452:249;;;3561:3;3590:66;3652:3;3640:10;3590:66;:::i;:::-;3585:3;3578:79;3686:4;3681:3;3677:14;3670:21;;3528:173;3512:4;3507:3;3503:14;3496:21;;3452:249;;;3456:21;3041:666;;2910:797;;;;;:::o;3755:428::-;3855:5;3904:3;3897:4;3889:6;3885:17;3881:27;3871:122;;3912:79;;:::i;:::-;3871:122;4029:6;4016:20;4054:123;4173:3;4165:6;4158:4;4150:6;4146:17;4054:123;:::i;:::-;4045:132;;3861:322;3755:428;;;;:::o;4189:742::-;4311:6;4319;4368:2;4356:9;4347:7;4343:23;4339:32;4336:119;;;4374:79;;:::i;:::-;4336:119;4494:1;4519:53;4564:7;4555:6;4544:9;4540:22;4519:53;:::i;:::-;4509:63;;4465:117;4649:2;4638:9;4634:18;4621:32;4680:18;4672:6;4669:30;4666:117;;;4702:79;;:::i;:::-;4666:117;4807:107;4906:7;4897:6;4886:9;4882:22;4807:107;:::i;:::-;4797:117;;4592:332;4189:742;;;;;:::o;4937:126::-;4974:7;5014:42;5007:5;5003:54;4992:65;;4937:126;;;:::o;5069:96::-;5106:7;5135:24;5153:5;5135:24;:::i;:::-;5124:35;;5069:96;;;:::o;5171:122::-;5244:24;5262:5;5244:24;:::i;:::-;5237:5;5234:35;5224:63;;5283:1;5280;5273:12;5224:63;5171:122;:::o;5299:139::-;5345:5;5383:6;5370:20;5361:29;;5399:33;5426:5;5399:33;:::i;:::-;5299:139;;;;:::o;5444:474::-;5512:6;5520;5569:2;5557:9;5548:7;5544:23;5540:32;5537:119;;;5575:79;;:::i;:::-;5537:119;5695:1;5720:53;5765:7;5756:6;5745:9;5741:22;5720:53;:::i;:::-;5710:63;;5666:117;5822:2;5848:53;5893:7;5884:6;5873:9;5869:22;5848:53;:::i;:::-;5838:63;;5793:118;5444:474;;;;;:::o;5924:101::-;5960:7;6000:18;5993:5;5989:30;5978:41;;5924:101;;;:::o;6031:120::-;6103:23;6120:5;6103:23;:::i;:::-;6096:5;6093:34;6083:62;;6141:1;6138;6131:12;6083:62;6031:120;:::o;6157:137::-;6202:5;6240:6;6227:20;6218:29;;6256:32;6282:5;6256:32;:::i;:::-;6157:137;;;;:::o;6300:327::-;6358:6;6407:2;6395:9;6386:7;6382:23;6378:32;6375:119;;;6413:79;;:::i;:::-;6375:119;6533:1;6558:52;6602:7;6593:6;6582:9;6578:22;6558:52;:::i;:::-;6548:62;;6504:116;6300:327;;;;:::o;6633:90::-;6667:7;6710:5;6703:13;6696:21;6685:32;;6633:90;;;:::o;6729:109::-;6810:21;6825:5;6810:21;:::i;:::-;6805:3;6798:34;6729:109;;:::o;6844:210::-;6931:4;6969:2;6958:9;6954:18;6946:26;;6982:65;7044:1;7033:9;7029:17;7020:6;6982:65;:::i;:::-;6844:210;;;;:::o;7060:77::-;7097:7;7126:5;7115:16;;7060:77;;;:::o;7143:122::-;7216:24;7234:5;7216:24;:::i;:::-;7209:5;7206:35;7196:63;;7255:1;7252;7245:12;7196:63;7143:122;:::o;7271:139::-;7317:5;7355:6;7342:20;7333:29;;7371:33;7398:5;7371:33;:::i;:::-;7271:139;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:329::-;7955:6;8004:2;7992:9;7983:7;7979:23;7975:32;7972:119;;;8010:79;;:::i;:::-;7972:119;8130:1;8155:53;8200:7;8191:6;8180:9;8176:22;8155:53;:::i;:::-;8145:63;;8101:117;7896:329;;;;:::o;8231:::-;8290:6;8339:2;8327:9;8318:7;8314:23;8310:32;8307:119;;;8345:79;;:::i;:::-;8307:119;8465:1;8490:53;8535:7;8526:6;8515:9;8511:22;8490:53;:::i;:::-;8480:63;;8436:117;8231:329;;;;:::o;8566:108::-;8643:24;8661:5;8643:24;:::i;:::-;8638:3;8631:37;8566:108;;:::o;8680:::-;8757:24;8775:5;8757:24;:::i;:::-;8752:3;8745:37;8680:108;;:::o;8794:99::-;8865:21;8880:5;8865:21;:::i;:::-;8860:3;8853:34;8794:99;;:::o;8899:109::-;8935:7;8975:26;8968:5;8964:38;8953:49;;8899:109;;;:::o;9014:105::-;9089:23;9106:5;9089:23;:::i;:::-;9084:3;9077:36;9014:105;;:::o;9183:1950::-;9326:6;9321:3;9317:16;9417:4;9410:5;9406:16;9400:23;9436:63;9493:4;9488:3;9484:14;9470:12;9436:63;:::i;:::-;9343:166;9592:4;9585:5;9581:16;9575:23;9611:63;9668:4;9663:3;9659:14;9645:12;9611:63;:::i;:::-;9519:165;9780:4;9773:5;9769:16;9763:23;9799:63;9856:4;9851:3;9847:14;9833:12;9799:63;:::i;:::-;9694:178;9959:4;9952:5;9948:16;9942:23;9978:63;10035:4;10030:3;10026:14;10012:12;9978:63;:::i;:::-;9882:169;10140:4;10133:5;10129:16;10123:23;10159:63;10216:4;10211:3;10207:14;10193:12;10159:63;:::i;:::-;10061:171;10321:4;10314:5;10310:16;10304:23;10340:57;10391:4;10386:3;10382:14;10368:12;10340:57;:::i;:::-;10242:165;10495:4;10488:5;10484:16;10478:23;10514:57;10565:4;10560:3;10556:14;10542:12;10514:57;:::i;:::-;10417:164;10672:4;10665:5;10661:16;10655:23;10691:63;10748:4;10743:3;10739:14;10725:12;10691:63;:::i;:::-;10591:173;10852:6;10845:5;10841:18;10835:25;10873:63;10928:6;10923:3;10919:16;10905:12;10873:63;:::i;:::-;10774:172;11030:6;11023:5;11019:18;11013:25;11051:65;11108:6;11103:3;11099:16;11085:12;11051:65;:::i;:::-;10956:170;9295:1838;9183:1950;;:::o;11139:315::-;11278:4;11316:3;11305:9;11301:19;11293:27;;11330:117;11444:1;11433:9;11429:17;11420:6;11330:117;:::i;:::-;11139:315;;;;:::o;11460:118::-;11547:24;11565:5;11547:24;:::i;:::-;11542:3;11535:37;11460:118;;:::o;11584:222::-;11677:4;11715:2;11704:9;11700:18;11692:26;;11728:71;11796:1;11785:9;11781:17;11772:6;11728:71;:::i;:::-;11584:222;;;;:::o;11812:115::-;11897:23;11914:5;11897:23;:::i;:::-;11892:3;11885:36;11812:115;;:::o;11933:118::-;12020:24;12038:5;12020:24;:::i;:::-;12015:3;12008:37;11933:118;;:::o;12057:328::-;12176:4;12214:2;12203:9;12199:18;12191:26;;12227:69;12293:1;12282:9;12278:17;12269:6;12227:69;:::i;:::-;12306:72;12374:2;12363:9;12359:18;12350:6;12306:72;:::i;:::-;12057:328;;;;;:::o;12391:619::-;12468:6;12476;12484;12533:2;12521:9;12512:7;12508:23;12504:32;12501:119;;;12539:79;;:::i;:::-;12501:119;12659:1;12684:53;12729:7;12720:6;12709:9;12705:22;12684:53;:::i;:::-;12674:63;;12630:117;12786:2;12812:53;12857:7;12848:6;12837:9;12833:22;12812:53;:::i;:::-;12802:63;;12757:118;12914:2;12940:53;12985:7;12976:6;12965:9;12961:22;12940:53;:::i;:::-;12930:63;;12885:118;12391:619;;;;;:::o;13016:120::-;13088:23;13105:5;13088:23;:::i;:::-;13081:5;13078:34;13068:62;;13126:1;13123;13116:12;13068:62;13016:120;:::o;13142:137::-;13187:5;13225:6;13212:20;13203:29;;13241:32;13267:5;13241:32;:::i;:::-;13142:137;;;;:::o;13285:117::-;13394:1;13391;13384:12;13422:553;13480:8;13490:6;13540:3;13533:4;13525:6;13521:17;13517:27;13507:122;;13548:79;;:::i;:::-;13507:122;13661:6;13648:20;13638:30;;13691:18;13683:6;13680:30;13677:117;;;13713:79;;:::i;:::-;13677:117;13827:4;13819:6;13815:17;13803:29;;13881:3;13873:4;13865:6;13861:17;13851:8;13847:32;13844:41;13841:128;;;13888:79;;:::i;:::-;13841:128;13422:553;;;;;:::o;13981:1547::-;14114:6;14122;14130;14138;14146;14154;14162;14170;14178;14227:3;14215:9;14206:7;14202:23;14198:33;14195:120;;;14234:79;;:::i;:::-;14195:120;14354:1;14379:53;14424:7;14415:6;14404:9;14400:22;14379:53;:::i;:::-;14369:63;;14325:117;14481:2;14507:53;14552:7;14543:6;14532:9;14528:22;14507:53;:::i;:::-;14497:63;;14452:118;14609:2;14635:53;14680:7;14671:6;14660:9;14656:22;14635:53;:::i;:::-;14625:63;;14580:118;14737:2;14763:52;14807:7;14798:6;14787:9;14783:22;14763:52;:::i;:::-;14753:62;;14708:117;14864:3;14891:53;14936:7;14927:6;14916:9;14912:22;14891:53;:::i;:::-;14881:63;;14835:119;14993:3;15020:53;15065:7;15056:6;15045:9;15041:22;15020:53;:::i;:::-;15010:63;;14964:119;15122:3;15149:53;15194:7;15185:6;15174:9;15170:22;15149:53;:::i;:::-;15139:63;;15093:119;15279:3;15268:9;15264:19;15251:33;15311:18;15303:6;15300:30;15297:117;;;15333:79;;:::i;:::-;15297:117;15446:65;15503:7;15494:6;15483:9;15479:22;15446:65;:::i;:::-;15428:83;;;;15222:299;13981:1547;;;;;;;;;;;:::o;15534:118::-;15621:24;15639:5;15621:24;:::i;:::-;15616:3;15609:37;15534:118;;:::o;15658:222::-;15751:4;15789:2;15778:9;15774:18;15766:26;;15802:71;15870:1;15859:9;15855:17;15846:6;15802:71;:::i;:::-;15658:222;;;;:::o;15886:763::-;15971:6;15979;15987;15995;16044:3;16032:9;16023:7;16019:23;16015:33;16012:120;;;16051:79;;:::i;:::-;16012:120;16171:1;16196:53;16241:7;16232:6;16221:9;16217:22;16196:53;:::i;:::-;16186:63;;16142:117;16298:2;16324:53;16369:7;16360:6;16349:9;16345:22;16324:53;:::i;:::-;16314:63;;16269:118;16426:2;16452:53;16497:7;16488:6;16477:9;16473:22;16452:53;:::i;:::-;16442:63;;16397:118;16554:2;16580:52;16624:7;16615:6;16604:9;16600:22;16580:52;:::i;:::-;16570:62;;16525:117;15886:763;;;;;;;:::o;16655:180::-;16703:77;16700:1;16693:88;16800:4;16797:1;16790:15;16824:4;16821:1;16814:15;16841:137;16931:6;16965:5;16959:12;16949:22;;16841:137;;;:::o;16984:213::-;17112:11;17146:6;17141:3;17134:19;17186:4;17181:3;17177:14;17162:29;;16984:213;;;;:::o;17203:182::-;17293:4;17316:3;17308:11;;17339:3;17336:1;17329:14;17373:4;17370:1;17360:18;17352:26;;17203:182;;;:::o;17391:102::-;17433:8;17480:5;17477:1;17473:13;17452:34;;17391:102;;;:::o;17499:90::-;17549:7;17578:5;17567:16;;17499:90;;;:::o;17595:166::-;17664:5;17689:66;17720:34;17743:10;17720:34;:::i;:::-;17689:66;:::i;:::-;17680:75;;17595:166;;;:::o;17767:108::-;17844:24;17862:5;17844:24;:::i;:::-;17839:3;17832:37;17767:108;;:::o;17957:689::-;18099:4;18094:3;18090:14;18130:1;18205:4;18198:5;18194:16;18188:23;18175:36;;18244:55;18289:9;18244:55;:::i;:::-;18312:63;18369:4;18364:3;18360:14;18346:12;18312:63;:::i;:::-;18141:244;18459:4;18452:5;18448:16;18442:23;18429:36;;18498:55;18543:9;18498:55;:::i;:::-;18566:63;18623:4;18618:3;18614:14;18600:12;18566:63;:::i;:::-;18395:244;18068:578;;17957:689;;:::o;18652:289::-;18776:10;18797:101;18894:3;18886:6;18797:101;:::i;:::-;18930:4;18925:3;18921:14;18907:28;;18652:289;;;;:::o;18947:136::-;19040:4;19072;19067:3;19063:14;19055:22;;18947:136;;;:::o;19169:930::-;19340:3;19369:77;19440:5;19369:77;:::i;:::-;19462:115;19570:6;19565:3;19462:115;:::i;:::-;19455:122;;19601:79;19674:5;19601:79;:::i;:::-;19703:7;19734:1;19719:355;19744:6;19741:1;19738:13;19719:355;;;19814:6;19840:118;19954:3;19939:13;19840:118;:::i;:::-;19833:125;;19981:83;20057:6;19981:83;:::i;:::-;19971:93;;19779:295;19766:1;19763;19759:9;19754:14;;19719:355;;;19723:14;20090:3;20083:10;;19345:754;;;19169:930;;;;:::o;20105:477::-;20300:4;20338:2;20327:9;20323:18;20315:26;;20387:9;20381:4;20377:20;20373:1;20362:9;20358:17;20351:47;20415:160;20570:4;20561:6;20415:160;:::i;:::-;20407:168;;20105:477;;;;:::o;20588:169::-;20672:11;20706:6;20701:3;20694:19;20746:4;20741:3;20737:14;20722:29;;20588:169;;;;:::o;20763:171::-;20903:23;20899:1;20891:6;20887:14;20880:47;20763:171;:::o;20940:366::-;21082:3;21103:67;21167:2;21162:3;21103:67;:::i;:::-;21096:74;;21179:93;21268:3;21179:93;:::i;:::-;21297:2;21292:3;21288:12;21281:19;;20940:366;;;:::o;21312:419::-;21478:4;21516:2;21505:9;21501:18;21493:26;;21565:9;21559:4;21555:20;21551:1;21540:9;21536:17;21529:47;21593:131;21719:4;21593:131;:::i;:::-;21585:139;;21312:419;;;:::o;21737:224::-;21877:34;21873:1;21865:6;21861:14;21854:58;21946:7;21941:2;21933:6;21929:15;21922:32;21737:224;:::o;21967:366::-;22109:3;22130:67;22194:2;22189:3;22130:67;:::i;:::-;22123:74;;22206:93;22295:3;22206:93;:::i;:::-;22324:2;22319:3;22315:12;22308:19;;21967:366;;;:::o;22339:419::-;22505:4;22543:2;22532:9;22528:18;22520:26;;22592:9;22586:4;22582:20;22578:1;22567:9;22563:17;22556:47;22620:131;22746:4;22620:131;:::i;:::-;22612:139;;22339:419;;;:::o;22764:226::-;22904:34;22900:1;22892:6;22888:14;22881:58;22973:9;22968:2;22960:6;22956:15;22949:34;22764:226;:::o;22996:366::-;23138:3;23159:67;23223:2;23218:3;23159:67;:::i;:::-;23152:74;;23235:93;23324:3;23235:93;:::i;:::-;23353:2;23348:3;23344:12;23337:19;;22996:366;;;:::o;23368:419::-;23534:4;23572:2;23561:9;23557:18;23549:26;;23621:9;23615:4;23611:20;23607:1;23596:9;23592:17;23585:47;23649:131;23775:4;23649:131;:::i;:::-;23641:139;;23368:419;;;:::o;23793:218::-;23884:4;23922:2;23911:9;23907:18;23899:26;;23935:69;24001:1;23990:9;23986:17;23977:6;23935:69;:::i;:::-;23793:218;;;;:::o;24017:164::-;24157:16;24153:1;24145:6;24141:14;24134:40;24017:164;:::o;24187:366::-;24329:3;24350:67;24414:2;24409:3;24350:67;:::i;:::-;24343:74;;24426:93;24515:3;24426:93;:::i;:::-;24544:2;24539:3;24535:12;24528:19;;24187:366;;;:::o;24559:419::-;24725:4;24763:2;24752:9;24748:18;24740:26;;24812:9;24806:4;24802:20;24798:1;24787:9;24783:17;24776:47;24840:131;24966:4;24840:131;:::i;:::-;24832:139;;24559:419;;;:::o;24984:164::-;25124:16;25120:1;25112:6;25108:14;25101:40;24984:164;:::o;25154:366::-;25296:3;25317:67;25381:2;25376:3;25317:67;:::i;:::-;25310:74;;25393:93;25482:3;25393:93;:::i;:::-;25511:2;25506:3;25502:12;25495:19;;25154:366;;;:::o;25526:419::-;25692:4;25730:2;25719:9;25715:18;25707:26;;25779:9;25773:4;25769:20;25765:1;25754:9;25750:17;25743:47;25807:131;25933:4;25807:131;:::i;:::-;25799:139;;25526:419;;;:::o;25951:163::-;26091:15;26087:1;26079:6;26075:14;26068:39;25951:163;:::o;26120:366::-;26262:3;26283:67;26347:2;26342:3;26283:67;:::i;:::-;26276:74;;26359:93;26448:3;26359:93;:::i;:::-;26477:2;26472:3;26468:12;26461:19;;26120:366;;;:::o;26492:419::-;26658:4;26696:2;26685:9;26681:18;26673:26;;26745:9;26739:4;26735:20;26731:1;26720:9;26716:17;26709:47;26773:131;26899:4;26773:131;:::i;:::-;26765:139;;26492:419;;;:::o;26917:171::-;27057:23;27053:1;27045:6;27041:14;27034:47;26917:171;:::o;27094:366::-;27236:3;27257:67;27321:2;27316:3;27257:67;:::i;:::-;27250:74;;27333:93;27422:3;27333:93;:::i;:::-;27451:2;27446:3;27442:12;27435:19;;27094:366;;;:::o;27466:419::-;27632:4;27670:2;27659:9;27655:18;27647:26;;27719:9;27713:4;27709:20;27705:1;27694:9;27690:17;27683:47;27747:131;27873:4;27747:131;:::i;:::-;27739:139;;27466:419;;;:::o;27891:332::-;28012:4;28050:2;28039:9;28035:18;28027:26;;28063:71;28131:1;28120:9;28116:17;28107:6;28063:71;:::i;:::-;28144:72;28212:2;28201:9;28197:18;28188:6;28144:72;:::i;:::-;27891:332;;;;;:::o;28229:116::-;28299:21;28314:5;28299:21;:::i;:::-;28292:5;28289:32;28279:60;;28335:1;28332;28325:12;28279:60;28229:116;:::o;28351:137::-;28405:5;28436:6;28430:13;28421:22;;28452:30;28476:5;28452:30;:::i;:::-;28351:137;;;;:::o;28494:345::-;28561:6;28610:2;28598:9;28589:7;28585:23;28581:32;28578:119;;;28616:79;;:::i;:::-;28578:119;28736:1;28761:61;28814:7;28805:6;28794:9;28790:22;28761:61;:::i;:::-;28751:71;;28707:125;28494:345;;;;:::o;28845:180::-;28893:77;28890:1;28883:88;28990:4;28987:1;28980:15;29014:4;29011:1;29004:15;29031:191;29071:3;29090:20;29108:1;29090:20;:::i;:::-;29085:25;;29124:20;29142:1;29124:20;:::i;:::-;29119:25;;29167:1;29164;29160:9;29153:16;;29188:3;29185:1;29182:10;29179:36;;;29195:18;;:::i;:::-;29179:36;29031:191;;;;:::o;29228:194::-;29268:4;29288:20;29306:1;29288:20;:::i;:::-;29283:25;;29322:20;29340:1;29322:20;:::i;:::-;29317:25;;29366:1;29363;29359:9;29351:17;;29390:1;29384:4;29381:11;29378:37;;;29395:18;;:::i;:::-;29378:37;29228:194;;;;:::o;29428:222::-;29521:4;29559:2;29548:9;29544:18;29536:26;;29572:71;29640:1;29629:9;29625:17;29616:6;29572:71;:::i;:::-;29428:222;;;;:::o;29656:228::-;29796:34;29792:1;29784:6;29780:14;29773:58;29865:11;29860:2;29852:6;29848:15;29841:36;29656:228;:::o;29890:366::-;30032:3;30053:67;30117:2;30112:3;30053:67;:::i;:::-;30046:74;;30129:93;30218:3;30129:93;:::i;:::-;30247:2;30242:3;30238:12;30231:19;;29890:366;;;:::o;30262:419::-;30428:4;30466:2;30455:9;30451:18;30443:26;;30515:9;30509:4;30505:20;30501:1;30490:9;30486:17;30479:47;30543:131;30669:4;30543:131;:::i;:::-;30535:139;;30262:419;;;:::o;30687:233::-;30827:34;30823:1;30815:6;30811:14;30804:58;30896:16;30891:2;30883:6;30879:15;30872:41;30687:233;:::o;30926:366::-;31068:3;31089:67;31153:2;31148:3;31089:67;:::i;:::-;31082:74;;31165:93;31254:3;31165:93;:::i;:::-;31283:2;31278:3;31274:12;31267:19;;30926:366;;;:::o;31298:419::-;31464:4;31502:2;31491:9;31487:18;31479:26;;31551:9;31545:4;31541:20;31537:1;31526:9;31522:17;31515:47;31579:131;31705:4;31579:131;:::i;:::-;31571:139;;31298:419;;;:::o;31723:85::-;31768:7;31797:5;31786:16;;31723:85;;;:::o;31814:86::-;31849:7;31889:4;31882:5;31878:16;31867:27;;31814:86;;;:::o;31906:60::-;31934:3;31955:5;31948:12;;31906:60;;;:::o;31972:154::-;32028:9;32061:59;32077:42;32086:32;32112:5;32086:32;:::i;:::-;32077:42;:::i;:::-;32061:59;:::i;:::-;32048:72;;31972:154;;;:::o;32132:143::-;32225:43;32262:5;32225:43;:::i;:::-;32220:3;32213:56;32132:143;;:::o;32281:234::-;32380:4;32418:2;32407:9;32403:18;32395:26;;32431:77;32505:1;32494:9;32490:17;32481:6;32431:77;:::i;:::-;32281:234;;;;:::o;32521:173::-;32661:25;32657:1;32649:6;32645:14;32638:49;32521:173;:::o;32700:366::-;32842:3;32863:67;32927:2;32922:3;32863:67;:::i;:::-;32856:74;;32939:93;33028:3;32939:93;:::i;:::-;33057:2;33052:3;33048:12;33041:19;;32700:366;;;:::o;33072:419::-;33238:4;33276:2;33265:9;33261:18;33253:26;;33325:9;33319:4;33315:20;33311:1;33300:9;33296:17;33289:47;33353:131;33479:4;33353:131;:::i;:::-;33345:139;;33072:419;;;:::o;33497:168::-;33637:20;33633:1;33625:6;33621:14;33614:44;33497:168;:::o;33671:366::-;33813:3;33834:67;33898:2;33893:3;33834:67;:::i;:::-;33827:74;;33910:93;33999:3;33910:93;:::i;:::-;34028:2;34023:3;34019:12;34012:19;;33671:366;;;:::o;34043:419::-;34209:4;34247:2;34236:9;34232:18;34224:26;;34296:9;34290:4;34286:20;34282:1;34271:9;34267:17;34260:47;34324:131;34450:4;34324:131;:::i;:::-;34316:139;;34043:419;;;:::o;34468:442::-;34617:4;34655:2;34644:9;34640:18;34632:26;;34668:71;34736:1;34725:9;34721:17;34712:6;34668:71;:::i;:::-;34749:72;34817:2;34806:9;34802:18;34793:6;34749:72;:::i;:::-;34831;34899:2;34888:9;34884:18;34875:6;34831:72;:::i;:::-;34468:442;;;;;;:::o;34916:233::-;34955:3;34978:24;34996:5;34978:24;:::i;:::-;34969:33;;35024:66;35017:5;35014:77;35011:103;;35094:18;;:::i;:::-;35011:103;35141:1;35134:5;35130:13;35123:20;;34916:233;;;:::o;35155:410::-;35195:7;35218:20;35236:1;35218:20;:::i;:::-;35213:25;;35252:20;35270:1;35252:20;:::i;:::-;35247:25;;35307:1;35304;35300:9;35329:30;35347:11;35329:30;:::i;:::-;35318:41;;35508:1;35499:7;35495:15;35492:1;35489:22;35469:1;35462:9;35442:83;35419:139;;35538:18;;:::i;:::-;35419:139;35203:362;35155:410;;;;:::o;35571:180::-;35619:77;35616:1;35609:88;35716:4;35713:1;35706:15;35740:4;35737:1;35730:15;35757:185;35797:1;35814:20;35832:1;35814:20;:::i;:::-;35809:25;;35848:20;35866:1;35848:20;:::i;:::-;35843:25;;35887:1;35877:35;;35892:18;;:::i;:::-;35877:35;35934:1;35931;35927:9;35922:14;;35757:185;;;;:::o;35948:140::-;35997:9;36030:52;36048:33;36057:23;36074:5;36057:23;:::i;:::-;36048:33;:::i;:::-;36030:52;:::i;:::-;36017:65;;35948:140;;;:::o;36094:129::-;36180:36;36210:5;36180:36;:::i;:::-;36175:3;36168:49;36094:129;;:::o;36229:146::-;36326:6;36321:3;36316;36303:30;36367:1;36358:6;36353:3;36349:16;36342:27;36229:146;;;:::o;36405:317::-;36503:3;36524:71;36588:6;36583:3;36524:71;:::i;:::-;36517:78;;36605:56;36654:6;36649:3;36642:5;36605:56;:::i;:::-;36686:29;36708:6;36686:29;:::i;:::-;36681:3;36677:39;36670:46;;36405:317;;;;;:::o;36728:773::-;36962:4;37000:3;36989:9;36985:19;36977:27;;37014:71;37082:1;37071:9;37067:17;37058:6;37014:71;:::i;:::-;37095:72;37163:2;37152:9;37148:18;37139:6;37095:72;:::i;:::-;37177:71;37244:2;37233:9;37229:18;37220:6;37177:71;:::i;:::-;37258:72;37326:2;37315:9;37311:18;37302:6;37258:72;:::i;:::-;37378:9;37372:4;37368:20;37362:3;37351:9;37347:19;37340:49;37406:88;37489:4;37480:6;37472;37406:88;:::i;:::-;37398:96;;36728:773;;;;;;;;;:::o;37507:216::-;37546:4;37566:19;37583:1;37566:19;:::i;:::-;37561:24;;37599:19;37616:1;37599:19;:::i;:::-;37594:24;;37642:1;37639;37635:9;37627:17;;37666:26;37660:4;37657:36;37654:62;;;37696:18;;:::i;:::-;37654:62;37507:216;;;;:::o;37729:138::-;37777:9;37810:51;37827:33;37836:23;37853:5;37836:23;:::i;:::-;37827:33;:::i;:::-;37810:51;:::i;:::-;37797:64;;37729:138;;;:::o;37873:127::-;37958:35;37987:5;37958:35;:::i;:::-;37953:3;37946:48;37873:127;;:::o;38006:328::-;38125:4;38163:2;38152:9;38148:18;38140:26;;38176:71;38244:1;38233:9;38229:17;38220:6;38176:71;:::i;:::-;38257:70;38323:2;38312:9;38308:18;38299:6;38257:70;:::i;:::-;38006:328;;;;;:::o;38340:182::-;38480:34;38476:1;38468:6;38464:14;38457:58;38340:182;:::o;38528:366::-;38670:3;38691:67;38755:2;38750:3;38691:67;:::i;:::-;38684:74;;38767:93;38856:3;38767:93;:::i;:::-;38885:2;38880:3;38876:12;38869:19;;38528:366;;;:::o;38900:419::-;39066:4;39104:2;39093:9;39089:18;39081:26;;39153:9;39147:4;39143:20;39139:1;39128:9;39124:17;39117:47;39181:131;39307:4;39181:131;:::i;:::-;39173:139;;38900:419;;;:::o;39325:230::-;39465:34;39461:1;39453:6;39449:14;39442:58;39534:13;39529:2;39521:6;39517:15;39510:38;39325:230;:::o;39561:366::-;39703:3;39724:67;39788:2;39783:3;39724:67;:::i;:::-;39717:74;;39800:93;39889:3;39800:93;:::i;:::-;39918:2;39913:3;39909:12;39902:19;;39561:366;;;:::o;39933:419::-;40099:4;40137:2;40126:9;40122:18;40114:26;;40186:9;40180:4;40176:20;40172:1;40161:9;40157:17;40150:47;40214:131;40340:4;40214:131;:::i;:::-;40206:139;;39933:419;;;:::o;40358:166::-;40498:18;40494:1;40486:6;40482:14;40475:42;40358:166;:::o;40530:366::-;40672:3;40693:67;40757:2;40752:3;40693:67;:::i;:::-;40686:74;;40769:93;40858:3;40769:93;:::i;:::-;40887:2;40882:3;40878:12;40871:19;;40530:366;;;:::o;40902:419::-;41068:4;41106:2;41095:9;41091:18;41083:26;;41155:9;41149:4;41145:20;41141:1;41130:9;41126:17;41119:47;41183:131;41309:4;41183:131;:::i;:::-;41175:139;;40902:419;;;:::o;41327:167::-;41467:19;41463:1;41455:6;41451:14;41444:43;41327:167;:::o;41500:366::-;41642:3;41663:67;41727:2;41722:3;41663:67;:::i;:::-;41656:74;;41739:93;41828:3;41739:93;:::i;:::-;41857:2;41852:3;41848:12;41841:19;;41500:366;;;:::o;41872:419::-;42038:4;42076:2;42065:9;42061:18;42053:26;;42125:9;42119:4;42115:20;42111:1;42100:9;42096:17;42089:47;42153:131;42279:4;42153:131;:::i;:::-;42145:139;;41872:419;;;:::o;42297:162::-;42437:14;42433:1;42425:6;42421:14;42414:38;42297:162;:::o;42465:366::-;42607:3;42628:67;42692:2;42687:3;42628:67;:::i;:::-;42621:74;;42704:93;42793:3;42704:93;:::i;:::-;42822:2;42817:3;42813:12;42806:19;;42465:366;;;:::o;42837:419::-;43003:4;43041:2;43030:9;43026:18;43018:26;;43090:9;43084:4;43080:20;43076:1;43065:9;43061:17;43054:47;43118:131;43244:4;43118:131;:::i;:::-;43110:139;;42837:419;;;:::o;43262:166::-;43402:18;43398:1;43390:6;43386:14;43379:42;43262:166;:::o;43434:366::-;43576:3;43597:67;43661:2;43656:3;43597:67;:::i;:::-;43590:74;;43673:93;43762:3;43673:93;:::i;:::-;43791:2;43786:3;43782:12;43775:19;;43434:366;;;:::o;43806:419::-;43972:4;44010:2;43999:9;43995:18;43987:26;;44059:9;44053:4;44049:20;44045:1;44034:9;44030:17;44023:47;44087:131;44213:4;44087:131;:::i;:::-;44079:139;;43806:419;;;:::o;44231:172::-;44371:24;44367:1;44359:6;44355:14;44348:48;44231:172;:::o;44409:366::-;44551:3;44572:67;44636:2;44631:3;44572:67;:::i;:::-;44565:74;;44648:93;44737:3;44648:93;:::i;:::-;44766:2;44761:3;44757:12;44750:19;;44409:366;;;:::o;44781:419::-;44947:4;44985:2;44974:9;44970:18;44962:26;;45034:9;45028:4;45024:20;45020:1;45009:9;45005:17;44998:47;45062:131;45188:4;45062:131;:::i;:::-;45054:139;;44781:419;;;:::o;45206:175::-;45346:27;45342:1;45334:6;45330:14;45323:51;45206:175;:::o;45387:366::-;45529:3;45550:67;45614:2;45609:3;45550:67;:::i;:::-;45543:74;;45626:93;45715:3;45626:93;:::i;:::-;45744:2;45739:3;45735:12;45728:19;;45387:366;;;:::o;45759:419::-;45925:4;45963:2;45952:9;45948:18;45940:26;;46012:9;46006:4;46002:20;45998:1;45987:9;45983:17;45976:47;46040:131;46166:4;46040:131;:::i;:::-;46032:139;;45759:419;;;:::o;46184:170::-;46324:22;46320:1;46312:6;46308:14;46301:46;46184:170;:::o;46360:366::-;46502:3;46523:67;46587:2;46582:3;46523:67;:::i;:::-;46516:74;;46599:93;46688:3;46599:93;:::i;:::-;46717:2;46712:3;46708:12;46701:19;;46360:366;;;:::o;46732:419::-;46898:4;46936:2;46925:9;46921:18;46913:26;;46985:9;46979:4;46975:20;46971:1;46960:9;46956:17;46949:47;47013:131;47139:4;47013:131;:::i;:::-;47005:139;;46732:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"3203600","executionCost":"infinite","totalCost":"infinite"},"external":{"acceptOwnership()":"54681","createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":"infinite","getFeeDetails()":"4804","getOrderInfo(bytes32)":"infinite","initialize()":"191278","isTokenSupported(address)":"2970","owner()":"2611","pause()":"infinite","paused()":"2502","pendingOwner()":"2588","refund(uint256,bytes32)":"infinite","renounceOwnership()":"54714","setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":"infinite","settingManagerBool(bytes32,address,uint256)":"infinite","settle(bytes32,bytes32,address,uint64)":"infinite","transferOwnership(address)":"infinite","unpause()":"infinite","updateProtocolAddress(bytes32,address)":"31139","updateProtocolFee(uint64)":"infinite"},"internal":{"_handler(address,uint256,address,address,uint256,bytes32)":"infinite"}},"methodIdentifiers":{"acceptOwnership()":"79ba5097","createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":"d12ff20a","getFeeDetails()":"b810c636","getOrderInfo(bytes32)":"768c6ec0","initialize()":"8129fc1c","isTokenSupported(address)":"75151b63","owner()":"8da5cb5b","pause()":"8456cb59","paused()":"5c975abb","pendingOwner()":"e30c3978","refund(uint256,bytes32)":"71eedb88","renounceOwnership()":"715018a6","setSupportedInstitutions(bytes32,(bytes32,bytes32)[])":"32200882","settingManagerBool(bytes32,address,uint256)":"cd992400","settle(bytes32,bytes32,address,uint64)":"f22ee704","transferOwnership(address)":"f2fde38b","unpause()":"3f4ba83a","updateProtocolAddress(bytes32,address)":"40ebc677","updateProtocolFee(uint64)":"47094e2e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"institutionCode\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"settlePercent\",\"type\":\"uint96\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"ProtocolAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"protocolFee\",\"type\":\"uint64\"}],\"name\":\"ProtocolFeeUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"treasuryAddress\",\"type\":\"address\"}],\"name\":\"SetFeeRecipient\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"SettingManagerBool\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"indexed\":false,\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"institutions\",\"type\":\"tuple[]\"}],\"name\":\"SupportedInstitutionsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_institutionCode\",\"type\":\"bytes32\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getFeeDetails\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGatewayV2.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"institutions\",\"type\":\"tuple[]\"}],\"name\":\"setSupportedInstitutions\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"status\",\"type\":\"uint256\"}],\"name\":\"settingManagerBool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"what\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"value\",\"type\":\"address\"}],\"name\":\"updateProtocolAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_protocolFeePercent\",\"type\":\"uint64\"}],\"name\":\"updateProtocolFee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"institutionCode\":\"The code of the institution.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint96)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)\":{\"details\":\"See {createOrder-IGateway}. \"},\"getFeeDetails()\":{\"details\":\"See {getFeeDetails-IGateway}. \"},\"getOrderInfo(bytes32)\":{\"details\":\"See {getOrderInfo-IGateway}. \"},\"initialize()\":{\"details\":\"Initialize function.\"},\"isTokenSupported(address)\":{\"details\":\"See {isTokenSupported-IGateway}. \"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"Pause the contract.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"refund(uint256,bytes32)\":{\"details\":\"See {refund-IGateway}. \"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"setSupportedInstitutions(bytes32,(bytes32,bytes32)[])\":{\"details\":\"Sets the supported institutions for a specific currency.\",\"params\":{\"currency\":\"The currency for which the institutions are being set.\",\"institutions\":\"The array of institutions to be set.\"}},\"settingManagerBool(bytes32,address,uint256)\":{\"details\":\"Sets the boolean value for a specific setting.\",\"params\":{\"status\":\"The boolean value to be set. Requirements: - The value must not be a zero address.\",\"value\":\"The address or value associated with the setting.\",\"what\":\"The setting to be updated.\"}},\"settle(bytes32,bytes32,address,uint64)\":{\"details\":\"See {settle-IGateway}. \"},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner.\"},\"unpause()\":{\"details\":\"Unpause the contract.\"},\"updateProtocolAddress(bytes32,address)\":{\"details\":\"Updates a protocol address.\",\"params\":{\"value\":\"The new address to be set. Requirements: - The value must not be a zero address.\",\"what\":\"The address type to be updated (treasury or aggregator).\"}},\"updateProtocolFee(uint64)\":{\"details\":\"Updates the protocol fee percentage.\",\"params\":{\"_protocolFeePercent\":\"The new protocol fee percentage to be set.\"}}},\"title\":\"Gateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"This contract serves as a gateway for creating orders and managing settlements.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GatewayV2.sol\":\"GatewayV2\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./OwnableUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership} and {acceptOwnership}.\\n *\\n * This module is used through inheritance. It will make available all functions\\n * from parent (Ownable).\\n */\\nabstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {\\n address private _pendingOwner;\\n\\n event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\\n\\n function __Ownable2Step_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable2Step_init_unchained() internal onlyInitializing {\\n }\\n /**\\n * @dev Returns the address of the pending owner.\\n */\\n function pendingOwner() public view virtual returns (address) {\\n return _pendingOwner;\\n }\\n\\n /**\\n * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual override onlyOwner {\\n _pendingOwner = newOwner;\\n emit OwnershipTransferStarted(owner(), newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual override {\\n delete _pendingOwner;\\n super._transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev The new owner accepts the ownership transfer.\\n */\\n function acceptOwnership() public virtual {\\n address sender = _msgSender();\\n require(pendingOwner() == sender, \\\"Ownable2Step: caller is not the new owner\\\");\\n _transferOwnership(sender);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n function __Ownable_init() internal onlyInitializing {\\n __Ownable_init_unchained();\\n }\\n\\n function __Ownable_init_unchained() internal onlyInitializing {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\\n\\npragma solidity ^0.8.2;\\n\\nimport \\\"../../utils/AddressUpgradeable.sol\\\";\\n\\n/**\\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\\n *\\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\\n * reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in\\n * case an upgrade adds a module that needs to be initialized.\\n *\\n * For example:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```solidity\\n * contract MyToken is ERC20Upgradeable {\\n * function initialize() initializer public {\\n * __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");\\n * }\\n * }\\n *\\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\\n * function initializeV2() reinitializer(2) public {\\n * __ERC20Permit_init(\\\"MyToken\\\");\\n * }\\n * }\\n * ```\\n *\\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\\n *\\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\\n *\\n * [CAUTION]\\n * ====\\n * Avoid leaving a contract uninitialized.\\n *\\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\\n *\\n * [.hljs-theme-light.nopadding]\\n * ```\\n * /// @custom:oz-upgrades-unsafe-allow constructor\\n * constructor() {\\n * _disableInitializers();\\n * }\\n * ```\\n * ====\\n */\\nabstract contract Initializable {\\n /**\\n * @dev Indicates that the contract has been initialized.\\n * @custom:oz-retyped-from bool\\n */\\n uint8 private _initialized;\\n\\n /**\\n * @dev Indicates that the contract is in the process of being initialized.\\n */\\n bool private _initializing;\\n\\n /**\\n * @dev Triggered when the contract has been initialized or reinitialized.\\n */\\n event Initialized(uint8 version);\\n\\n /**\\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\\n * `onlyInitializing` functions can be used to initialize parent contracts.\\n *\\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\\n * constructor.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier initializer() {\\n bool isTopLevelCall = !_initializing;\\n require(\\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\\n \\\"Initializable: contract is already initialized\\\"\\n );\\n _initialized = 1;\\n if (isTopLevelCall) {\\n _initializing = true;\\n }\\n _;\\n if (isTopLevelCall) {\\n _initializing = false;\\n emit Initialized(1);\\n }\\n }\\n\\n /**\\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\\n * used to initialize parent contracts.\\n *\\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\\n * are added through upgrades and that require initialization.\\n *\\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\\n * cannot be nested. If one is invoked in the context of another, execution will revert.\\n *\\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\\n * a contract, executing them in the right order is up to the developer or operator.\\n *\\n * WARNING: setting the version to 255 will prevent any future reinitialization.\\n *\\n * Emits an {Initialized} event.\\n */\\n modifier reinitializer(uint8 version) {\\n require(!_initializing && _initialized < version, \\\"Initializable: contract is already initialized\\\");\\n _initialized = version;\\n _initializing = true;\\n _;\\n _initializing = false;\\n emit Initialized(version);\\n }\\n\\n /**\\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\\n */\\n modifier onlyInitializing() {\\n require(_initializing, \\\"Initializable: contract is not initializing\\\");\\n _;\\n }\\n\\n /**\\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\\n * through proxies.\\n *\\n * Emits an {Initialized} event the first time it is successfully executed.\\n */\\n function _disableInitializers() internal virtual {\\n require(!_initializing, \\\"Initializable: contract is initializing\\\");\\n if (_initialized != type(uint8).max) {\\n _initialized = type(uint8).max;\\n emit Initialized(type(uint8).max);\\n }\\n }\\n\\n /**\\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\\n */\\n function _getInitializedVersion() internal view returns (uint8) {\\n return _initialized;\\n }\\n\\n /**\\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\\n */\\n function _isInitializing() internal view returns (bool) {\\n return _initializing;\\n }\\n}\\n\",\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/ContextUpgradeable.sol\\\";\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n function __Pausable_init() internal onlyInitializing {\\n __Pausable_init_unchained();\\n }\\n\\n function __Pausable_init_unchained() internal onlyInitializing {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[49] private __gap;\\n}\\n\",\"keccak256\":\"0xad32f6821f860555f9530902a65b54203a4f5db2117f4384ae47a124958078db\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary AddressUpgradeable {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\"},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\nimport {Initializable} from \\\"../proxy/utils/Initializable.sol\\\";\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract ContextUpgradeable is Initializable {\\n function __Context_init() internal onlyInitializing {\\n }\\n\\n function __Context_init_unchained() internal onlyInitializing {\\n }\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n\\n /**\\n * @dev This empty reserved space is put in place to allow future versions to add new\\n * variables without shifting down storage in the inheritance chain.\\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\\n */\\n uint256[50] private __gap;\\n}\\n\",\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/GatewaySettingManager.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\n\\n/**\\n * @title GatewaySettingManager\\n * @dev This contract manages the settings and configurations for the Gateway protocol.\\n */\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol';\\n\\nimport {SharedStructs} from './libraries/SharedStructs.sol';\\n\\ncontract GatewaySettingManager is Ownable2StepUpgradeable {\\n\\tuint256 internal MAX_BPS;\\n\\tuint64 internal protocolFeePercent;\\n\\taddress internal treasuryAddress;\\n\\taddress internal _aggregatorAddress;\\n\\n\\t// this should decrease if more slots are needed on this contract to avoid collisions with base contract\\n\\tuint256[50] private __gap;\\n\\n\\tmapping(address => uint256) internal _isTokenSupported;\\n\\n\\tmapping(bytes32 => SharedStructs.Institution[]) internal supportedInstitutions;\\n\\tmapping(bytes32 => SharedStructs.InstitutionByCode) internal supportedInstitutionsByCode;\\n\\n\\tevent SettingManagerBool(bytes32 indexed what, address indexed value, uint256 status);\\n\\tevent SupportedInstitutionsUpdated(\\n\\t\\tbytes32 indexed currency,\\n\\t\\tSharedStructs.Institution[] institutions\\n\\t);\\n\\tevent ProtocolFeeUpdated(uint64 protocolFee);\\n\\tevent ProtocolAddressUpdated(bytes32 indexed what, address indexed treasuryAddress);\\n\\tevent SetFeeRecipient(address indexed treasuryAddress);\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\n\\t/**\\n\\t * @dev Sets the boolean value for a specific setting.\\n\\t * @param what The setting to be updated.\\n\\t * @param value The address or value associated with the setting.\\n\\t * @param status The boolean value to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction settingManagerBool(bytes32 what, address value, uint256 status) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\trequire(status == 1 || status == 2, 'Gateway: invalid status');\\n\\t\\tif (what == 'token') {\\n\\t\\t\\t_isTokenSupported[value] = status;\\n\\t\\t\\temit SettingManagerBool(what, value, status);\\n\\t\\t}\\n\\t}\\n\\n\\t/**\\n\\t * @dev Sets the supported institutions for a specific currency.\\n\\t * @param currency The currency for which the institutions are being set.\\n\\t * @param institutions The array of institutions to be set.\\n\\t */\\n\\tfunction setSupportedInstitutions(\\n\\t\\tbytes32 currency,\\n\\t\\tSharedStructs.Institution[] memory institutions\\n\\t) external onlyOwner {\\n\\t\\tdelete supportedInstitutions[currency];\\n\\t\\tfor (uint i; i < institutions.length; ) {\\n\\t\\t\\tsupportedInstitutions[currency].push(institutions[i]);\\n\\t\\t\\tsupportedInstitutionsByCode[institutions[i].code] = SharedStructs.InstitutionByCode({\\n\\t\\t\\t\\tname: institutions[i].name,\\n\\t\\t\\t\\tcurrency: currency\\n\\t\\t\\t});\\n\\t\\t\\tunchecked {\\n\\t\\t\\t\\t++i;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\temit SupportedInstitutionsUpdated(currency, supportedInstitutions[currency]);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates the protocol fee percentage.\\n\\t * @param _protocolFeePercent The new protocol fee percentage to be set.\\n\\t */\\n\\tfunction updateProtocolFee(uint64 _protocolFeePercent) external onlyOwner {\\n\\t\\tprotocolFeePercent = _protocolFeePercent;\\n\\t\\temit ProtocolFeeUpdated(_protocolFeePercent);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Updates a protocol address.\\n\\t * @param what The address type to be updated (treasury or aggregator).\\n\\t * @param value The new address to be set.\\n\\t * Requirements:\\n\\t * - The value must not be a zero address.\\n\\t */\\n\\tfunction updateProtocolAddress(bytes32 what, address value) external onlyOwner {\\n\\t\\trequire(value != address(0), 'Gateway: zero address');\\n\\t\\tbool updated;\\n\\t\\tif (what == 'treasury') {\\n\\t\\t\\trequire(treasuryAddress != value, 'Gateway: treasury address already set');\\n\\t\\t\\ttreasuryAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t} else if (what == 'aggregator') {\\n\\t\\t\\trequire(_aggregatorAddress != value, 'Gateway: aggregator address already set');\\n\\t\\t\\t_aggregatorAddress = value;\\n\\t\\t\\tupdated = true;\\n\\t\\t}\\n\\t\\tif (updated) {\\n\\t\\t\\temit ProtocolAddressUpdated(what, value);\\n\\t\\t}\\n\\t}\\n}\\n\",\"keccak256\":\"0x7bf3fc733cbf8f2815924c2f10199aa0836d3b5d5b5b92b10cd4855d65773477\",\"license\":\"UNLICENSED\"},\"contracts/GatewayV2.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';\\n\\nimport {GatewaySettingManager} from './GatewaySettingManager.sol';\\nimport {IGatewayV2, IERC20} from './interfaces/IGatewayV2.sol';\\n\\n/**\\n * @title Gateway\\n * @notice This contract serves as a gateway for creating orders and managing settlements.\\n */\\ncontract GatewayV2 is IGatewayV2, GatewaySettingManager, PausableUpgradeable {\\n\\tstruct fee {\\n\\t\\tuint256 protocolFee;\\n\\t\\tuint256 liquidityProviderAmount;\\n\\t}\\n\\n\\tmapping(bytes32 => Order) private order;\\n\\tmapping(address => uint256) private _nonce;\\n\\tuint256[50] private __gap;\\n\\n\\t/// @custom:oz-upgrades-unsafe-allow constructor\\n\\tconstructor() {\\n\\t\\t_disableInitializers();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Initialize function.\\n\\t */\\n\\tfunction initialize() external initializer {\\n\\t\\tMAX_BPS = 100_000;\\n\\t\\t__Ownable2Step_init();\\n\\t\\t__Pausable_init();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Modifier that allows only the aggregator to call a function.\\n\\t */\\n\\tmodifier onlyAggregator() {\\n\\t\\trequire(msg.sender == _aggregatorAddress, 'OnlyAggregator');\\n\\t\\t_;\\n\\t}\\n\\n\\t/* ##################################################################\\n OWNER FUNCTIONS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Pause the contract.\\n\\t */\\n\\tfunction pause() external onlyOwner {\\n\\t\\t_pause();\\n\\t}\\n\\n\\t/**\\n\\t * @dev Unpause the contract.\\n\\t */\\n\\tfunction unpause() external onlyOwner {\\n\\t\\t_unpause();\\n\\t}\\n\\n\\t/* ##################################################################\\n USER CALLS\\n ################################################################## */\\n\\t/** @dev See {createOrder-IGateway}. */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tbytes32 _institutionCode,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external whenNotPaused returns (bytes32 orderId) {\\n\\t\\t// checks that are required\\n\\t\\t_handler(\\n\\t\\t\\t_token,\\n\\t\\t\\t_amount,\\n\\t\\t\\t_refundAddress,\\n\\t\\t\\t_senderFeeRecipient,\\n\\t\\t\\t_senderFee,\\n\\t\\t\\t_institutionCode\\n\\t\\t);\\n\\n\\t\\t// validate messageHash\\n\\t\\trequire(bytes(messageHash).length != 0, 'InvalidMessageHash');\\n\\n\\t\\t// transfer token from msg.sender to contract\\n\\t\\tIERC20(_token).transferFrom(msg.sender, address(this), _amount + _senderFee);\\n\\n\\t\\t// increase users nonce to avoid replay attacks\\n\\t\\t_nonce[msg.sender]++;\\n\\n\\t\\t// generate transaction id for the transaction\\n\\t\\torderId = keccak256(abi.encode(msg.sender, _nonce[msg.sender]));\\n\\n\\t\\t// update transaction\\n\\t\\tuint256 _protocolFee = (_amount * protocolFeePercent) / MAX_BPS;\\n\\t\\torder[orderId] = Order({\\n\\t\\t\\tsender: msg.sender,\\n\\t\\t\\ttoken: _token,\\n\\t\\t\\tsenderFeeRecipient: _senderFeeRecipient,\\n\\t\\t\\tsenderFee: _senderFee,\\n\\t\\t\\tprotocolFee: _protocolFee,\\n\\t\\t\\tisFulfilled: false,\\n\\t\\t\\tisRefunded: false,\\n\\t\\t\\trefundAddress: _refundAddress,\\n\\t\\t\\tcurrentBPS: uint64(MAX_BPS),\\n\\t\\t\\tamount: _amount - _protocolFee\\n\\t\\t});\\n\\n\\t\\t// emit order created event\\n\\t\\temit OrderCreated(\\n\\t\\t\\torder[orderId].sender,\\n\\t\\t\\t_token,\\n\\t\\t\\torder[orderId].amount,\\n\\t\\t\\t_protocolFee,\\n\\t\\t\\torderId,\\n\\t\\t\\t_rate,\\n\\t\\t\\t_institutionCode,\\n\\t\\t\\tmessageHash\\n\\t\\t);\\n\\t}\\n\\n\\t/**\\n\\t * @dev Internal function to handle order creation.\\n\\t * @param _token The address of the token being traded.\\n\\t * @param _amount The amount of tokens being traded.\\n\\t * @param _refundAddress The address to refund the tokens in case of cancellation.\\n\\t * @param _senderFeeRecipient The address of the recipient for the sender fee.\\n\\t * @param _senderFee The amount of the sender fee.\\n\\t * @param _institutionCode The code of the institution associated with the order.\\n\\t */\\n\\tfunction _handler(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\taddress _refundAddress,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\tbytes32 _institutionCode\\n\\t) internal view {\\n\\t\\trequire(_isTokenSupported[_token] == 1, 'TokenNotSupported');\\n\\t\\trequire(_amount != 0, 'AmountIsZero');\\n\\t\\trequire(_refundAddress != address(0), 'ThrowZeroAddress');\\n\\t\\trequire(\\n\\t\\t\\t_institutionCode.length > 0,\\n\\t\\t\\t'InvalidInstitutionCode'\\n\\t\\t);\\n\\n\\t\\tif (_senderFee != 0) {\\n\\t\\t\\trequire(_senderFeeRecipient != address(0), 'InvalidSenderFeeRecipient');\\n\\t\\t}\\n\\t}\\n\\n\\t/* ##################################################################\\n AGGREGATOR FUNCTIONS\\n ################################################################## */\\n\\t/** @dev See {settle-IGateway}. */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\n\\t\\t// load the token into memory\\n\\t\\taddress token = order[_orderId].token;\\n\\n\\t\\t// subtract sum of amount based on the input _settlePercent\\n\\t\\torder[_orderId].currentBPS -= _settlePercent;\\n\\n\\t\\tif (order[_orderId].currentBPS == 0) {\\n\\t\\t\\t// update the transaction to be fulfilled\\n\\t\\t\\torder[_orderId].isFulfilled = true;\\n\\n\\t\\t\\tif (order[_orderId].senderFee != 0) {\\n\\t\\t\\t\\t// transfer sender fee\\n\\t\\t\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\t\\torder[_orderId].senderFee\\n\\t\\t\\t\\t);\\n\\n\\t\\t\\t\\t// emit event\\n\\t\\t\\t\\temit SenderFeeTransferred(\\n\\t\\t\\t\\t\\torder[_orderId].senderFeeRecipient,\\n\\t\\t\\t\\t\\torder[_orderId].senderFee\\n\\t\\t\\t\\t);\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (order[_orderId].protocolFee != 0) {\\n\\t\\t\\t\\t// transfer protocol fee\\n\\t\\t\\t\\tIERC20(token).transfer(treasuryAddress, order[_orderId].protocolFee);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// transfer to liquidity provider\\n\\t\\tuint256 liquidityProviderAmount = (order[_orderId].amount * _settlePercent) / MAX_BPS;\\n\\t\\torder[_orderId].amount -= liquidityProviderAmount;\\n\\t\\tIERC20(token).transfer(_liquidityProvider, liquidityProviderAmount);\\n\\n\\t\\t// emit settled event\\n\\t\\temit OrderSettled(_splitOrderId, _orderId, _liquidityProvider, _settlePercent);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/** @dev See {refund-IGateway}. */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external onlyAggregator returns (bool) {\\n\\t\\t// ensure the transaction has not been fulfilled\\n\\t\\trequire(!order[_orderId].isFulfilled, 'OrderFulfilled');\\n\\t\\trequire(!order[_orderId].isRefunded, 'OrderRefunded');\\n\\t\\trequire(order[_orderId].protocolFee >= _fee, 'FeeExceedsProtocolFee');\\n\\n\\t\\t// transfer refund fee to the treasury\\n\\t\\tIERC20(order[_orderId].token).transfer(treasuryAddress, _fee);\\n\\n\\t\\t// reset state values\\n\\t\\torder[_orderId].isRefunded = true;\\n\\t\\torder[_orderId].currentBPS = 0;\\n\\n\\t\\t// deduct fee from order amount\\n\\t\\tuint256 refundAmount = order[_orderId].amount + order[_orderId].protocolFee - _fee;\\n\\n\\t\\t// transfer refund amount and sender fee to the refund address\\n\\t\\tIERC20(order[_orderId].token).transfer(\\n\\t\\t\\torder[_orderId].refundAddress,\\n\\t\\t\\trefundAmount + order[_orderId].senderFee\\n\\t\\t);\\n\\n\\t\\t// emit refunded event\\n\\t\\temit OrderRefunded(_fee, _orderId);\\n\\n\\t\\treturn true;\\n\\t}\\n\\n\\t/* ##################################################################\\n VIEW CALLS\\n ################################################################## */\\n\\t/** @dev See {getOrderInfo-IGateway}. */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory) {\\n\\t\\treturn order[_orderId];\\n\\t}\\n\\n\\t/** @dev See {isTokenSupported-IGateway}. */\\n\\tfunction isTokenSupported(address _token) external view returns (bool) {\\n\\t\\tif (_isTokenSupported[_token] == 1) return true;\\n\\t\\treturn false;\\n\\t}\\n\\n\\t/** @dev See {getFeeDetails-IGateway}. */\\n\\tfunction getFeeDetails() external view returns (uint64, uint256) {\\n\\t\\treturn (protocolFeePercent, MAX_BPS);\\n\\t}\\n}\\n\",\"keccak256\":\"0xa3f01b78cf2df55b546caa6b4b8916556a2ebd7c66292b108696aedf6a046507\",\"license\":\"UNLICENSED\"},\"contracts/interfaces/IGatewayV2.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\nimport {SharedStructs} from '../libraries/SharedStructs.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGatewayV2 {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param institutionCode The code of the institution.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tbytes32 institutionCode,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint96 settlePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing transaction metadata.\\n\\t * @param identifier The identifier of the transaction.\\n\\t * @param institution The institution of the transaction.\\n\\t * @param name The name of the transaction.\\n\\t * @param currency The currency of the transaction.\\n\\t * @param liquidityProviderID The ID of the liquidity provider.\\n\\t */\\n\\tstruct TransactionMetadata {\\n\\t\\tbytes8 identifier;\\n\\t\\tbytes8 institution;\\n\\t\\tbytes8 name;\\n\\t\\tbytes8 currency;\\n\\t\\tuint256 liquidityProviderID;\\n\\t}\\n\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _institutionCode The institution code of the sender.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tbytes32 _institutionCode,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n\\n\\t/**\\n\\t * @notice Gets the fee details of Gateway.\\n\\t * @return protocolReward The protocol reward amount.\\n\\t * @return max_bps The maximum basis points.\\n\\t */\\n\\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\\n\\n}\\n\",\"keccak256\":\"0x33ead9c3f413020ceec34266eacff9ed30ecca075535c6ede2e043903fbc1fe3\",\"license\":\"UNLICENSED\"},\"contracts/libraries/SharedStructs.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nlibrary SharedStructs {\\n /**\\n * @dev Struct representing an institution.\\n * @param code The code of the institution.\\n * @param name The name of the institution.\\n */\\n struct Institution {\\n bytes32 code;\\n bytes32 name;\\n }\\n\\n /**\\n * @dev Struct representing an institution by code.\\n * @param name The name of the institution.\\n * @param currency The currency of the institution.\\n */\\n struct InstitutionByCode {\\n bytes32 name;\\n bytes32 currency;\\n }\\n}\",\"keccak256\":\"0x6c50c51961ec2a2740e0f3cbfc2bdb7b80a5c728dec92ebb98d84893ac8adb5a\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":246,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_initialized","offset":0,"slot":"0","type":"t_uint8"},{"astId":249,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_initializing","offset":1,"slot":"0","type":"t_bool"},{"astId":916,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"__gap","offset":0,"slot":"1","type":"t_array(t_uint256)50_storage"},{"astId":118,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_owner","offset":0,"slot":"51","type":"t_address"},{"astId":238,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)49_storage"},{"astId":11,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_pendingOwner","offset":0,"slot":"101","type":"t_address"},{"astId":105,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"__gap","offset":0,"slot":"102","type":"t_array(t_uint256)49_storage"},{"astId":2260,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"MAX_BPS","offset":0,"slot":"151","type":"t_uint256"},{"astId":2262,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"protocolFeePercent","offset":0,"slot":"152","type":"t_uint64"},{"astId":2264,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"treasuryAddress","offset":8,"slot":"152","type":"t_address"},{"astId":2266,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_aggregatorAddress","offset":0,"slot":"153","type":"t_address"},{"astId":2270,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"__gap","offset":0,"slot":"154","type":"t_array(t_uint256)50_storage"},{"astId":2274,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_isTokenSupported","offset":0,"slot":"204","type":"t_mapping(t_address,t_uint256)"},{"astId":2280,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"supportedInstitutions","offset":0,"slot":"205","type":"t_mapping(t_bytes32,t_array(t_struct(Institution)3449_storage)dyn_storage)"},{"astId":2285,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"supportedInstitutionsByCode","offset":0,"slot":"206","type":"t_mapping(t_bytes32,t_struct(InstitutionByCode)3454_storage)"},{"astId":430,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_paused","offset":0,"slot":"207","type":"t_bool"},{"astId":535,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"__gap","offset":0,"slot":"208","type":"t_array(t_uint256)49_storage"},{"astId":2544,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"order","offset":0,"slot":"257","type":"t_mapping(t_bytes32,t_struct(Order)3370_storage)"},{"astId":2548,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"_nonce","offset":0,"slot":"258","type":"t_mapping(t_address,t_uint256)"},{"astId":2552,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"__gap","offset":0,"slot":"259","type":"t_array(t_uint256)50_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_struct(Institution)3449_storage)dyn_storage":{"base":"t_struct(Institution)3449_storage","encoding":"dynamic_array","label":"struct SharedStructs.Institution[]","numberOfBytes":"32"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_bytes32,t_array(t_struct(Institution)3449_storage)dyn_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct SharedStructs.Institution[])","numberOfBytes":"32","value":"t_array(t_struct(Institution)3449_storage)dyn_storage"},"t_mapping(t_bytes32,t_struct(InstitutionByCode)3454_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct SharedStructs.InstitutionByCode)","numberOfBytes":"32","value":"t_struct(InstitutionByCode)3454_storage"},"t_mapping(t_bytes32,t_struct(Order)3370_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct IGatewayV2.Order)","numberOfBytes":"32","value":"t_struct(Order)3370_storage"},"t_struct(Institution)3449_storage":{"encoding":"inplace","label":"struct SharedStructs.Institution","members":[{"astId":3446,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"code","offset":0,"slot":"0","type":"t_bytes32"},{"astId":3448,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"name","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_struct(InstitutionByCode)3454_storage":{"encoding":"inplace","label":"struct SharedStructs.InstitutionByCode","members":[{"astId":3451,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"name","offset":0,"slot":"0","type":"t_bytes32"},{"astId":3453,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"currency","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_struct(Order)3370_storage":{"encoding":"inplace","label":"struct IGatewayV2.Order","members":[{"astId":3351,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"sender","offset":0,"slot":"0","type":"t_address"},{"astId":3353,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"token","offset":0,"slot":"1","type":"t_address"},{"astId":3355,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"senderFeeRecipient","offset":0,"slot":"2","type":"t_address"},{"astId":3357,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"senderFee","offset":0,"slot":"3","type":"t_uint256"},{"astId":3359,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"protocolFee","offset":0,"slot":"4","type":"t_uint256"},{"astId":3361,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"isFulfilled","offset":0,"slot":"5","type":"t_bool"},{"astId":3363,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"isRefunded","offset":1,"slot":"5","type":"t_bool"},{"astId":3365,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"refundAddress","offset":2,"slot":"5","type":"t_address"},{"astId":3367,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"currentBPS","offset":0,"slot":"6","type":"t_uint96"},{"astId":3369,"contract":"contracts/GatewayV2.sol:GatewayV2","label":"amount","offset":0,"slot":"7","type":"t_uint256"}],"numberOfBytes":"256"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_uint8":{"encoding":"inplace","label":"uint8","numberOfBytes":"1"},"t_uint96":{"encoding":"inplace","label":"uint96","numberOfBytes":"12"}}},"userdoc":{"kind":"user","methods":{},"notice":"This contract serves as a gateway for creating orders and managing settlements.","version":1}}},"contracts/interfaces/IGateway.sol":{"IGateway":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"institutionCode","type":"bytes32"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint96","name":"settlePercent","type":"uint96"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_institutionCode","type":"bytes32"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFeeDetails","outputs":[{"internalType":"uint64","name":"protocolReward","type":"uint64"},{"internalType":"uint256","name":"max_bps","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGateway.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_code","type":"bytes32"}],"name":"getSupportedInstitutionByCode","outputs":[{"components":[{"internalType":"bytes32","name":"name","type":"bytes32"},{"internalType":"bytes32","name":"currency","type":"bytes32"}],"internalType":"struct SharedStructs.InstitutionByCode","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_currency","type":"bytes32"}],"name":"getSupportedInstitutions","outputs":[{"components":[{"internalType":"bytes32","name":"code","type":"bytes32"},{"internalType":"bytes32","name":"name","type":"bytes32"}],"internalType":"struct SharedStructs.Institution[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","institutionCode":"The code of the institution.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint96)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}}},"kind":"dev","methods":{"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":{"details":"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.","params":{"_amount":"The amount in the decimal of `_token` to be locked.","_institutionCode":"The institution code of the sender.","_rate":"The rate at which the sender intends to sell `_amount` of `_token`.","_refundAddress":"The address that will receive `_amount` in `_token` when there is a need to refund.","_senderFee":"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.","_senderFeeRecipient":"The address that will receive `_senderFee` in `_token`.","_token":"The address of the token.","messageHash":"The hash of the message."},"returns":{"_orderId":"The ID of the order."}},"getFeeDetails()":{"returns":{"max_bps":"The maximum basis points.","protocolReward":"The protocol reward amount."}},"getOrderInfo(bytes32)":{"params":{"_orderId":"The ID of the order."},"returns":{"_0":"Order The order details."}},"getSupportedInstitutionByCode(bytes32)":{"params":{"_code":"The institution code."},"returns":{"_0":"InstitutionByCode The institution details."}},"getSupportedInstitutions(bytes32)":{"params":{"_currency":"The currency code."},"returns":{"_0":"Institutions An array of institutions."}},"isTokenSupported(address)":{"params":{"_token":"The address of the token to check."},"returns":{"_0":"bool the token is supported."}},"refund(uint256,bytes32)":{"details":"Requirements: - Only aggregators can call this function.","params":{"_fee":"The amount to be deducted from the amount to be refunded.","_orderId":"The ID of the transaction."},"returns":{"_0":"bool the refund is successful."}},"settle(bytes32,bytes32,address,uint64)":{"params":{"_liquidityProvider":"The address of the liquidity provider.","_orderId":"The ID of the transaction.","_settlePercent":"The rate at which the transaction is settled.","_splitOrderId":"The ID of the split order."},"returns":{"_0":"bool the settlement is successful."}}},"title":"IGateway","version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":"d12ff20a","getFeeDetails()":"b810c636","getOrderInfo(bytes32)":"768c6ec0","getSupportedInstitutionByCode(bytes32)":"c2280103","getSupportedInstitutions(bytes32)":"02621338","isTokenSupported(address)":"75151b63","refund(uint256,bytes32)":"71eedb88","settle(bytes32,bytes32,address,uint64)":"f22ee704"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"institutionCode\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"settlePercent\",\"type\":\"uint96\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_institutionCode\",\"type\":\"bytes32\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getFeeDetails\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"protocolReward\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"max_bps\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGateway.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_code\",\"type\":\"bytes32\"}],\"name\":\"getSupportedInstitutionByCode\",\"outputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"currency\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.InstitutionByCode\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_currency\",\"type\":\"bytes32\"}],\"name\":\"getSupportedInstitutions\",\"outputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"code\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"name\",\"type\":\"bytes32\"}],\"internalType\":\"struct SharedStructs.Institution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"institutionCode\":\"The code of the institution.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint96)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}}},\"kind\":\"dev\",\"methods\":{\"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)\":{\"details\":\"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.\",\"params\":{\"_amount\":\"The amount in the decimal of `_token` to be locked.\",\"_institutionCode\":\"The institution code of the sender.\",\"_rate\":\"The rate at which the sender intends to sell `_amount` of `_token`.\",\"_refundAddress\":\"The address that will receive `_amount` in `_token` when there is a need to refund.\",\"_senderFee\":\"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\",\"_senderFeeRecipient\":\"The address that will receive `_senderFee` in `_token`.\",\"_token\":\"The address of the token.\",\"messageHash\":\"The hash of the message.\"},\"returns\":{\"_orderId\":\"The ID of the order.\"}},\"getFeeDetails()\":{\"returns\":{\"max_bps\":\"The maximum basis points.\",\"protocolReward\":\"The protocol reward amount.\"}},\"getOrderInfo(bytes32)\":{\"params\":{\"_orderId\":\"The ID of the order.\"},\"returns\":{\"_0\":\"Order The order details.\"}},\"getSupportedInstitutionByCode(bytes32)\":{\"params\":{\"_code\":\"The institution code.\"},\"returns\":{\"_0\":\"InstitutionByCode The institution details.\"}},\"getSupportedInstitutions(bytes32)\":{\"params\":{\"_currency\":\"The currency code.\"},\"returns\":{\"_0\":\"Institutions An array of institutions.\"}},\"isTokenSupported(address)\":{\"params\":{\"_token\":\"The address of the token to check.\"},\"returns\":{\"_0\":\"bool the token is supported.\"}},\"refund(uint256,bytes32)\":{\"details\":\"Requirements: - Only aggregators can call this function.\",\"params\":{\"_fee\":\"The amount to be deducted from the amount to be refunded.\",\"_orderId\":\"The ID of the transaction.\"},\"returns\":{\"_0\":\"bool the refund is successful.\"}},\"settle(bytes32,bytes32,address,uint64)\":{\"params\":{\"_liquidityProvider\":\"The address of the liquidity provider.\",\"_orderId\":\"The ID of the transaction.\",\"_settlePercent\":\"The rate at which the transaction is settled.\",\"_splitOrderId\":\"The ID of the split order.\"},\"returns\":{\"_0\":\"bool the settlement is successful.\"}}},\"title\":\"IGateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)\":{\"notice\":\"Locks the sender's amount of token into Gateway.\"},\"getFeeDetails()\":{\"notice\":\"Gets the fee details of Gateway.\"},\"getOrderInfo(bytes32)\":{\"notice\":\"Gets the details of an order.\"},\"getSupportedInstitutionByCode(bytes32)\":{\"notice\":\"Gets the details of a supported institution by code.\"},\"getSupportedInstitutions(bytes32)\":{\"notice\":\"Gets the details of supported institutions by currency.\"},\"isTokenSupported(address)\":{\"notice\":\"Checks if a token is supported by Gateway.\"},\"refund(uint256,bytes32)\":{\"notice\":\"Refunds to the specified refundable address.\"},\"settle(bytes32,bytes32,address,uint64)\":{\"notice\":\"Settles a transaction and distributes rewards accordingly.\"}},\"notice\":\"Interface for the Gateway contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IGateway.sol\":\"IGateway\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/interfaces/IGateway.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\nimport {SharedStructs} from '../libraries/SharedStructs.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGateway {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param institutionCode The code of the institution.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tbytes32 institutionCode,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint96 settlePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing transaction metadata.\\n\\t * @param identifier The identifier of the transaction.\\n\\t * @param institution The institution of the transaction.\\n\\t * @param name The name of the transaction.\\n\\t * @param currency The currency of the transaction.\\n\\t * @param liquidityProviderID The ID of the liquidity provider.\\n\\t */\\n\\tstruct TransactionMetadata {\\n\\t\\tbytes8 identifier;\\n\\t\\tbytes8 institution;\\n\\t\\tbytes8 name;\\n\\t\\tbytes8 currency;\\n\\t\\tuint256 liquidityProviderID;\\n\\t}\\n\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _institutionCode The institution code of the sender.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tbytes32 _institutionCode,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n\\n\\t/**\\n\\t * @notice Gets the fee details of Gateway.\\n\\t * @return protocolReward The protocol reward amount.\\n\\t * @return max_bps The maximum basis points.\\n\\t */\\n\\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\\n\\n\\t/**\\n\\t * @notice Gets the details of a supported institution by code.\\n\\t * @param _code The institution code.\\n\\t * @return InstitutionByCode The institution details.\\n\\t */\\n\\tfunction getSupportedInstitutionByCode(\\n\\t\\tbytes32 _code\\n\\t) external view returns (SharedStructs.InstitutionByCode memory);\\n\\n\\t/**\\n\\t * @notice Gets the details of supported institutions by currency.\\n\\t * @param _currency The currency code.\\n\\t * @return Institutions An array of institutions.\\n\\t */\\n\\tfunction getSupportedInstitutions(\\n\\t\\tbytes32 _currency\\n\\t) external view returns (SharedStructs.Institution[] memory);\\n}\\n\",\"keccak256\":\"0x77ba391c63b01a9fd7bf719379efe762a15566708694c52f62dcb4731d3f4821\",\"license\":\"UNLICENSED\"},\"contracts/libraries/SharedStructs.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nlibrary SharedStructs {\\n /**\\n * @dev Struct representing an institution.\\n * @param code The code of the institution.\\n * @param name The name of the institution.\\n */\\n struct Institution {\\n bytes32 code;\\n bytes32 name;\\n }\\n\\n /**\\n * @dev Struct representing an institution by code.\\n * @param name The name of the institution.\\n * @param currency The currency of the institution.\\n */\\n struct InstitutionByCode {\\n bytes32 name;\\n bytes32 currency;\\n }\\n}\",\"keccak256\":\"0x6c50c51961ec2a2740e0f3cbfc2bdb7b80a5c728dec92ebb98d84893ac8adb5a\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":{"notice":"Locks the sender's amount of token into Gateway."},"getFeeDetails()":{"notice":"Gets the fee details of Gateway."},"getOrderInfo(bytes32)":{"notice":"Gets the details of an order."},"getSupportedInstitutionByCode(bytes32)":{"notice":"Gets the details of a supported institution by code."},"getSupportedInstitutions(bytes32)":{"notice":"Gets the details of supported institutions by currency."},"isTokenSupported(address)":{"notice":"Checks if a token is supported by Gateway."},"refund(uint256,bytes32)":{"notice":"Refunds to the specified refundable address."},"settle(bytes32,bytes32,address,uint64)":{"notice":"Settles a transaction and distributes rewards accordingly."}},"notice":"Interface for the Gateway contract.","version":1}}},"contracts/interfaces/IGatewayV2.sol":{"IGatewayV2":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"institutionCode","type":"bytes32"},{"indexed":false,"internalType":"string","name":"messageHash","type":"string"}],"name":"OrderCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"}],"name":"OrderRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"splitOrderId","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"orderId","type":"bytes32"},{"indexed":true,"internalType":"address","name":"liquidityProvider","type":"address"},{"indexed":false,"internalType":"uint96","name":"settlePercent","type":"uint96"}],"name":"OrderSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SenderFeeTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_institutionCode","type":"bytes32"},{"internalType":"uint96","name":"_rate","type":"uint96"},{"internalType":"address","name":"_senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"_senderFee","type":"uint256"},{"internalType":"address","name":"_refundAddress","type":"address"},{"internalType":"string","name":"messageHash","type":"string"}],"name":"createOrder","outputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFeeDetails","outputs":[{"internalType":"uint64","name":"protocolReward","type":"uint64"},{"internalType":"uint256","name":"max_bps","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"getOrderInfo","outputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"senderFeeRecipient","type":"address"},{"internalType":"uint256","name":"senderFee","type":"uint256"},{"internalType":"uint256","name":"protocolFee","type":"uint256"},{"internalType":"bool","name":"isFulfilled","type":"bool"},{"internalType":"bool","name":"isRefunded","type":"bool"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint96","name":"currentBPS","type":"uint96"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IGatewayV2.Order","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isTokenSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"}],"name":"refund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_splitOrderId","type":"bytes32"},{"internalType":"bytes32","name":"_orderId","type":"bytes32"},{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint64","name":"_settlePercent","type":"uint64"}],"name":"settle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"events":{"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)":{"details":"Emitted when a deposit is made.","params":{"amount":"The amount of the deposit.","institutionCode":"The code of the institution.","messageHash":"The hash of the message.","orderId":"The ID of the order.","rate":"The rate at which the deposit is made.","sender":"The address of the sender.","token":"The address of the deposited token."}},"OrderRefunded(uint256,bytes32)":{"details":"Emitted when an aggregator refunds a transaction.","params":{"fee":"The fee deducted from the refund amount.","orderId":"The ID of the order."}},"OrderSettled(bytes32,bytes32,address,uint96)":{"details":"Emitted when an aggregator settles a transaction.","params":{"liquidityProvider":"The address of the liquidity provider.","orderId":"The ID of the order.","settlePercent":"The percentage at which the transaction is settled.","splitOrderId":"The ID of the split order."}},"SenderFeeTransferred(address,uint256)":{"details":"Emitted when the sender's fee is transferred.","params":{"amount":"The amount of the fee transferred.","sender":"The address of the sender."}}},"kind":"dev","methods":{"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":{"details":"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.","params":{"_amount":"The amount in the decimal of `_token` to be locked.","_institutionCode":"The institution code of the sender.","_rate":"The rate at which the sender intends to sell `_amount` of `_token`.","_refundAddress":"The address that will receive `_amount` in `_token` when there is a need to refund.","_senderFee":"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.","_senderFeeRecipient":"The address that will receive `_senderFee` in `_token`.","_token":"The address of the token.","messageHash":"The hash of the message."},"returns":{"_orderId":"The ID of the order."}},"getFeeDetails()":{"returns":{"max_bps":"The maximum basis points.","protocolReward":"The protocol reward amount."}},"getOrderInfo(bytes32)":{"params":{"_orderId":"The ID of the order."},"returns":{"_0":"Order The order details."}},"isTokenSupported(address)":{"params":{"_token":"The address of the token to check."},"returns":{"_0":"bool the token is supported."}},"refund(uint256,bytes32)":{"details":"Requirements: - Only aggregators can call this function.","params":{"_fee":"The amount to be deducted from the amount to be refunded.","_orderId":"The ID of the transaction."},"returns":{"_0":"bool the refund is successful."}},"settle(bytes32,bytes32,address,uint64)":{"params":{"_liquidityProvider":"The address of the liquidity provider.","_orderId":"The ID of the transaction.","_settlePercent":"The rate at which the transaction is settled.","_splitOrderId":"The ID of the split order."},"returns":{"_0":"bool the settlement is successful."}}},"title":"IGateway","version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"gasEstimates":null,"methodIdentifiers":{"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":"d12ff20a","getFeeDetails()":"b810c636","getOrderInfo(bytes32)":"768c6ec0","isTokenSupported(address)":"75151b63","refund(uint256,bytes32)":"71eedb88","settle(bytes32,bytes32,address,uint64)":"f22ee704"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"rate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"institutionCode\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"OrderCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"}],\"name\":\"OrderRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"splitOrderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"orderId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"liquidityProvider\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"settlePercent\",\"type\":\"uint96\"}],\"name\":\"OrderSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"SenderFeeTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_institutionCode\",\"type\":\"bytes32\"},{\"internalType\":\"uint96\",\"name\":\"_rate\",\"type\":\"uint96\"},{\"internalType\":\"address\",\"name\":\"_senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_senderFee\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_refundAddress\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"messageHash\",\"type\":\"string\"}],\"name\":\"createOrder\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getFeeDetails\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"protocolReward\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"max_bps\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"getOrderInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"senderFeeRecipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"protocolFee\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isFulfilled\",\"type\":\"bool\"},{\"internalType\":\"bool\",\"name\":\"isRefunded\",\"type\":\"bool\"},{\"internalType\":\"address\",\"name\":\"refundAddress\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"currentBPS\",\"type\":\"uint96\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"internalType\":\"struct IGatewayV2.Order\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"isTokenSupported\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"}],\"name\":\"refund\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_splitOrderId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_orderId\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"_liquidityProvider\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_settlePercent\",\"type\":\"uint64\"}],\"name\":\"settle\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"OrderCreated(address,address,uint256,uint256,bytes32,uint256,bytes32,string)\":{\"details\":\"Emitted when a deposit is made.\",\"params\":{\"amount\":\"The amount of the deposit.\",\"institutionCode\":\"The code of the institution.\",\"messageHash\":\"The hash of the message.\",\"orderId\":\"The ID of the order.\",\"rate\":\"The rate at which the deposit is made.\",\"sender\":\"The address of the sender.\",\"token\":\"The address of the deposited token.\"}},\"OrderRefunded(uint256,bytes32)\":{\"details\":\"Emitted when an aggregator refunds a transaction.\",\"params\":{\"fee\":\"The fee deducted from the refund amount.\",\"orderId\":\"The ID of the order.\"}},\"OrderSettled(bytes32,bytes32,address,uint96)\":{\"details\":\"Emitted when an aggregator settles a transaction.\",\"params\":{\"liquidityProvider\":\"The address of the liquidity provider.\",\"orderId\":\"The ID of the order.\",\"settlePercent\":\"The percentage at which the transaction is settled.\",\"splitOrderId\":\"The ID of the split order.\"}},\"SenderFeeTransferred(address,uint256)\":{\"details\":\"Emitted when the sender's fee is transferred.\",\"params\":{\"amount\":\"The amount of the fee transferred.\",\"sender\":\"The address of the sender.\"}}},\"kind\":\"dev\",\"methods\":{\"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)\":{\"details\":\"Requirements: - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call. - `_token` must be an acceptable token. See {isTokenSupported}. - `amount` must be greater than minimum. - `_refundAddress` refund address must not be zero address.\",\"params\":{\"_amount\":\"The amount in the decimal of `_token` to be locked.\",\"_institutionCode\":\"The institution code of the sender.\",\"_rate\":\"The rate at which the sender intends to sell `_amount` of `_token`.\",\"_refundAddress\":\"The address that will receive `_amount` in `_token` when there is a need to refund.\",\"_senderFee\":\"The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\",\"_senderFeeRecipient\":\"The address that will receive `_senderFee` in `_token`.\",\"_token\":\"The address of the token.\",\"messageHash\":\"The hash of the message.\"},\"returns\":{\"_orderId\":\"The ID of the order.\"}},\"getFeeDetails()\":{\"returns\":{\"max_bps\":\"The maximum basis points.\",\"protocolReward\":\"The protocol reward amount.\"}},\"getOrderInfo(bytes32)\":{\"params\":{\"_orderId\":\"The ID of the order.\"},\"returns\":{\"_0\":\"Order The order details.\"}},\"isTokenSupported(address)\":{\"params\":{\"_token\":\"The address of the token to check.\"},\"returns\":{\"_0\":\"bool the token is supported.\"}},\"refund(uint256,bytes32)\":{\"details\":\"Requirements: - Only aggregators can call this function.\",\"params\":{\"_fee\":\"The amount to be deducted from the amount to be refunded.\",\"_orderId\":\"The ID of the transaction.\"},\"returns\":{\"_0\":\"bool the refund is successful.\"}},\"settle(bytes32,bytes32,address,uint64)\":{\"params\":{\"_liquidityProvider\":\"The address of the liquidity provider.\",\"_orderId\":\"The ID of the transaction.\",\"_settlePercent\":\"The rate at which the transaction is settled.\",\"_splitOrderId\":\"The ID of the split order.\"},\"returns\":{\"_0\":\"bool the settlement is successful.\"}}},\"title\":\"IGateway\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)\":{\"notice\":\"Locks the sender's amount of token into Gateway.\"},\"getFeeDetails()\":{\"notice\":\"Gets the fee details of Gateway.\"},\"getOrderInfo(bytes32)\":{\"notice\":\"Gets the details of an order.\"},\"isTokenSupported(address)\":{\"notice\":\"Checks if a token is supported by Gateway.\"},\"refund(uint256,bytes32)\":{\"notice\":\"Refunds to the specified refundable address.\"},\"settle(bytes32,bytes32,address,uint64)\":{\"notice\":\"Settles a transaction and distributes rewards accordingly.\"}},\"notice\":\"Interface for the Gateway contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IGatewayV2.sol\":\"IGatewayV2\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"contracts/interfaces/IGatewayV2.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';\\n\\nimport {SharedStructs} from '../libraries/SharedStructs.sol';\\n\\n/**\\n * @title IGateway\\n * @notice Interface for the Gateway contract.\\n */\\ninterface IGatewayV2 {\\n\\t/* ##################################################################\\n EVENTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Emitted when a deposit is made.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the deposited token.\\n\\t * @param amount The amount of the deposit.\\n\\t * @param orderId The ID of the order.\\n\\t * @param rate The rate at which the deposit is made.\\n\\t * @param institutionCode The code of the institution.\\n\\t * @param messageHash The hash of the message.\\n\\t */\\n\\tevent OrderCreated(\\n\\t\\taddress indexed sender,\\n\\t\\taddress indexed token,\\n\\t\\tuint256 indexed amount,\\n\\t\\tuint256 protocolFee,\\n\\t\\tbytes32 orderId,\\n\\t\\tuint256 rate,\\n\\t\\tbytes32 institutionCode,\\n\\t\\tstring messageHash\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator settles a transaction.\\n\\t * @param splitOrderId The ID of the split order.\\n\\t * @param orderId The ID of the order.\\n\\t * @param liquidityProvider The address of the liquidity provider.\\n\\t * @param settlePercent The percentage at which the transaction is settled.\\n\\t */\\n\\tevent OrderSettled(\\n\\t\\tbytes32 splitOrderId,\\n\\t\\tbytes32 indexed orderId,\\n\\t\\taddress indexed liquidityProvider,\\n\\t\\tuint96 settlePercent\\n\\t);\\n\\n\\t/**\\n\\t * @dev Emitted when an aggregator refunds a transaction.\\n\\t * @param fee The fee deducted from the refund amount.\\n\\t * @param orderId The ID of the order.\\n\\t */\\n\\tevent OrderRefunded(uint256 fee, bytes32 indexed orderId);\\n\\n\\t/**\\n\\t * @dev Emitted when the sender's fee is transferred.\\n\\t * @param sender The address of the sender.\\n\\t * @param amount The amount of the fee transferred.\\n\\t */\\n\\tevent SenderFeeTransferred(address indexed sender, uint256 indexed amount);\\n\\n\\t/* ##################################################################\\n STRUCTS\\n ################################################################## */\\n\\t/**\\n\\t * @dev Struct representing transaction metadata.\\n\\t * @param identifier The identifier of the transaction.\\n\\t * @param institution The institution of the transaction.\\n\\t * @param name The name of the transaction.\\n\\t * @param currency The currency of the transaction.\\n\\t * @param liquidityProviderID The ID of the liquidity provider.\\n\\t */\\n\\tstruct TransactionMetadata {\\n\\t\\tbytes8 identifier;\\n\\t\\tbytes8 institution;\\n\\t\\tbytes8 name;\\n\\t\\tbytes8 currency;\\n\\t\\tuint256 liquidityProviderID;\\n\\t}\\n\\n\\t/**\\n\\t * @dev Struct representing an order.\\n\\t * @param sender The address of the sender.\\n\\t * @param token The address of the token.\\n\\t * @param senderFeeRecipient The address of the sender fee recipient.\\n\\t * @param senderFee The fee to be paid to the sender fee recipient.\\n\\t * @param protocolFee The protocol fee to be paid.\\n\\t * @param isFulfilled Whether the order is fulfilled.\\n\\t * @param isRefunded Whether the order is refunded.\\n\\t * @param refundAddress The address to which the refund is made.\\n\\t * @param currentBPS The current basis points.\\n\\t * @param amount The amount of the order.\\n\\t */\\n\\tstruct Order {\\n\\t\\taddress sender;\\n\\t\\taddress token;\\n\\t\\taddress senderFeeRecipient;\\n\\t\\tuint256 senderFee;\\n\\t\\tuint256 protocolFee;\\n\\t\\tbool isFulfilled;\\n\\t\\tbool isRefunded;\\n\\t\\taddress refundAddress;\\n\\t\\tuint96 currentBPS;\\n\\t\\tuint256 amount;\\n\\t}\\n\\n\\t/* ##################################################################\\n EXTERNAL CALLS\\n ################################################################## */\\n\\t/**\\n\\t * @notice Locks the sender's amount of token into Gateway.\\n\\t * @dev Requirements:\\n\\t * - `msg.sender` must approve Gateway contract on `_token` of at least `amount` before function call.\\n\\t * - `_token` must be an acceptable token. See {isTokenSupported}.\\n\\t * - `amount` must be greater than minimum.\\n\\t * - `_refundAddress` refund address must not be zero address.\\n\\t * @param _token The address of the token.\\n\\t * @param _amount The amount in the decimal of `_token` to be locked.\\n\\t * @param _institutionCode The institution code of the sender.\\n\\t * @param _rate The rate at which the sender intends to sell `_amount` of `_token`.\\n\\t * @param _senderFeeRecipient The address that will receive `_senderFee` in `_token`.\\n\\t * @param _senderFee The amount in the decimal of `_token` that will be paid to `_senderFeeRecipient`.\\n\\t * @param _refundAddress The address that will receive `_amount` in `_token` when there is a need to refund.\\n\\t * @param messageHash The hash of the message.\\n\\t * @return _orderId The ID of the order.\\n\\t */\\n\\tfunction createOrder(\\n\\t\\taddress _token,\\n\\t\\tuint256 _amount,\\n\\t\\tbytes32 _institutionCode,\\n\\t\\tuint96 _rate,\\n\\t\\taddress _senderFeeRecipient,\\n\\t\\tuint256 _senderFee,\\n\\t\\taddress _refundAddress,\\n\\t\\tstring calldata messageHash\\n\\t) external returns (bytes32 _orderId);\\n\\n\\t/**\\n\\t * @notice Settles a transaction and distributes rewards accordingly.\\n\\t * @param _splitOrderId The ID of the split order.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @param _liquidityProvider The address of the liquidity provider.\\n\\t * @param _settlePercent The rate at which the transaction is settled.\\n\\t * @return bool the settlement is successful.\\n\\t */\\n\\tfunction settle(\\n\\t\\tbytes32 _splitOrderId,\\n\\t\\tbytes32 _orderId,\\n\\t\\taddress _liquidityProvider,\\n\\t\\tuint64 _settlePercent\\n\\t) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Refunds to the specified refundable address.\\n\\t * @dev Requirements:\\n\\t * - Only aggregators can call this function.\\n\\t * @param _fee The amount to be deducted from the amount to be refunded.\\n\\t * @param _orderId The ID of the transaction.\\n\\t * @return bool the refund is successful.\\n\\t */\\n\\tfunction refund(uint256 _fee, bytes32 _orderId) external returns (bool);\\n\\n\\t/**\\n\\t * @notice Checks if a token is supported by Gateway.\\n\\t * @param _token The address of the token to check.\\n\\t * @return bool the token is supported.\\n\\t */\\n\\tfunction isTokenSupported(address _token) external view returns (bool);\\n\\n\\t/**\\n\\t * @notice Gets the details of an order.\\n\\t * @param _orderId The ID of the order.\\n\\t * @return Order The order details.\\n\\t */\\n\\tfunction getOrderInfo(bytes32 _orderId) external view returns (Order memory);\\n\\n\\t/**\\n\\t * @notice Gets the fee details of Gateway.\\n\\t * @return protocolReward The protocol reward amount.\\n\\t * @return max_bps The maximum basis points.\\n\\t */\\n\\tfunction getFeeDetails() external view returns (uint64 protocolReward, uint256 max_bps);\\n\\n}\\n\",\"keccak256\":\"0x33ead9c3f413020ceec34266eacff9ed30ecca075535c6ede2e043903fbc1fe3\",\"license\":\"UNLICENSED\"},\"contracts/libraries/SharedStructs.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nlibrary SharedStructs {\\n /**\\n * @dev Struct representing an institution.\\n * @param code The code of the institution.\\n * @param name The name of the institution.\\n */\\n struct Institution {\\n bytes32 code;\\n bytes32 name;\\n }\\n\\n /**\\n * @dev Struct representing an institution by code.\\n * @param name The name of the institution.\\n * @param currency The currency of the institution.\\n */\\n struct InstitutionByCode {\\n bytes32 name;\\n bytes32 currency;\\n }\\n}\",\"keccak256\":\"0x6c50c51961ec2a2740e0f3cbfc2bdb7b80a5c728dec92ebb98d84893ac8adb5a\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{"createOrder(address,uint256,bytes32,uint96,address,uint256,address,string)":{"notice":"Locks the sender's amount of token into Gateway."},"getFeeDetails()":{"notice":"Gets the fee details of Gateway."},"getOrderInfo(bytes32)":{"notice":"Gets the details of an order."},"isTokenSupported(address)":{"notice":"Checks if a token is supported by Gateway."},"refund(uint256,bytes32)":{"notice":"Refunds to the specified refundable address."},"settle(bytes32,bytes32,address,uint64)":{"notice":"Settles a transaction and distributes rewards accordingly."}},"notice":"Interface for the Gateway contract.","version":1}}},"contracts/libraries/SharedStructs.sol":{"SharedStructs":{"abi":[],"devdoc":{"kind":"dev","methods":{},"version":1},"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122018c796264cd6f686e5056fd2234e702189b8345766e6fd8b962c4406475a9a8664736f6c63430008120033","opcodes":"PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR 0xC7 SWAP7 0x26 0x4C 0xD6 0xF6 DUP7 0xE5 SDIV PUSH16 0xD2234E702189B8345766E6FD8B962C44 MOD SELFBALANCE GAS SWAP11 DUP7 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ","sourceMap":"65:522:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122018c796264cd6f686e5056fd2234e702189b8345766e6fd8b962c4406475a9a8664736f6c63430008120033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR 0xC7 SWAP7 0x26 0x4C 0xD6 0xF6 DUP7 0xE5 SDIV PUSH16 0xD2234E702189B8345766E6FD8B962C44 MOD SELFBALANCE GAS SWAP11 DUP7 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ","sourceMap":"65:522:15:-:0;;;;;;;;"},"gasEstimates":{"creation":{"codeDepositCost":"17200","executionCost":"97","totalCost":"17297"}},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/libraries/SharedStructs.sol\":\"SharedStructs\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/libraries/SharedStructs.sol\":{\"content\":\"// SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nlibrary SharedStructs {\\n /**\\n * @dev Struct representing an institution.\\n * @param code The code of the institution.\\n * @param name The name of the institution.\\n */\\n struct Institution {\\n bytes32 code;\\n bytes32 name;\\n }\\n\\n /**\\n * @dev Struct representing an institution by code.\\n * @param name The name of the institution.\\n * @param currency The currency of the institution.\\n */\\n struct InstitutionByCode {\\n bytes32 name;\\n bytes32 currency;\\n }\\n}\",\"keccak256\":\"0x6c50c51961ec2a2740e0f3cbfc2bdb7b80a5c728dec92ebb98d84893ac8adb5a\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[],"types":null},"userdoc":{"kind":"user","methods":{},"version":1}}},"contracts/mocks/MockUSDC.sol":{"MockUSDT":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"details":"Mock mintable USDC","events":{"Approval(address,address,uint256)":{"details":"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."},"Transfer(address,address,uint256)":{"details":"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."}},"kind":"dev","methods":{"allowance(address,address)":{"details":"See {IERC20-allowance}."},"approve(address,uint256)":{"details":"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."},"balanceOf(address)":{"details":"See {IERC20-balanceOf}."},"decimals()":{"details":"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."},"decreaseAllowance(address,uint256)":{"details":"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."},"increaseAllowance(address,uint256)":{"details":"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."},"name()":{"details":"Returns the name of the token."},"symbol()":{"details":"Returns the symbol of the token, usually a shorter version of the name."},"totalSupply()":{"details":"See {IERC20-totalSupply}."},"transfer(address,uint256)":{"details":"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."},"transferFrom(address,address,uint256)":{"details":"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."}},"version":1},"evm":{"bytecode":{"functionDebugData":{"@_3476":{"entryPoint":null,"id":3476,"parameterSlots":0,"returnSlots":0},"@_962":{"entryPoint":null,"id":962,"parameterSlots":2,"returnSlots":0},"@_afterTokenTransfer_1503":{"entryPoint":568,"id":1503,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1492":{"entryPoint":563,"id":1492,"parameterSlots":3,"returnSlots":0},"@_mint_1321":{"entryPoint":198,"id":1321,"parameterSlots":2,"returnSlots":0},"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack":{"entryPoint":1496,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":1675,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1535,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":1692,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_t_string_storage":{"entryPoint":731,"id":null,"parameterSlots":1,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":573,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":1438,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1616,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_t_string_storage":{"entryPoint":1052,"id":null,"parameterSlots":3,"returnSlots":0},"cleanup_t_uint256":{"entryPoint":867,"id":null,"parameterSlots":1,"returnSlots":1},"clear_storage_range_t_bytes1":{"entryPoint":1013,"id":null,"parameterSlots":2,"returnSlots":0},"convert_t_uint256_to_t_uint256":{"entryPoint":887,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":1207,"id":null,"parameterSlots":2,"returnSlots":0},"divide_by_32_ceil":{"entryPoint":752,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":678,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":1177,"id":null,"parameterSlots":2,"returnSlots":1},"identity":{"entryPoint":877,"id":null,"parameterSlots":1,"returnSlots":1},"mask_bytes_dynamic":{"entryPoint":1145,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1569,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x22":{"entryPoint":631,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":584,"id":null,"parameterSlots":0,"returnSlots":0},"prepare_store_t_uint256":{"entryPoint":927,"id":null,"parameterSlots":1,"returnSlots":1},"shift_left_dynamic":{"entryPoint":768,"id":null,"parameterSlots":2,"returnSlots":1},"shift_right_unsigned_dynamic":{"entryPoint":1132,"id":null,"parameterSlots":2,"returnSlots":1},"storage_set_to_zero_t_uint256":{"entryPoint":985,"id":null,"parameterSlots":2,"returnSlots":0},"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e":{"entryPoint":1455,"id":null,"parameterSlots":1,"returnSlots":0},"update_byte_slice_dynamic32":{"entryPoint":781,"id":null,"parameterSlots":3,"returnSlots":1},"update_storage_value_t_uint256_to_t_uint256":{"entryPoint":937,"id":null,"parameterSlots":3,"returnSlots":0},"zero_value_for_split_t_uint256":{"entryPoint":980,"id":null,"parameterSlots":0,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:7125:17","statements":[{"body":{"nodeType":"YulBlock","src":"66:40:17","statements":[{"nodeType":"YulAssignment","src":"77:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"87:5:17"},"nodeType":"YulFunctionCall","src":"87:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"77:6:17"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"49:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"59:6:17","type":""}],"src":"7:99:17"},{"body":{"nodeType":"YulBlock","src":"140:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"157:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"160:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"150:6:17"},"nodeType":"YulFunctionCall","src":"150:88:17"},"nodeType":"YulExpressionStatement","src":"150:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"254:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"257:4:17","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"247:6:17"},"nodeType":"YulFunctionCall","src":"247:15:17"},"nodeType":"YulExpressionStatement","src":"247:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"278:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"281:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"271:6:17"},"nodeType":"YulFunctionCall","src":"271:15:17"},"nodeType":"YulExpressionStatement","src":"271:15:17"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"112:180:17"},{"body":{"nodeType":"YulBlock","src":"326:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"343:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"346:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"336:6:17"},"nodeType":"YulFunctionCall","src":"336:88:17"},"nodeType":"YulExpressionStatement","src":"336:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"440:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"443:4:17","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"433:6:17"},"nodeType":"YulFunctionCall","src":"433:15:17"},"nodeType":"YulExpressionStatement","src":"433:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"464:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"467:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"457:6:17"},"nodeType":"YulFunctionCall","src":"457:15:17"},"nodeType":"YulExpressionStatement","src":"457:15:17"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"298:180:17"},{"body":{"nodeType":"YulBlock","src":"535:269:17","statements":[{"nodeType":"YulAssignment","src":"545:22:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"559:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"565:1:17","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"555:3:17"},"nodeType":"YulFunctionCall","src":"555:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"545:6:17"}]},{"nodeType":"YulVariableDeclaration","src":"576:38:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"606:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"612:1:17","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"602:3:17"},"nodeType":"YulFunctionCall","src":"602:12:17"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"580:18:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"653:51:17","statements":[{"nodeType":"YulAssignment","src":"667:27:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"681:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"689:4:17","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"677:3:17"},"nodeType":"YulFunctionCall","src":"677:17:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"667:6:17"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"633:18:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"626:6:17"},"nodeType":"YulFunctionCall","src":"626:26:17"},"nodeType":"YulIf","src":"623:81:17"},{"body":{"nodeType":"YulBlock","src":"756:42:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"770:16:17"},"nodeType":"YulFunctionCall","src":"770:18:17"},"nodeType":"YulExpressionStatement","src":"770:18:17"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"720:18:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"743:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"751:2:17","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"740:2:17"},"nodeType":"YulFunctionCall","src":"740:14:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"717:2:17"},"nodeType":"YulFunctionCall","src":"717:38:17"},"nodeType":"YulIf","src":"714:84:17"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"519:4:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"528:6:17","type":""}],"src":"484:320:17"},{"body":{"nodeType":"YulBlock","src":"864:87:17","statements":[{"nodeType":"YulAssignment","src":"874:11:17","value":{"name":"ptr","nodeType":"YulIdentifier","src":"882:3:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"874:4:17"}]},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"902:1:17","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"905:3:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"895:6:17"},"nodeType":"YulFunctionCall","src":"895:14:17"},"nodeType":"YulExpressionStatement","src":"895:14:17"},{"nodeType":"YulAssignment","src":"918:26:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"936:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"939:4:17","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"926:9:17"},"nodeType":"YulFunctionCall","src":"926:18:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"918:4:17"}]}]},"name":"array_dataslot_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"851:3:17","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"859:4:17","type":""}],"src":"810:141:17"},{"body":{"nodeType":"YulBlock","src":"1001:49:17","statements":[{"nodeType":"YulAssignment","src":"1011:33:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1029:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"1036:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1025:3:17"},"nodeType":"YulFunctionCall","src":"1025:14:17"},{"kind":"number","nodeType":"YulLiteral","src":"1041:2:17","type":"","value":"32"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"1021:3:17"},"nodeType":"YulFunctionCall","src":"1021:23:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"1011:6:17"}]}]},"name":"divide_by_32_ceil","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"984:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"994:6:17","type":""}],"src":"957:93:17"},{"body":{"nodeType":"YulBlock","src":"1109:54:17","statements":[{"nodeType":"YulAssignment","src":"1119:37:17","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"1144:4:17"},{"name":"value","nodeType":"YulIdentifier","src":"1150:5:17"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1140:3:17"},"nodeType":"YulFunctionCall","src":"1140:16:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"1119:8:17"}]}]},"name":"shift_left_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"1084:4:17","type":""},{"name":"value","nodeType":"YulTypedName","src":"1090:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"1100:8:17","type":""}],"src":"1056:107:17"},{"body":{"nodeType":"YulBlock","src":"1245:317:17","statements":[{"nodeType":"YulVariableDeclaration","src":"1255:35:17","value":{"arguments":[{"name":"shiftBytes","nodeType":"YulIdentifier","src":"1276:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"1288:1:17","type":"","value":"8"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"1272:3:17"},"nodeType":"YulFunctionCall","src":"1272:18:17"},"variables":[{"name":"shiftBits","nodeType":"YulTypedName","src":"1259:9:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1299:109:17","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"1330:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1341:66:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"1311:18:17"},"nodeType":"YulFunctionCall","src":"1311:97:17"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"1303:4:17","type":""}]},{"nodeType":"YulAssignment","src":"1417:51:17","value":{"arguments":[{"name":"shiftBits","nodeType":"YulIdentifier","src":"1448:9:17"},{"name":"toInsert","nodeType":"YulIdentifier","src":"1459:8:17"}],"functionName":{"name":"shift_left_dynamic","nodeType":"YulIdentifier","src":"1429:18:17"},"nodeType":"YulFunctionCall","src":"1429:39:17"},"variableNames":[{"name":"toInsert","nodeType":"YulIdentifier","src":"1417:8:17"}]},{"nodeType":"YulAssignment","src":"1477:30:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1490:5:17"},{"arguments":[{"name":"mask","nodeType":"YulIdentifier","src":"1501:4:17"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1497:3:17"},"nodeType":"YulFunctionCall","src":"1497:9:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1486:3:17"},"nodeType":"YulFunctionCall","src":"1486:21:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"1477:5:17"}]},{"nodeType":"YulAssignment","src":"1516:40:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1529:5:17"},{"arguments":[{"name":"toInsert","nodeType":"YulIdentifier","src":"1540:8:17"},{"name":"mask","nodeType":"YulIdentifier","src":"1550:4:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1536:3:17"},"nodeType":"YulFunctionCall","src":"1536:19:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"1526:2:17"},"nodeType":"YulFunctionCall","src":"1526:30:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"1516:6:17"}]}]},"name":"update_byte_slice_dynamic32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1206:5:17","type":""},{"name":"shiftBytes","nodeType":"YulTypedName","src":"1213:10:17","type":""},{"name":"toInsert","nodeType":"YulTypedName","src":"1225:8:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"1238:6:17","type":""}],"src":"1169:393:17"},{"body":{"nodeType":"YulBlock","src":"1613:32:17","statements":[{"nodeType":"YulAssignment","src":"1623:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"1634:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1623:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1595:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1605:7:17","type":""}],"src":"1568:77:17"},{"body":{"nodeType":"YulBlock","src":"1683:28:17","statements":[{"nodeType":"YulAssignment","src":"1693:12:17","value":{"name":"value","nodeType":"YulIdentifier","src":"1700:5:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"1693:3:17"}]}]},"name":"identity","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1669:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"1679:3:17","type":""}],"src":"1651:60:17"},{"body":{"nodeType":"YulBlock","src":"1777:82:17","statements":[{"nodeType":"YulAssignment","src":"1787:66:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1845:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"1827:17:17"},"nodeType":"YulFunctionCall","src":"1827:24:17"}],"functionName":{"name":"identity","nodeType":"YulIdentifier","src":"1818:8:17"},"nodeType":"YulFunctionCall","src":"1818:34:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"1800:17:17"},"nodeType":"YulFunctionCall","src":"1800:53:17"},"variableNames":[{"name":"converted","nodeType":"YulIdentifier","src":"1787:9:17"}]}]},"name":"convert_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1757:5:17","type":""}],"returnVariables":[{"name":"converted","nodeType":"YulTypedName","src":"1767:9:17","type":""}],"src":"1717:142:17"},{"body":{"nodeType":"YulBlock","src":"1912:28:17","statements":[{"nodeType":"YulAssignment","src":"1922:12:17","value":{"name":"value","nodeType":"YulIdentifier","src":"1929:5:17"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"1922:3:17"}]}]},"name":"prepare_store_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1898:5:17","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"1908:3:17","type":""}],"src":"1865:75:17"},{"body":{"nodeType":"YulBlock","src":"2022:193:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2032:63:17","value":{"arguments":[{"name":"value_0","nodeType":"YulIdentifier","src":"2087:7:17"}],"functionName":{"name":"convert_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"2056:30:17"},"nodeType":"YulFunctionCall","src":"2056:39:17"},"variables":[{"name":"convertedValue_0","nodeType":"YulTypedName","src":"2036:16:17","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2111:4:17"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2151:4:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"2145:5:17"},"nodeType":"YulFunctionCall","src":"2145:11:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2158:6:17"},{"arguments":[{"name":"convertedValue_0","nodeType":"YulIdentifier","src":"2190:16:17"}],"functionName":{"name":"prepare_store_t_uint256","nodeType":"YulIdentifier","src":"2166:23:17"},"nodeType":"YulFunctionCall","src":"2166:41:17"}],"functionName":{"name":"update_byte_slice_dynamic32","nodeType":"YulIdentifier","src":"2117:27:17"},"nodeType":"YulFunctionCall","src":"2117:91:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2104:6:17"},"nodeType":"YulFunctionCall","src":"2104:105:17"},"nodeType":"YulExpressionStatement","src":"2104:105:17"}]},"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"1999:4:17","type":""},{"name":"offset","nodeType":"YulTypedName","src":"2005:6:17","type":""},{"name":"value_0","nodeType":"YulTypedName","src":"2013:7:17","type":""}],"src":"1946:269:17"},{"body":{"nodeType":"YulBlock","src":"2270:24:17","statements":[{"nodeType":"YulAssignment","src":"2280:8:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2287:1:17","type":"","value":"0"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"2280:3:17"}]}]},"name":"zero_value_for_split_t_uint256","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"2266:3:17","type":""}],"src":"2221:73:17"},{"body":{"nodeType":"YulBlock","src":"2353:136:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2363:46:17","value":{"arguments":[],"functionName":{"name":"zero_value_for_split_t_uint256","nodeType":"YulIdentifier","src":"2377:30:17"},"nodeType":"YulFunctionCall","src":"2377:32:17"},"variables":[{"name":"zero_0","nodeType":"YulTypedName","src":"2367:6:17","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"2462:4:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2468:6:17"},{"name":"zero_0","nodeType":"YulIdentifier","src":"2476:6:17"}],"functionName":{"name":"update_storage_value_t_uint256_to_t_uint256","nodeType":"YulIdentifier","src":"2418:43:17"},"nodeType":"YulFunctionCall","src":"2418:65:17"},"nodeType":"YulExpressionStatement","src":"2418:65:17"}]},"name":"storage_set_to_zero_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"2339:4:17","type":""},{"name":"offset","nodeType":"YulTypedName","src":"2345:6:17","type":""}],"src":"2300:189:17"},{"body":{"nodeType":"YulBlock","src":"2545:136:17","statements":[{"body":{"nodeType":"YulBlock","src":"2612:63:17","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2656:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2663:1:17","type":"","value":"0"}],"functionName":{"name":"storage_set_to_zero_t_uint256","nodeType":"YulIdentifier","src":"2626:29:17"},"nodeType":"YulFunctionCall","src":"2626:39:17"},"nodeType":"YulExpressionStatement","src":"2626:39:17"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2565:5:17"},{"name":"end","nodeType":"YulIdentifier","src":"2572:3:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2562:2:17"},"nodeType":"YulFunctionCall","src":"2562:14:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2577:26:17","statements":[{"nodeType":"YulAssignment","src":"2579:22:17","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2592:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"2599:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2588:3:17"},"nodeType":"YulFunctionCall","src":"2588:13:17"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2579:5:17"}]}]},"pre":{"nodeType":"YulBlock","src":"2559:2:17","statements":[]},"src":"2555:120:17"}]},"name":"clear_storage_range_t_bytes1","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nodeType":"YulTypedName","src":"2533:5:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2540:3:17","type":""}],"src":"2495:186:17"},{"body":{"nodeType":"YulBlock","src":"2766:464:17","statements":[{"body":{"nodeType":"YulBlock","src":"2792:431:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2806:54:17","value":{"arguments":[{"name":"array","nodeType":"YulIdentifier","src":"2854:5:17"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"2822:31:17"},"nodeType":"YulFunctionCall","src":"2822:38:17"},"variables":[{"name":"dataArea","nodeType":"YulTypedName","src":"2810:8:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2873:63:17","value":{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"2896:8:17"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2924:10:17"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"2906:17:17"},"nodeType":"YulFunctionCall","src":"2906:29:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2892:3:17"},"nodeType":"YulFunctionCall","src":"2892:44:17"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"2877:11:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"3093:27:17","statements":[{"nodeType":"YulAssignment","src":"3095:23:17","value":{"name":"dataArea","nodeType":"YulIdentifier","src":"3110:8:17"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"3095:11:17"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"3077:10:17"},{"kind":"number","nodeType":"YulLiteral","src":"3089:2:17","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3074:2:17"},"nodeType":"YulFunctionCall","src":"3074:18:17"},"nodeType":"YulIf","src":"3071:49:17"},{"expression":{"arguments":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"3162:11:17"},{"arguments":[{"name":"dataArea","nodeType":"YulIdentifier","src":"3179:8:17"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"3207:3:17"}],"functionName":{"name":"divide_by_32_ceil","nodeType":"YulIdentifier","src":"3189:17:17"},"nodeType":"YulFunctionCall","src":"3189:22:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3175:3:17"},"nodeType":"YulFunctionCall","src":"3175:37:17"}],"functionName":{"name":"clear_storage_range_t_bytes1","nodeType":"YulIdentifier","src":"3133:28:17"},"nodeType":"YulFunctionCall","src":"3133:80:17"},"nodeType":"YulExpressionStatement","src":"3133:80:17"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2783:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"2788:2:17","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2780:2:17"},"nodeType":"YulFunctionCall","src":"2780:11:17"},"nodeType":"YulIf","src":"2777:446:17"}]},"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"2742:5:17","type":""},{"name":"len","nodeType":"YulTypedName","src":"2749:3:17","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"2754:10:17","type":""}],"src":"2687:543:17"},{"body":{"nodeType":"YulBlock","src":"3299:54:17","statements":[{"nodeType":"YulAssignment","src":"3309:37:17","value":{"arguments":[{"name":"bits","nodeType":"YulIdentifier","src":"3334:4:17"},{"name":"value","nodeType":"YulIdentifier","src":"3340:5:17"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3330:3:17"},"nodeType":"YulFunctionCall","src":"3330:16:17"},"variableNames":[{"name":"newValue","nodeType":"YulIdentifier","src":"3309:8:17"}]}]},"name":"shift_right_unsigned_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"bits","nodeType":"YulTypedName","src":"3274:4:17","type":""},{"name":"value","nodeType":"YulTypedName","src":"3280:5:17","type":""}],"returnVariables":[{"name":"newValue","nodeType":"YulTypedName","src":"3290:8:17","type":""}],"src":"3236:117:17"},{"body":{"nodeType":"YulBlock","src":"3410:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3420:68:17","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3469:1:17","type":"","value":"8"},{"name":"bytes","nodeType":"YulIdentifier","src":"3472:5:17"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"3465:3:17"},"nodeType":"YulFunctionCall","src":"3465:13:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3484:1:17","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3480:3:17"},"nodeType":"YulFunctionCall","src":"3480:6:17"}],"functionName":{"name":"shift_right_unsigned_dynamic","nodeType":"YulIdentifier","src":"3436:28:17"},"nodeType":"YulFunctionCall","src":"3436:51:17"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3432:3:17"},"nodeType":"YulFunctionCall","src":"3432:56:17"},"variables":[{"name":"mask","nodeType":"YulTypedName","src":"3424:4:17","type":""}]},{"nodeType":"YulAssignment","src":"3497:25:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3511:4:17"},{"name":"mask","nodeType":"YulIdentifier","src":"3517:4:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3507:3:17"},"nodeType":"YulFunctionCall","src":"3507:15:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"3497:6:17"}]}]},"name":"mask_bytes_dynamic","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3387:4:17","type":""},{"name":"bytes","nodeType":"YulTypedName","src":"3393:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"3403:6:17","type":""}],"src":"3359:169:17"},{"body":{"nodeType":"YulBlock","src":"3614:214:17","statements":[{"nodeType":"YulAssignment","src":"3747:37:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3774:4:17"},{"name":"len","nodeType":"YulIdentifier","src":"3780:3:17"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"3755:18:17"},"nodeType":"YulFunctionCall","src":"3755:29:17"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"3747:4:17"}]},{"nodeType":"YulAssignment","src":"3793:29:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"3804:4:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3814:1:17","type":"","value":"2"},{"name":"len","nodeType":"YulIdentifier","src":"3817:3:17"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"3810:3:17"},"nodeType":"YulFunctionCall","src":"3810:11:17"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"3801:2:17"},"nodeType":"YulFunctionCall","src":"3801:21:17"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"3793:4:17"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"3595:4:17","type":""},{"name":"len","nodeType":"YulTypedName","src":"3601:3:17","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"3609:4:17","type":""}],"src":"3533:295:17"},{"body":{"nodeType":"YulBlock","src":"3925:1303:17","statements":[{"nodeType":"YulVariableDeclaration","src":"3936:51:17","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3983:3:17"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"3950:32:17"},"nodeType":"YulFunctionCall","src":"3950:37:17"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"3940:6:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"4072:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"4074:16:17"},"nodeType":"YulFunctionCall","src":"4074:18:17"},"nodeType":"YulExpressionStatement","src":"4074:18:17"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4044:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4052:18:17","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4041:2:17"},"nodeType":"YulFunctionCall","src":"4041:30:17"},"nodeType":"YulIf","src":"4038:56:17"},{"nodeType":"YulVariableDeclaration","src":"4104:52:17","value":{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4150:4:17"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"4144:5:17"},"nodeType":"YulFunctionCall","src":"4144:11:17"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"4118:25:17"},"nodeType":"YulFunctionCall","src":"4118:38:17"},"variables":[{"name":"oldLen","nodeType":"YulTypedName","src":"4108:6:17","type":""}]},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4249:4:17"},{"name":"oldLen","nodeType":"YulIdentifier","src":"4255:6:17"},{"name":"newLen","nodeType":"YulIdentifier","src":"4263:6:17"}],"functionName":{"name":"clean_up_bytearray_end_slots_t_string_storage","nodeType":"YulIdentifier","src":"4203:45:17"},"nodeType":"YulFunctionCall","src":"4203:67:17"},"nodeType":"YulExpressionStatement","src":"4203:67:17"},{"nodeType":"YulVariableDeclaration","src":"4280:18:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4297:1:17","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"4284:9:17","type":""}]},{"nodeType":"YulAssignment","src":"4308:17:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4321:4:17","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4308:9:17"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"4372:611:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4386:37:17","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4405:6:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4417:4:17","type":"","value":"0x1f"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"4413:3:17"},"nodeType":"YulFunctionCall","src":"4413:9:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4401:3:17"},"nodeType":"YulFunctionCall","src":"4401:22:17"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"4390:7:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4437:51:17","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4483:4:17"}],"functionName":{"name":"array_dataslot_t_string_storage","nodeType":"YulIdentifier","src":"4451:31:17"},"nodeType":"YulFunctionCall","src":"4451:37:17"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"4441:6:17","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4501:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4510:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"4505:1:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"4569:163:17","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4594:6:17"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4612:3:17"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4617:9:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4608:3:17"},"nodeType":"YulFunctionCall","src":"4608:19:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4602:5:17"},"nodeType":"YulFunctionCall","src":"4602:26:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4587:6:17"},"nodeType":"YulFunctionCall","src":"4587:42:17"},"nodeType":"YulExpressionStatement","src":"4587:42:17"},{"nodeType":"YulAssignment","src":"4646:24:17","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4660:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4668:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4656:3:17"},"nodeType":"YulFunctionCall","src":"4656:14:17"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4646:6:17"}]},{"nodeType":"YulAssignment","src":"4687:31:17","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4704:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4715:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4700:3:17"},"nodeType":"YulFunctionCall","src":"4700:18:17"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"4687:9:17"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4535:1:17"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"4538:7:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4532:2:17"},"nodeType":"YulFunctionCall","src":"4532:14:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"4547:21:17","statements":[{"nodeType":"YulAssignment","src":"4549:17:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"4558:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"4561:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4554:3:17"},"nodeType":"YulFunctionCall","src":"4554:12:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"4549:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"4528:3:17","statements":[]},"src":"4524:208:17"},{"body":{"nodeType":"YulBlock","src":"4768:156:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4786:43:17","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4813:3:17"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4818:9:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4809:3:17"},"nodeType":"YulFunctionCall","src":"4809:19:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4803:5:17"},"nodeType":"YulFunctionCall","src":"4803:26:17"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"4790:9:17","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"4853:6:17"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"4880:9:17"},{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4895:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4903:4:17","type":"","value":"0x1f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4891:3:17"},"nodeType":"YulFunctionCall","src":"4891:17:17"}],"functionName":{"name":"mask_bytes_dynamic","nodeType":"YulIdentifier","src":"4861:18:17"},"nodeType":"YulFunctionCall","src":"4861:48:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4846:6:17"},"nodeType":"YulFunctionCall","src":"4846:64:17"},"nodeType":"YulExpressionStatement","src":"4846:64:17"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"4751:7:17"},{"name":"newLen","nodeType":"YulIdentifier","src":"4760:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"4748:2:17"},"nodeType":"YulFunctionCall","src":"4748:19:17"},"nodeType":"YulIf","src":"4745:179:17"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4944:4:17"},{"arguments":[{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4958:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4966:1:17","type":"","value":"2"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"4954:3:17"},"nodeType":"YulFunctionCall","src":"4954:14:17"},{"kind":"number","nodeType":"YulLiteral","src":"4970:1:17","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4950:3:17"},"nodeType":"YulFunctionCall","src":"4950:22:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4937:6:17"},"nodeType":"YulFunctionCall","src":"4937:36:17"},"nodeType":"YulExpressionStatement","src":"4937:36:17"}]},"nodeType":"YulCase","src":"4365:618:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4370:1:17","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"5000:222:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5014:14:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5027:1:17","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"5018:5:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"5051:67:17","statements":[{"nodeType":"YulAssignment","src":"5069:35:17","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"5088:3:17"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"5093:9:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5084:3:17"},"nodeType":"YulFunctionCall","src":"5084:19:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5078:5:17"},"nodeType":"YulFunctionCall","src":"5078:26:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"5069:5:17"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"5044:6:17"},"nodeType":"YulIf","src":"5041:77:17"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"5138:4:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5197:5:17"},{"name":"newLen","nodeType":"YulIdentifier","src":"5204:6:17"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"5144:52:17"},"nodeType":"YulFunctionCall","src":"5144:67:17"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"5131:6:17"},"nodeType":"YulFunctionCall","src":"5131:81:17"},"nodeType":"YulExpressionStatement","src":"5131:81:17"}]},"nodeType":"YulCase","src":"4992:230:17","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"4345:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"4353:2:17","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4342:2:17"},"nodeType":"YulFunctionCall","src":"4342:14:17"},"nodeType":"YulSwitch","src":"4335:887:17"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"3914:4:17","type":""},{"name":"src","nodeType":"YulTypedName","src":"3920:3:17","type":""}],"src":"3833:1395:17"},{"body":{"nodeType":"YulBlock","src":"5330:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5347:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"5352:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5340:6:17"},"nodeType":"YulFunctionCall","src":"5340:19:17"},"nodeType":"YulExpressionStatement","src":"5340:19:17"},{"nodeType":"YulAssignment","src":"5368:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5387:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"5392:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5383:3:17"},"nodeType":"YulFunctionCall","src":"5383:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"5368:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5302:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"5307:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"5318:11:17","type":""}],"src":"5234:169:17"},{"body":{"nodeType":"YulBlock","src":"5515:75:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"5537:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"5545:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5533:3:17"},"nodeType":"YulFunctionCall","src":"5533:14:17"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"5549:33:17","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5526:6:17"},"nodeType":"YulFunctionCall","src":"5526:57:17"},"nodeType":"YulExpressionStatement","src":"5526:57:17"}]},"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"5507:6:17","type":""}],"src":"5409:181:17"},{"body":{"nodeType":"YulBlock","src":"5742:220:17","statements":[{"nodeType":"YulAssignment","src":"5752:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5818:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"5823:2:17","type":"","value":"31"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"5759:58:17"},"nodeType":"YulFunctionCall","src":"5759:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"5752:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5924:3:17"}],"functionName":{"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulIdentifier","src":"5835:88:17"},"nodeType":"YulFunctionCall","src":"5835:93:17"},"nodeType":"YulExpressionStatement","src":"5835:93:17"},{"nodeType":"YulAssignment","src":"5937:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5948:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"5953:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5944:3:17"},"nodeType":"YulFunctionCall","src":"5944:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"5937:3:17"}]}]},"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"5730:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"5738:3:17","type":""}],"src":"5596:366:17"},{"body":{"nodeType":"YulBlock","src":"6139:248:17","statements":[{"nodeType":"YulAssignment","src":"6149:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6161:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"6172:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6157:3:17"},"nodeType":"YulFunctionCall","src":"6157:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6149:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6196:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"6207:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6192:3:17"},"nodeType":"YulFunctionCall","src":"6192:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6215:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"6221:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6211:3:17"},"nodeType":"YulFunctionCall","src":"6211:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6185:6:17"},"nodeType":"YulFunctionCall","src":"6185:47:17"},"nodeType":"YulExpressionStatement","src":"6185:47:17"},{"nodeType":"YulAssignment","src":"6241:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"6375:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"6249:124:17"},"nodeType":"YulFunctionCall","src":"6249:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"6241:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6119:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6134:4:17","type":""}],"src":"5968:419:17"},{"body":{"nodeType":"YulBlock","src":"6421:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6438:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6441:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6431:6:17"},"nodeType":"YulFunctionCall","src":"6431:88:17"},"nodeType":"YulExpressionStatement","src":"6431:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6535:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6538:4:17","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6528:6:17"},"nodeType":"YulFunctionCall","src":"6528:15:17"},"nodeType":"YulExpressionStatement","src":"6528:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6559:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6562:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6552:6:17"},"nodeType":"YulFunctionCall","src":"6552:15:17"},"nodeType":"YulExpressionStatement","src":"6552:15:17"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"6393:180:17"},{"body":{"nodeType":"YulBlock","src":"6623:147:17","statements":[{"nodeType":"YulAssignment","src":"6633:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6656:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6638:17:17"},"nodeType":"YulFunctionCall","src":"6638:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"6633:1:17"}]},{"nodeType":"YulAssignment","src":"6667:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"6690:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6672:17:17"},"nodeType":"YulFunctionCall","src":"6672:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"6667:1:17"}]},{"nodeType":"YulAssignment","src":"6701:16:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6712:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"6715:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6708:3:17"},"nodeType":"YulFunctionCall","src":"6708:9:17"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"6701:3:17"}]},{"body":{"nodeType":"YulBlock","src":"6741:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"6743:16:17"},"nodeType":"YulFunctionCall","src":"6743:18:17"},"nodeType":"YulExpressionStatement","src":"6743:18:17"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6733:1:17"},{"name":"sum","nodeType":"YulIdentifier","src":"6736:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6730:2:17"},"nodeType":"YulFunctionCall","src":"6730:10:17"},"nodeType":"YulIf","src":"6727:36:17"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"6610:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"6613:1:17","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"6619:3:17","type":""}],"src":"6579:191:17"},{"body":{"nodeType":"YulBlock","src":"6841:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6858:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"6881:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6863:17:17"},"nodeType":"YulFunctionCall","src":"6863:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6851:6:17"},"nodeType":"YulFunctionCall","src":"6851:37:17"},"nodeType":"YulExpressionStatement","src":"6851:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"6829:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"6836:3:17","type":""}],"src":"6776:118:17"},{"body":{"nodeType":"YulBlock","src":"6998:124:17","statements":[{"nodeType":"YulAssignment","src":"7008:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7020:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7031:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7016:3:17"},"nodeType":"YulFunctionCall","src":"7016:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7008:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"7088:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7101:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7112:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7097:3:17"},"nodeType":"YulFunctionCall","src":"7097:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"7044:43:17"},"nodeType":"YulFunctionCall","src":"7044:71:17"},"nodeType":"YulExpressionStatement","src":"7044:71:17"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6970:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6982:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6993:4:17","type":""}],"src":"6900:222:17"}]},"contents":"{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4d6f636b554453430000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d5553444300000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004b7565b508060049081620000a19190620004b7565b505050620000c03369d3c21bcecceda1000000620000c660201b60201c565b620006b9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012f90620005ff565b60405180910390fd5b6200014c600083836200023360201b60201c565b806002600082825462000160919062000650565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200021391906200069c565b60405180910390a36200022f600083836200023860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002bf57607f821691505b602082108103620002d557620002d462000277565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200033f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000300565b6200034b868362000300565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000398620003926200038c8462000363565b6200036d565b62000363565b9050919050565b6000819050919050565b620003b48362000377565b620003cc620003c3826200039f565b8484546200030d565b825550505050565b600090565b620003e3620003d4565b620003f0818484620003a9565b505050565b5b8181101562000418576200040c600082620003d9565b600181019050620003f6565b5050565b601f82111562000467576200043181620002db565b6200043c84620002f0565b810160208510156200044c578190505b620004646200045b85620002f0565b830182620003f5565b50505b505050565b600082821c905092915050565b60006200048c600019846008026200046c565b1980831691505092915050565b6000620004a7838362000479565b9150826002028217905092915050565b620004c2826200023d565b67ffffffffffffffff811115620004de57620004dd62000248565b5b620004ea8254620002a6565b620004f78282856200041c565b600060209050601f8311600181146200052f57600084156200051a578287015190505b62000526858262000499565b86555062000596565b601f1984166200053f86620002db565b60005b82811015620005695784890151825560018201915060208501945060208101905062000542565b8683101562000589578489015162000585601f89168262000479565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005e7601f836200059e565b9150620005f482620005af565b602082019050919050565b600060208201905081810360008301526200061a81620005d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200065d8262000363565b91506200066a8362000363565b925082820190508082111562000685576200068462000621565b5b92915050565b620006968162000363565b82525050565b6000602082019050620006b360008301846200068b565b92915050565b61187580620006c96000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a0712d6811610066578063a0712d681461024d578063a457c2d714610269578063a9059cbb14610299578063dd62ed3e146102c9576100ea565b806370a08231146101f557806395d89b41146102255780639975038c14610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102f9565b6040516101049190610f29565b60405180910390f35b61012760048036038101906101229190610fe4565b61038b565b604051610134919061103f565b60405180910390f35b6101456103ae565b6040516101529190611069565b60405180910390f35b61017560048036038101906101709190611084565b6103b8565b604051610182919061103f565b60405180910390f35b6101936103e7565b6040516101a091906110f3565b60405180910390f35b6101c360048036038101906101be9190610fe4565b6103f0565b6040516101d0919061103f565b60405180910390f35b6101f360048036038101906101ee919061110e565b610427565b005b61020f600480360381019061020a919061113b565b610434565b60405161021c9190611069565b60405180910390f35b61022d61047c565b60405161023a9190610f29565b60405180910390f35b61024b61050e565b005b6102676004803603810190610262919061110e565b61056b565b005b610283600480360381019061027e9190610fe4565b610578565b604051610290919061103f565b60405180910390f35b6102b360048036038101906102ae9190610fe4565b6105ef565b6040516102c0919061103f565b60405180910390f35b6102e360048036038101906102de9190611168565b610612565b6040516102f09190611069565b60405180910390f35b606060038054610308906111d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610334906111d7565b80156103815780601f1061035657610100808354040283529160200191610381565b820191906000526020600020905b81548152906001019060200180831161036457829003601f168201915b5050505050905090565b600080610396610699565b90506103a38185856106a1565b600191505092915050565b6000600254905090565b6000806103c3610699565b90506103d085828561086a565b6103db8585856108f6565b60019150509392505050565b60006012905090565b6000806103fb610699565b905061041c81858561040d8589610612565b6104179190611237565b6106a1565b600191505092915050565b6104313382610b6c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461048b906111d7565b80601f01602080910402602001604051908101604052809291908181526020018280546104b7906111d7565b80156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600061051933610434565b90506000811161055e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610555906112b7565b60405180910390fd5b6105683382610b6c565b50565b6105753382610d39565b50565b600080610583610699565b905060006105918286610612565b9050838110156105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611349565b60405180910390fd5b6105e382868684036106a1565b60019250505092915050565b6000806105fa610699565b90506106078185856108f6565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610707906113db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361077f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107769061146d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161085d9190611069565b60405180910390a3505050565b60006108768484610612565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108f057818110156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d9906114d9565b60405180910390fd5b6108ef84848484036106a1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c9061156b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb906115fd565b60405180910390fd5b6109df838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061168f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b539190611069565b60405180910390a3610b66848484610e94565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611721565b60405180910390fd5b610be782600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c64906117b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d209190611069565b60405180910390a3610d3483600084610e94565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061181f565b60405180910390fd5b610db460008383610e8f565b8060026000828254610dc69190611237565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e779190611069565b60405180910390a3610e8b60008383610e94565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ed3578082015181840152602081019050610eb8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610efb82610e99565b610f058185610ea4565b9350610f15818560208601610eb5565b610f1e81610edf565b840191505092915050565b60006020820190508181036000830152610f438184610ef0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f7b82610f50565b9050919050565b610f8b81610f70565b8114610f9657600080fd5b50565b600081359050610fa881610f82565b92915050565b6000819050919050565b610fc181610fae565b8114610fcc57600080fd5b50565b600081359050610fde81610fb8565b92915050565b60008060408385031215610ffb57610ffa610f4b565b5b600061100985828601610f99565b925050602061101a85828601610fcf565b9150509250929050565b60008115159050919050565b61103981611024565b82525050565b60006020820190506110546000830184611030565b92915050565b61106381610fae565b82525050565b600060208201905061107e600083018461105a565b92915050565b60008060006060848603121561109d5761109c610f4b565b5b60006110ab86828701610f99565b93505060206110bc86828701610f99565b92505060406110cd86828701610fcf565b9150509250925092565b600060ff82169050919050565b6110ed816110d7565b82525050565b600060208201905061110860008301846110e4565b92915050565b60006020828403121561112457611123610f4b565b5b600061113284828501610fcf565b91505092915050565b60006020828403121561115157611150610f4b565b5b600061115f84828501610f99565b91505092915050565b6000806040838503121561117f5761117e610f4b565b5b600061118d85828601610f99565b925050602061119e85828601610f99565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111ef57607f821691505b602082108103611202576112016111a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061124282610fae565b915061124d83610fae565b925082820190508082111561126557611264611208565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e00000000000000600082015250565b60006112a1601983610ea4565b91506112ac8261126b565b602082019050919050565b600060208201905081810360008301526112d081611294565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611333602583610ea4565b915061133e826112d7565b604082019050919050565b6000602082019050818103600083015261136281611326565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113c5602483610ea4565b91506113d082611369565b604082019050919050565b600060208201905081810360008301526113f4816113b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611457602283610ea4565b9150611462826113fb565b604082019050919050565b600060208201905081810360008301526114868161144a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114c3601d83610ea4565b91506114ce8261148d565b602082019050919050565b600060208201905081810360008301526114f2816114b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611555602583610ea4565b9150611560826114f9565b604082019050919050565b6000602082019050818103600083015261158481611548565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115e7602383610ea4565b91506115f28261158b565b604082019050919050565b60006020820190508181036000830152611616816115da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611679602683610ea4565b91506116848261161d565b604082019050919050565b600060208201905081810360008301526116a88161166c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061170b602183610ea4565b9150611716826116af565b604082019050919050565b6000602082019050818103600083015261173a816116fe565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061179d602283610ea4565b91506117a882611741565b604082019050919050565b600060208201905081810360008301526117cc81611790565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611809601f83610ea4565b9150611814826117d3565b602082019050919050565b60006020820190508181036000830152611838816117fc565b905091905056fea264697066735822122068d713bf4736c676499489be7a244631ce61e66372a491b3cb5640b12172fe9464736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D6F636B55445343000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D55534443000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x4B7 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x4B7 JUMP JUMPDEST POP POP POP PUSH3 0xC0 CALLER PUSH10 0xD3C21BCECCEDA1000000 PUSH3 0xC6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x6B9 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x138 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x12F SWAP1 PUSH3 0x5FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x14C PUSH1 0x0 DUP4 DUP4 PUSH3 0x233 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x160 SWAP2 SWAP1 PUSH3 0x650 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x213 SWAP2 SWAP1 PUSH3 0x69C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x22F PUSH1 0x0 DUP4 DUP4 PUSH3 0x238 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2BF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2D5 JUMPI PUSH3 0x2D4 PUSH3 0x277 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x33F PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x300 JUMP JUMPDEST PUSH3 0x34B DUP7 DUP4 PUSH3 0x300 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x398 PUSH3 0x392 PUSH3 0x38C DUP5 PUSH3 0x363 JUMP JUMPDEST PUSH3 0x36D JUMP JUMPDEST PUSH3 0x363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3B4 DUP4 PUSH3 0x377 JUMP JUMPDEST PUSH3 0x3CC PUSH3 0x3C3 DUP3 PUSH3 0x39F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x30D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x3E3 PUSH3 0x3D4 JUMP JUMPDEST PUSH3 0x3F0 DUP2 DUP5 DUP5 PUSH3 0x3A9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x418 JUMPI PUSH3 0x40C PUSH1 0x0 DUP3 PUSH3 0x3D9 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x3F6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x467 JUMPI PUSH3 0x431 DUP2 PUSH3 0x2DB JUMP JUMPDEST PUSH3 0x43C DUP5 PUSH3 0x2F0 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x44C JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x464 PUSH3 0x45B DUP6 PUSH3 0x2F0 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x3F5 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x48C PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x46C JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4A7 DUP4 DUP4 PUSH3 0x479 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4C2 DUP3 PUSH3 0x23D JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4DE JUMPI PUSH3 0x4DD PUSH3 0x248 JUMP JUMPDEST JUMPDEST PUSH3 0x4EA DUP3 SLOAD PUSH3 0x2A6 JUMP JUMPDEST PUSH3 0x4F7 DUP3 DUP3 DUP6 PUSH3 0x41C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x52F JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x51A JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x526 DUP6 DUP3 PUSH3 0x499 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x596 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x53F DUP7 PUSH3 0x2DB JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x569 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x542 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x589 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x585 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x479 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5E7 PUSH1 0x1F DUP4 PUSH3 0x59E JUMP JUMPDEST SWAP2 POP PUSH3 0x5F4 DUP3 PUSH3 0x5AF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x61A DUP2 PUSH3 0x5D8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x65D DUP3 PUSH3 0x363 JUMP JUMPDEST SWAP2 POP PUSH3 0x66A DUP4 PUSH3 0x363 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH3 0x685 JUMPI PUSH3 0x684 PUSH3 0x621 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x696 DUP2 PUSH3 0x363 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x6B3 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x68B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1875 DUP1 PUSH3 0x6C9 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x269 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x299 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2C9 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x9975038C EQ PUSH2 0x243 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x15B JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1D9 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x2F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xF29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x122 SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x38B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x145 PUSH2 0x3AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x175 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x170 SWAP2 SWAP1 PUSH2 0x1084 JUMP JUMPDEST PUSH2 0x3B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x193 PUSH2 0x3E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BE SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x3F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D0 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20A SWAP2 SWAP1 PUSH2 0x113B JUMP JUMPDEST PUSH2 0x434 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xF29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24B PUSH2 0x50E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x56B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x283 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x27E SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x578 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x290 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AE SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x5EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C0 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x1168 JUMP JUMPDEST PUSH2 0x612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F0 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x308 SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x334 SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x381 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x356 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x381 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x364 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x396 PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A3 DUP2 DUP6 DUP6 PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3C3 PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x3D0 DUP6 DUP3 DUP6 PUSH2 0x86A JUMP JUMPDEST PUSH2 0x3DB DUP6 DUP6 DUP6 PUSH2 0x8F6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3FB PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x41C DUP2 DUP6 DUP6 PUSH2 0x40D DUP6 DUP10 PUSH2 0x612 JUMP JUMPDEST PUSH2 0x417 SWAP2 SWAP1 PUSH2 0x1237 JUMP JUMPDEST PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x431 CALLER DUP3 PUSH2 0xB6C JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x48B SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4B7 SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x504 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4D9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x504 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4E7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x519 CALLER PUSH2 0x434 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x55E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x555 SWAP1 PUSH2 0x12B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x568 CALLER DUP3 PUSH2 0xB6C JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x575 CALLER DUP3 PUSH2 0xD39 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x583 PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x591 DUP3 DUP7 PUSH2 0x612 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x5D6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5CD SWAP1 PUSH2 0x1349 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5E3 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5FA PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x607 DUP2 DUP6 DUP6 PUSH2 0x8F6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x710 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x707 SWAP1 PUSH2 0x13DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x77F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x776 SWAP1 PUSH2 0x146D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x85D SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x876 DUP5 DUP5 PUSH2 0x612 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x8F0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x8E2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D9 SWAP1 PUSH2 0x14D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8EF DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x6A1 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x965 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x95C SWAP1 PUSH2 0x156B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9CB SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9DF DUP4 DUP4 DUP4 PUSH2 0xE8F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA65 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA5C SWAP1 PUSH2 0x168F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB53 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xB66 DUP5 DUP5 DUP5 PUSH2 0xE94 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBDB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD2 SWAP1 PUSH2 0x1721 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBE7 DUP3 PUSH1 0x0 DUP4 PUSH2 0xE8F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC6D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC64 SWAP1 PUSH2 0x17B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xD20 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xD34 DUP4 PUSH1 0x0 DUP5 PUSH2 0xE94 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDA8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD9F SWAP1 PUSH2 0x181F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDB4 PUSH1 0x0 DUP4 DUP4 PUSH2 0xE8F JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDC6 SWAP2 SWAP1 PUSH2 0x1237 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE77 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE8B PUSH1 0x0 DUP4 DUP4 PUSH2 0xE94 JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xED3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xEB8 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEFB DUP3 PUSH2 0xE99 JUMP JUMPDEST PUSH2 0xF05 DUP2 DUP6 PUSH2 0xEA4 JUMP JUMPDEST SWAP4 POP PUSH2 0xF15 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xEB5 JUMP JUMPDEST PUSH2 0xF1E DUP2 PUSH2 0xEDF JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF43 DUP2 DUP5 PUSH2 0xEF0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF7B DUP3 PUSH2 0xF50 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF8B DUP2 PUSH2 0xF70 JUMP JUMPDEST DUP2 EQ PUSH2 0xF96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFA8 DUP2 PUSH2 0xF82 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFC1 DUP2 PUSH2 0xFAE JUMP JUMPDEST DUP2 EQ PUSH2 0xFCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFDE DUP2 PUSH2 0xFB8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFFB JUMPI PUSH2 0xFFA PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1009 DUP6 DUP3 DUP7 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x101A DUP6 DUP3 DUP7 ADD PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1039 DUP2 PUSH2 0x1024 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1054 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1030 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1063 DUP2 PUSH2 0xFAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x107E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x105A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x109D JUMPI PUSH2 0x109C PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10AB DUP7 DUP3 DUP8 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x10BC DUP7 DUP3 DUP8 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x10CD DUP7 DUP3 DUP8 ADD PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10ED DUP2 PUSH2 0x10D7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1108 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1124 JUMPI PUSH2 0x1123 PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1132 DUP5 DUP3 DUP6 ADD PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1151 JUMPI PUSH2 0x1150 PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x115F DUP5 DUP3 DUP6 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x117F JUMPI PUSH2 0x117E PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x118D DUP6 DUP3 DUP7 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x119E DUP6 DUP3 DUP7 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11EF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1202 JUMPI PUSH2 0x1201 PUSH2 0x11A8 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1242 DUP3 PUSH2 0xFAE JUMP JUMPDEST SWAP2 POP PUSH2 0x124D DUP4 PUSH2 0xFAE JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1265 JUMPI PUSH2 0x1264 PUSH2 0x1208 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4D6F636B555344543A204E6F7468696E6720746F206275726E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12A1 PUSH1 0x19 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x12AC DUP3 PUSH2 0x126B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12D0 DUP2 PUSH2 0x1294 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1333 PUSH1 0x25 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x133E DUP3 PUSH2 0x12D7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1362 DUP2 PUSH2 0x1326 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13C5 PUSH1 0x24 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x13D0 DUP3 PUSH2 0x1369 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x13F4 DUP2 PUSH2 0x13B8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1457 PUSH1 0x22 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1462 DUP3 PUSH2 0x13FB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1486 DUP2 PUSH2 0x144A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14C3 PUSH1 0x1D DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x14CE DUP3 PUSH2 0x148D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14F2 DUP2 PUSH2 0x14B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1555 PUSH1 0x25 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1560 DUP3 PUSH2 0x14F9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1584 DUP2 PUSH2 0x1548 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15E7 PUSH1 0x23 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x15F2 DUP3 PUSH2 0x158B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1616 DUP2 PUSH2 0x15DA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1679 PUSH1 0x26 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1684 DUP3 PUSH2 0x161D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x16A8 DUP2 PUSH2 0x166C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x170B PUSH1 0x21 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1716 DUP3 PUSH2 0x16AF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x173A DUP2 PUSH2 0x16FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179D PUSH1 0x22 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x17A8 DUP3 PUSH2 0x1741 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17CC DUP2 PUSH2 0x1790 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1809 PUSH1 0x1F DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1814 DUP3 PUSH2 0x17D3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1838 DUP2 PUSH2 0x17FC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0xD713BF4736C6764994 DUP10 0xBE PUSH27 0x244631CE61E66372A491B3CB5640B12172FE9464736F6C63430008 SLT STOP CALLER ","sourceMap":"162:496:16:-:0;;;195:89;;;;;;;;;;1980:113:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;246:31:16::1;252:10;264:12;246:5;;;:31;;:::i;:::-;162:496:::0;;8520:535:6;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;;;:49;;:::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;;;:48;;:::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:17:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5234:169::-;5318:11;5352:6;5347:3;5340:19;5392:4;5387:3;5383:14;5368:29;;5234:169;;;;:::o;5409:181::-;5549:33;5545:1;5537:6;5533:14;5526:57;5409:181;:::o;5596:366::-;5738:3;5759:67;5823:2;5818:3;5759:67;:::i;:::-;5752:74;;5835:93;5924:3;5835:93;:::i;:::-;5953:2;5948:3;5944:12;5937:19;;5596:366;;;:::o;5968:419::-;6134:4;6172:2;6161:9;6157:18;6149:26;;6221:9;6215:4;6211:20;6207:1;6196:9;6192:17;6185:47;6249:131;6375:4;6249:131;:::i;:::-;6241:139;;5968:419;;;:::o;6393:180::-;6441:77;6438:1;6431:88;6538:4;6535:1;6528:15;6562:4;6559:1;6552:15;6579:191;6619:3;6638:20;6656:1;6638:20;:::i;:::-;6633:25;;6672:20;6690:1;6672:20;:::i;:::-;6667:25;;6715:1;6712;6708:9;6701:16;;6736:3;6733:1;6730:10;6727:36;;;6743:18;;:::i;:::-;6727:36;6579:191;;;;:::o;6776:118::-;6863:24;6881:5;6863:24;:::i;:::-;6858:3;6851:37;6776:118;;:::o;6900:222::-;6993:4;7031:2;7020:9;7016:18;7008:26;;7044:71;7112:1;7101:9;7097:17;7088:6;7044:71;:::i;:::-;6900:222;;;;:::o;162:496:16:-;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1503":{"entryPoint":3732,"id":1503,"parameterSlots":3,"returnSlots":0},"@_approve_1438":{"entryPoint":1697,"id":1438,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1492":{"entryPoint":3727,"id":1492,"parameterSlots":3,"returnSlots":0},"@_burn_1393":{"entryPoint":2924,"id":1393,"parameterSlots":2,"returnSlots":0},"@_mint_1321":{"entryPoint":3385,"id":1321,"parameterSlots":2,"returnSlots":0},"@_msgSender_1619":{"entryPoint":1689,"id":1619,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1481":{"entryPoint":2154,"id":1481,"parameterSlots":3,"returnSlots":0},"@_transfer_1264":{"entryPoint":2294,"id":1264,"parameterSlots":3,"returnSlots":0},"@allowance_1059":{"entryPoint":1554,"id":1059,"parameterSlots":2,"returnSlots":1},"@approve_1084":{"entryPoint":907,"id":1084,"parameterSlots":2,"returnSlots":1},"@balanceOf_1016":{"entryPoint":1076,"id":1016,"parameterSlots":1,"returnSlots":1},"@burnAll_3524":{"entryPoint":1294,"id":3524,"parameterSlots":0,"returnSlots":0},"@burn_3500":{"entryPoint":1063,"id":3500,"parameterSlots":1,"returnSlots":0},"@decimals_992":{"entryPoint":999,"id":992,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_1187":{"entryPoint":1400,"id":1187,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_1146":{"entryPoint":1008,"id":1146,"parameterSlots":2,"returnSlots":1},"@mint_3488":{"entryPoint":1387,"id":3488,"parameterSlots":1,"returnSlots":0},"@name_972":{"entryPoint":761,"id":972,"parameterSlots":0,"returnSlots":1},"@symbol_982":{"entryPoint":1148,"id":982,"parameterSlots":0,"returnSlots":1},"@totalSupply_1002":{"entryPoint":942,"id":1002,"parameterSlots":0,"returnSlots":1},"@transferFrom_1117":{"entryPoint":952,"id":1117,"parameterSlots":3,"returnSlots":1},"@transfer_1041":{"entryPoint":1519,"id":1041,"parameterSlots":2,"returnSlots":1},"abi_decode_t_address":{"entryPoint":3993,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_t_uint256":{"entryPoint":4047,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":4411,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4456,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":4228,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":4068,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256":{"entryPoint":4366,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_bool_to_t_bool_fromStack":{"entryPoint":4144,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack":{"entryPoint":3824,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack":{"entryPoint":5594,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack":{"entryPoint":6032,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack":{"entryPoint":5194,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack":{"entryPoint":5302,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack":{"entryPoint":5740,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack":{"entryPoint":4756,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack":{"entryPoint":5886,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack":{"entryPoint":5448,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack":{"entryPoint":5048,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack":{"entryPoint":4902,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack":{"entryPoint":6140,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_t_uint256_to_t_uint256_fromStack":{"entryPoint":4186,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_t_uint8_to_t_uint8_fromStack":{"entryPoint":4324,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":4159,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":3881,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5629,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":6067,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5229,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5337,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5775,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4791,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5921,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5483,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5083,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4937,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":6175,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":4201,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":4339,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_unbounded":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_length_t_string_memory_ptr":{"entryPoint":3737,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_t_string_memory_ptr_fromStack":{"entryPoint":3748,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":4663,"id":null,"parameterSlots":2,"returnSlots":1},"cleanup_t_address":{"entryPoint":3952,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_bool":{"entryPoint":4132,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint160":{"entryPoint":3920,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint256":{"entryPoint":4014,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_t_uint8":{"entryPoint":4311,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":3765,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4567,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":4616,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x22":{"entryPoint":4520,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b":{"entryPoint":3915,"id":null,"parameterSlots":0,"returnSlots":0},"round_up_to_mul_of_32":{"entryPoint":3807,"id":null,"parameterSlots":1,"returnSlots":1},"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f":{"entryPoint":5515,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd":{"entryPoint":5953,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029":{"entryPoint":5115,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe":{"entryPoint":5261,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6":{"entryPoint":5661,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09":{"entryPoint":4715,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f":{"entryPoint":5807,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea":{"entryPoint":5369,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208":{"entryPoint":4969,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8":{"entryPoint":4823,"id":null,"parameterSlots":1,"returnSlots":0},"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e":{"entryPoint":6099,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_address":{"entryPoint":3970,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_t_uint256":{"entryPoint":4024,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:18043:17","statements":[{"body":{"nodeType":"YulBlock","src":"66:40:17","statements":[{"nodeType":"YulAssignment","src":"77:22:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"93:5:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"87:5:17"},"nodeType":"YulFunctionCall","src":"87:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"77:6:17"}]}]},"name":"array_length_t_string_memory_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"49:5:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"59:6:17","type":""}],"src":"7:99:17"},{"body":{"nodeType":"YulBlock","src":"208:73:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"225:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"230:6:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"218:6:17"},"nodeType":"YulFunctionCall","src":"218:19:17"},"nodeType":"YulExpressionStatement","src":"218:19:17"},{"nodeType":"YulAssignment","src":"246:29:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"265:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"270:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"261:3:17"},"nodeType":"YulFunctionCall","src":"261:14:17"},"variableNames":[{"name":"updated_pos","nodeType":"YulIdentifier","src":"246:11:17"}]}]},"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"180:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"185:6:17","type":""}],"returnVariables":[{"name":"updated_pos","nodeType":"YulTypedName","src":"196:11:17","type":""}],"src":"112:169:17"},{"body":{"nodeType":"YulBlock","src":"349:184:17","statements":[{"nodeType":"YulVariableDeclaration","src":"359:10:17","value":{"kind":"number","nodeType":"YulLiteral","src":"368:1:17","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"363:1:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"428:63:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"453:3:17"},{"name":"i","nodeType":"YulIdentifier","src":"458:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"449:3:17"},"nodeType":"YulFunctionCall","src":"449:11:17"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"472:3:17"},{"name":"i","nodeType":"YulIdentifier","src":"477:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"468:3:17"},"nodeType":"YulFunctionCall","src":"468:11:17"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"462:5:17"},"nodeType":"YulFunctionCall","src":"462:18:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"442:6:17"},"nodeType":"YulFunctionCall","src":"442:39:17"},"nodeType":"YulExpressionStatement","src":"442:39:17"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"389:1:17"},{"name":"length","nodeType":"YulIdentifier","src":"392:6:17"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"386:2:17"},"nodeType":"YulFunctionCall","src":"386:13:17"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"400:19:17","statements":[{"nodeType":"YulAssignment","src":"402:15:17","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"411:1:17"},{"kind":"number","nodeType":"YulLiteral","src":"414:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"407:3:17"},"nodeType":"YulFunctionCall","src":"407:10:17"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"402:1:17"}]}]},"pre":{"nodeType":"YulBlock","src":"382:3:17","statements":[]},"src":"378:113:17"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nodeType":"YulIdentifier","src":"511:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"516:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"507:3:17"},"nodeType":"YulFunctionCall","src":"507:16:17"},{"kind":"number","nodeType":"YulLiteral","src":"525:1:17","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"500:6:17"},"nodeType":"YulFunctionCall","src":"500:27:17"},"nodeType":"YulExpressionStatement","src":"500:27:17"}]},"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nodeType":"YulTypedName","src":"331:3:17","type":""},{"name":"dst","nodeType":"YulTypedName","src":"336:3:17","type":""},{"name":"length","nodeType":"YulTypedName","src":"341:6:17","type":""}],"src":"287:246:17"},{"body":{"nodeType":"YulBlock","src":"587:54:17","statements":[{"nodeType":"YulAssignment","src":"597:38:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"615:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"622:2:17","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"611:3:17"},"nodeType":"YulFunctionCall","src":"611:14:17"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"631:2:17","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"627:3:17"},"nodeType":"YulFunctionCall","src":"627:7:17"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"607:3:17"},"nodeType":"YulFunctionCall","src":"607:28:17"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"597:6:17"}]}]},"name":"round_up_to_mul_of_32","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"570:5:17","type":""}],"returnVariables":[{"name":"result","nodeType":"YulTypedName","src":"580:6:17","type":""}],"src":"539:102:17"},{"body":{"nodeType":"YulBlock","src":"739:285:17","statements":[{"nodeType":"YulVariableDeclaration","src":"749:53:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"796:5:17"}],"functionName":{"name":"array_length_t_string_memory_ptr","nodeType":"YulIdentifier","src":"763:32:17"},"nodeType":"YulFunctionCall","src":"763:39:17"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"753:6:17","type":""}]},{"nodeType":"YulAssignment","src":"811:78:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"877:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"882:6:17"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"818:58:17"},"nodeType":"YulFunctionCall","src":"818:71:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"811:3:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"937:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"944:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"933:3:17"},"nodeType":"YulFunctionCall","src":"933:16:17"},{"name":"pos","nodeType":"YulIdentifier","src":"951:3:17"},{"name":"length","nodeType":"YulIdentifier","src":"956:6:17"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nodeType":"YulIdentifier","src":"898:34:17"},"nodeType":"YulFunctionCall","src":"898:65:17"},"nodeType":"YulExpressionStatement","src":"898:65:17"},{"nodeType":"YulAssignment","src":"972:46:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"983:3:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1010:6:17"}],"functionName":{"name":"round_up_to_mul_of_32","nodeType":"YulIdentifier","src":"988:21:17"},"nodeType":"YulFunctionCall","src":"988:29:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"979:3:17"},"nodeType":"YulFunctionCall","src":"979:39:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"972:3:17"}]}]},"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"720:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"727:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"735:3:17","type":""}],"src":"647:377:17"},{"body":{"nodeType":"YulBlock","src":"1148:195:17","statements":[{"nodeType":"YulAssignment","src":"1158:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1170:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1181:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1166:3:17"},"nodeType":"YulFunctionCall","src":"1166:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1158:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1205:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"1216:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1201:3:17"},"nodeType":"YulFunctionCall","src":"1201:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"1224:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"1230:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1220:3:17"},"nodeType":"YulFunctionCall","src":"1220:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1194:6:17"},"nodeType":"YulFunctionCall","src":"1194:47:17"},"nodeType":"YulExpressionStatement","src":"1194:47:17"},{"nodeType":"YulAssignment","src":"1250:86:17","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1322:6:17"},{"name":"tail","nodeType":"YulIdentifier","src":"1331:4:17"}],"functionName":{"name":"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"1258:63:17"},"nodeType":"YulFunctionCall","src":"1258:78:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1250:4:17"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1120:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1132:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1143:4:17","type":""}],"src":"1030:313:17"},{"body":{"nodeType":"YulBlock","src":"1389:35:17","statements":[{"nodeType":"YulAssignment","src":"1399:19:17","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1415:2:17","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1409:5:17"},"nodeType":"YulFunctionCall","src":"1409:9:17"},"variableNames":[{"name":"memPtr","nodeType":"YulIdentifier","src":"1399:6:17"}]}]},"name":"allocate_unbounded","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nodeType":"YulTypedName","src":"1382:6:17","type":""}],"src":"1349:75:17"},{"body":{"nodeType":"YulBlock","src":"1519:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1536:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1539:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1529:6:17"},"nodeType":"YulFunctionCall","src":"1529:12:17"},"nodeType":"YulExpressionStatement","src":"1529:12:17"}]},"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulFunctionDefinition","src":"1430:117:17"},{"body":{"nodeType":"YulBlock","src":"1642:28:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1659:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1662:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1652:6:17"},"nodeType":"YulFunctionCall","src":"1652:12:17"},"nodeType":"YulExpressionStatement","src":"1652:12:17"}]},"name":"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db","nodeType":"YulFunctionDefinition","src":"1553:117:17"},{"body":{"nodeType":"YulBlock","src":"1721:81:17","statements":[{"nodeType":"YulAssignment","src":"1731:65:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1746:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"1753:42:17","type":"","value":"0xffffffffffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1742:3:17"},"nodeType":"YulFunctionCall","src":"1742:54:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1731:7:17"}]}]},"name":"cleanup_t_uint160","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1703:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1713:7:17","type":""}],"src":"1676:126:17"},{"body":{"nodeType":"YulBlock","src":"1853:51:17","statements":[{"nodeType":"YulAssignment","src":"1863:35:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1892:5:17"}],"functionName":{"name":"cleanup_t_uint160","nodeType":"YulIdentifier","src":"1874:17:17"},"nodeType":"YulFunctionCall","src":"1874:24:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"1863:7:17"}]}]},"name":"cleanup_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1835:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"1845:7:17","type":""}],"src":"1808:96:17"},{"body":{"nodeType":"YulBlock","src":"1953:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"2010:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2019:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2022:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2012:6:17"},"nodeType":"YulFunctionCall","src":"2012:12:17"},"nodeType":"YulExpressionStatement","src":"2012:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1976:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2001:5:17"}],"functionName":{"name":"cleanup_t_address","nodeType":"YulIdentifier","src":"1983:17:17"},"nodeType":"YulFunctionCall","src":"1983:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1973:2:17"},"nodeType":"YulFunctionCall","src":"1973:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1966:6:17"},"nodeType":"YulFunctionCall","src":"1966:43:17"},"nodeType":"YulIf","src":"1963:63:17"}]},"name":"validator_revert_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"1946:5:17","type":""}],"src":"1910:122:17"},{"body":{"nodeType":"YulBlock","src":"2090:87:17","statements":[{"nodeType":"YulAssignment","src":"2100:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2122:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2109:12:17"},"nodeType":"YulFunctionCall","src":"2109:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2100:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2165:5:17"}],"functionName":{"name":"validator_revert_t_address","nodeType":"YulIdentifier","src":"2138:26:17"},"nodeType":"YulFunctionCall","src":"2138:33:17"},"nodeType":"YulExpressionStatement","src":"2138:33:17"}]},"name":"abi_decode_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2068:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2076:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2084:5:17","type":""}],"src":"2038:139:17"},{"body":{"nodeType":"YulBlock","src":"2228:32:17","statements":[{"nodeType":"YulAssignment","src":"2238:16:17","value":{"name":"value","nodeType":"YulIdentifier","src":"2249:5:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"2238:7:17"}]}]},"name":"cleanup_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2210:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"2220:7:17","type":""}],"src":"2183:77:17"},{"body":{"nodeType":"YulBlock","src":"2309:79:17","statements":[{"body":{"nodeType":"YulBlock","src":"2366:16:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2375:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2378:1:17","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2368:6:17"},"nodeType":"YulFunctionCall","src":"2368:12:17"},"nodeType":"YulExpressionStatement","src":"2368:12:17"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2332:5:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2357:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"2339:17:17"},"nodeType":"YulFunctionCall","src":"2339:24:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2329:2:17"},"nodeType":"YulFunctionCall","src":"2329:35:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2322:6:17"},"nodeType":"YulFunctionCall","src":"2322:43:17"},"nodeType":"YulIf","src":"2319:63:17"}]},"name":"validator_revert_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2302:5:17","type":""}],"src":"2266:122:17"},{"body":{"nodeType":"YulBlock","src":"2446:87:17","statements":[{"nodeType":"YulAssignment","src":"2456:29:17","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2478:6:17"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2465:12:17"},"nodeType":"YulFunctionCall","src":"2465:20:17"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"2456:5:17"}]},{"expression":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2521:5:17"}],"functionName":{"name":"validator_revert_t_uint256","nodeType":"YulIdentifier","src":"2494:26:17"},"nodeType":"YulFunctionCall","src":"2494:33:17"},"nodeType":"YulExpressionStatement","src":"2494:33:17"}]},"name":"abi_decode_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"2424:6:17","type":""},{"name":"end","nodeType":"YulTypedName","src":"2432:3:17","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"2440:5:17","type":""}],"src":"2394:139:17"},{"body":{"nodeType":"YulBlock","src":"2622:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"2668:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"2670:77:17"},"nodeType":"YulFunctionCall","src":"2670:79:17"},"nodeType":"YulExpressionStatement","src":"2670:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2643:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"2652:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2639:3:17"},"nodeType":"YulFunctionCall","src":"2639:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"2664:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2635:3:17"},"nodeType":"YulFunctionCall","src":"2635:32:17"},"nodeType":"YulIf","src":"2632:119:17"},{"nodeType":"YulBlock","src":"2761:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2776:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2790:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2780:6:17","type":""}]},{"nodeType":"YulAssignment","src":"2805:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2840:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2851:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2836:3:17"},"nodeType":"YulFunctionCall","src":"2836:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2860:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"2815:20:17"},"nodeType":"YulFunctionCall","src":"2815:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2805:6:17"}]}]},{"nodeType":"YulBlock","src":"2888:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"2903:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"2917:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2907:6:17","type":""}]},{"nodeType":"YulAssignment","src":"2933:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2968:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"2979:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2964:3:17"},"nodeType":"YulFunctionCall","src":"2964:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2988:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"2943:20:17"},"nodeType":"YulFunctionCall","src":"2943:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2933:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2584:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2595:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2607:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2615:6:17","type":""}],"src":"2539:474:17"},{"body":{"nodeType":"YulBlock","src":"3061:48:17","statements":[{"nodeType":"YulAssignment","src":"3071:32:17","value":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3096:5:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3089:6:17"},"nodeType":"YulFunctionCall","src":"3089:13:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"3082:6:17"},"nodeType":"YulFunctionCall","src":"3082:21:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"3071:7:17"}]}]},"name":"cleanup_t_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3043:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"3053:7:17","type":""}],"src":"3019:90:17"},{"body":{"nodeType":"YulBlock","src":"3174:50:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3191:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3211:5:17"}],"functionName":{"name":"cleanup_t_bool","nodeType":"YulIdentifier","src":"3196:14:17"},"nodeType":"YulFunctionCall","src":"3196:21:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3184:6:17"},"nodeType":"YulFunctionCall","src":"3184:34:17"},"nodeType":"YulExpressionStatement","src":"3184:34:17"}]},"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3162:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3169:3:17","type":""}],"src":"3115:109:17"},{"body":{"nodeType":"YulBlock","src":"3322:118:17","statements":[{"nodeType":"YulAssignment","src":"3332:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3344:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3355:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3340:3:17"},"nodeType":"YulFunctionCall","src":"3340:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3332:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3406:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3419:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3430:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3415:3:17"},"nodeType":"YulFunctionCall","src":"3415:17:17"}],"functionName":{"name":"abi_encode_t_bool_to_t_bool_fromStack","nodeType":"YulIdentifier","src":"3368:37:17"},"nodeType":"YulFunctionCall","src":"3368:65:17"},"nodeType":"YulExpressionStatement","src":"3368:65:17"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3294:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3306:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3317:4:17","type":""}],"src":"3230:210:17"},{"body":{"nodeType":"YulBlock","src":"3511:53:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"3528:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"3551:5:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"3533:17:17"},"nodeType":"YulFunctionCall","src":"3533:24:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3521:6:17"},"nodeType":"YulFunctionCall","src":"3521:37:17"},"nodeType":"YulExpressionStatement","src":"3521:37:17"}]},"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"3499:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"3506:3:17","type":""}],"src":"3446:118:17"},{"body":{"nodeType":"YulBlock","src":"3668:124:17","statements":[{"nodeType":"YulAssignment","src":"3678:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3690:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3701:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3686:3:17"},"nodeType":"YulFunctionCall","src":"3686:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3678:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3758:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3771:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"3782:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3767:3:17"},"nodeType":"YulFunctionCall","src":"3767:17:17"}],"functionName":{"name":"abi_encode_t_uint256_to_t_uint256_fromStack","nodeType":"YulIdentifier","src":"3714:43:17"},"nodeType":"YulFunctionCall","src":"3714:71:17"},"nodeType":"YulExpressionStatement","src":"3714:71:17"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3640:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3652:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3663:4:17","type":""}],"src":"3570:222:17"},{"body":{"nodeType":"YulBlock","src":"3898:519:17","statements":[{"body":{"nodeType":"YulBlock","src":"3944:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"3946:77:17"},"nodeType":"YulFunctionCall","src":"3946:79:17"},"nodeType":"YulExpressionStatement","src":"3946:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"3919:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"3928:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3915:3:17"},"nodeType":"YulFunctionCall","src":"3915:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"3940:2:17","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"3911:3:17"},"nodeType":"YulFunctionCall","src":"3911:32:17"},"nodeType":"YulIf","src":"3908:119:17"},{"nodeType":"YulBlock","src":"4037:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4052:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4066:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4056:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4081:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4116:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4127:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4112:3:17"},"nodeType":"YulFunctionCall","src":"4112:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4136:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4091:20:17"},"nodeType":"YulFunctionCall","src":"4091:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4081:6:17"}]}]},{"nodeType":"YulBlock","src":"4164:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4179:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4193:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4183:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4209:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4244:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4255:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4240:3:17"},"nodeType":"YulFunctionCall","src":"4240:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4264:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"4219:20:17"},"nodeType":"YulFunctionCall","src":"4219:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4209:6:17"}]}]},{"nodeType":"YulBlock","src":"4292:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"4307:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"4321:2:17","type":"","value":"64"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4311:6:17","type":""}]},{"nodeType":"YulAssignment","src":"4337:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4372:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"4383:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4368:3:17"},"nodeType":"YulFunctionCall","src":"4368:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4392:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"4347:20:17"},"nodeType":"YulFunctionCall","src":"4347:53:17"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"4337:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3852:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"3863:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"3875:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3883:6:17","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3891:6:17","type":""}],"src":"3798:619:17"},{"body":{"nodeType":"YulBlock","src":"4466:43:17","statements":[{"nodeType":"YulAssignment","src":"4476:27:17","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4491:5:17"},{"kind":"number","nodeType":"YulLiteral","src":"4498:4:17","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4487:3:17"},"nodeType":"YulFunctionCall","src":"4487:16:17"},"variableNames":[{"name":"cleaned","nodeType":"YulIdentifier","src":"4476:7:17"}]}]},"name":"cleanup_t_uint8","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4448:5:17","type":""}],"returnVariables":[{"name":"cleaned","nodeType":"YulTypedName","src":"4458:7:17","type":""}],"src":"4423:86:17"},{"body":{"nodeType":"YulBlock","src":"4576:51:17","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"4593:3:17"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4614:5:17"}],"functionName":{"name":"cleanup_t_uint8","nodeType":"YulIdentifier","src":"4598:15:17"},"nodeType":"YulFunctionCall","src":"4598:22:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4586:6:17"},"nodeType":"YulFunctionCall","src":"4586:35:17"},"nodeType":"YulExpressionStatement","src":"4586:35:17"}]},"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"4564:5:17","type":""},{"name":"pos","nodeType":"YulTypedName","src":"4571:3:17","type":""}],"src":"4515:112:17"},{"body":{"nodeType":"YulBlock","src":"4727:120:17","statements":[{"nodeType":"YulAssignment","src":"4737:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4749:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4760:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4745:3:17"},"nodeType":"YulFunctionCall","src":"4745:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4737:4:17"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4813:6:17"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4826:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"4837:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4822:3:17"},"nodeType":"YulFunctionCall","src":"4822:17:17"}],"functionName":{"name":"abi_encode_t_uint8_to_t_uint8_fromStack","nodeType":"YulIdentifier","src":"4773:39:17"},"nodeType":"YulFunctionCall","src":"4773:67:17"},"nodeType":"YulExpressionStatement","src":"4773:67:17"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4699:9:17","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4711:6:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4722:4:17","type":""}],"src":"4633:214:17"},{"body":{"nodeType":"YulBlock","src":"4919:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"4965:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"4967:77:17"},"nodeType":"YulFunctionCall","src":"4967:79:17"},"nodeType":"YulExpressionStatement","src":"4967:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4940:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"4949:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4936:3:17"},"nodeType":"YulFunctionCall","src":"4936:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"4961:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4932:3:17"},"nodeType":"YulFunctionCall","src":"4932:32:17"},"nodeType":"YulIf","src":"4929:119:17"},{"nodeType":"YulBlock","src":"5058:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5073:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5087:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5077:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5102:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5137:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5148:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5133:3:17"},"nodeType":"YulFunctionCall","src":"5133:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5157:7:17"}],"functionName":{"name":"abi_decode_t_uint256","nodeType":"YulIdentifier","src":"5112:20:17"},"nodeType":"YulFunctionCall","src":"5112:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5102:6:17"}]}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4889:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4900:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4912:6:17","type":""}],"src":"4853:329:17"},{"body":{"nodeType":"YulBlock","src":"5254:263:17","statements":[{"body":{"nodeType":"YulBlock","src":"5300:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5302:77:17"},"nodeType":"YulFunctionCall","src":"5302:79:17"},"nodeType":"YulExpressionStatement","src":"5302:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5275:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"5284:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5271:3:17"},"nodeType":"YulFunctionCall","src":"5271:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"5296:2:17","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5267:3:17"},"nodeType":"YulFunctionCall","src":"5267:32:17"},"nodeType":"YulIf","src":"5264:119:17"},{"nodeType":"YulBlock","src":"5393:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5408:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5422:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5412:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5437:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5472:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5483:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5468:3:17"},"nodeType":"YulFunctionCall","src":"5468:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5492:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5447:20:17"},"nodeType":"YulFunctionCall","src":"5447:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5437:6:17"}]}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5224:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5235:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5247:6:17","type":""}],"src":"5188:329:17"},{"body":{"nodeType":"YulBlock","src":"5606:391:17","statements":[{"body":{"nodeType":"YulBlock","src":"5652:83:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b","nodeType":"YulIdentifier","src":"5654:77:17"},"nodeType":"YulFunctionCall","src":"5654:79:17"},"nodeType":"YulExpressionStatement","src":"5654:79:17"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5627:7:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"5636:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5623:3:17"},"nodeType":"YulFunctionCall","src":"5623:23:17"},{"kind":"number","nodeType":"YulLiteral","src":"5648:2:17","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5619:3:17"},"nodeType":"YulFunctionCall","src":"5619:32:17"},"nodeType":"YulIf","src":"5616:119:17"},{"nodeType":"YulBlock","src":"5745:117:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5760:15:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5774:1:17","type":"","value":"0"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5764:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5789:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5824:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5835:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5820:3:17"},"nodeType":"YulFunctionCall","src":"5820:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5844:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5799:20:17"},"nodeType":"YulFunctionCall","src":"5799:53:17"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5789:6:17"}]}]},{"nodeType":"YulBlock","src":"5872:118:17","statements":[{"nodeType":"YulVariableDeclaration","src":"5887:16:17","value":{"kind":"number","nodeType":"YulLiteral","src":"5901:2:17","type":"","value":"32"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"5891:6:17","type":""}]},{"nodeType":"YulAssignment","src":"5917:63:17","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5952:9:17"},{"name":"offset","nodeType":"YulIdentifier","src":"5963:6:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5948:3:17"},"nodeType":"YulFunctionCall","src":"5948:22:17"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5972:7:17"}],"functionName":{"name":"abi_decode_t_address","nodeType":"YulIdentifier","src":"5927:20:17"},"nodeType":"YulFunctionCall","src":"5927:53:17"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5917:6:17"}]}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5568:9:17","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5579:7:17","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5591:6:17","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5599:6:17","type":""}],"src":"5523:474:17"},{"body":{"nodeType":"YulBlock","src":"6031:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6048:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6051:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6041:6:17"},"nodeType":"YulFunctionCall","src":"6041:88:17"},"nodeType":"YulExpressionStatement","src":"6041:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6145:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6148:4:17","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6138:6:17"},"nodeType":"YulFunctionCall","src":"6138:15:17"},"nodeType":"YulExpressionStatement","src":"6138:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6169:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6172:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6162:6:17"},"nodeType":"YulFunctionCall","src":"6162:15:17"},"nodeType":"YulExpressionStatement","src":"6162:15:17"}]},"name":"panic_error_0x22","nodeType":"YulFunctionDefinition","src":"6003:180:17"},{"body":{"nodeType":"YulBlock","src":"6240:269:17","statements":[{"nodeType":"YulAssignment","src":"6250:22:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"6264:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"6270:1:17","type":"","value":"2"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"6260:3:17"},"nodeType":"YulFunctionCall","src":"6260:12:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"6250:6:17"}]},{"nodeType":"YulVariableDeclaration","src":"6281:38:17","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"6311:4:17"},{"kind":"number","nodeType":"YulLiteral","src":"6317:1:17","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6307:3:17"},"nodeType":"YulFunctionCall","src":"6307:12:17"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"6285:18:17","type":""}]},{"body":{"nodeType":"YulBlock","src":"6358:51:17","statements":[{"nodeType":"YulAssignment","src":"6372:27:17","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6386:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6394:4:17","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6382:3:17"},"nodeType":"YulFunctionCall","src":"6382:17:17"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"6372:6:17"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6338:18:17"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"6331:6:17"},"nodeType":"YulFunctionCall","src":"6331:26:17"},"nodeType":"YulIf","src":"6328:81:17"},{"body":{"nodeType":"YulBlock","src":"6461:42:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x22","nodeType":"YulIdentifier","src":"6475:16:17"},"nodeType":"YulFunctionCall","src":"6475:18:17"},"nodeType":"YulExpressionStatement","src":"6475:18:17"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"6425:18:17"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"6448:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"6456:2:17","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6445:2:17"},"nodeType":"YulFunctionCall","src":"6445:14:17"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"6422:2:17"},"nodeType":"YulFunctionCall","src":"6422:38:17"},"nodeType":"YulIf","src":"6419:84:17"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"6224:4:17","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"6233:6:17","type":""}],"src":"6189:320:17"},{"body":{"nodeType":"YulBlock","src":"6543:152:17","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6560:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6563:77:17","type":"","value":"35408467139433450592217433187231851964531694900788300625387963629091585785856"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6553:6:17"},"nodeType":"YulFunctionCall","src":"6553:88:17"},"nodeType":"YulExpressionStatement","src":"6553:88:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6657:1:17","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"6660:4:17","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6650:6:17"},"nodeType":"YulFunctionCall","src":"6650:15:17"},"nodeType":"YulExpressionStatement","src":"6650:15:17"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6681:1:17","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"6684:4:17","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"6674:6:17"},"nodeType":"YulFunctionCall","src":"6674:15:17"},"nodeType":"YulExpressionStatement","src":"6674:15:17"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"6515:180:17"},{"body":{"nodeType":"YulBlock","src":"6745:147:17","statements":[{"nodeType":"YulAssignment","src":"6755:25:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6778:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6760:17:17"},"nodeType":"YulFunctionCall","src":"6760:20:17"},"variableNames":[{"name":"x","nodeType":"YulIdentifier","src":"6755:1:17"}]},{"nodeType":"YulAssignment","src":"6789:25:17","value":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"6812:1:17"}],"functionName":{"name":"cleanup_t_uint256","nodeType":"YulIdentifier","src":"6794:17:17"},"nodeType":"YulFunctionCall","src":"6794:20:17"},"variableNames":[{"name":"y","nodeType":"YulIdentifier","src":"6789:1:17"}]},{"nodeType":"YulAssignment","src":"6823:16:17","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6834:1:17"},{"name":"y","nodeType":"YulIdentifier","src":"6837:1:17"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6830:3:17"},"nodeType":"YulFunctionCall","src":"6830:9:17"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"6823:3:17"}]},{"body":{"nodeType":"YulBlock","src":"6863:22:17","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"6865:16:17"},"nodeType":"YulFunctionCall","src":"6865:18:17"},"nodeType":"YulExpressionStatement","src":"6865:18:17"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"6855:1:17"},{"name":"sum","nodeType":"YulIdentifier","src":"6858:3:17"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"6852:2:17"},"nodeType":"YulFunctionCall","src":"6852:10:17"},"nodeType":"YulIf","src":"6849:36:17"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"6732:1:17","type":""},{"name":"y","nodeType":"YulTypedName","src":"6735:1:17","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"6741:3:17","type":""}],"src":"6701:191:17"},{"body":{"nodeType":"YulBlock","src":"7004:69:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"7026:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"7034:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7022:3:17"},"nodeType":"YulFunctionCall","src":"7022:14:17"},{"hexValue":"4d6f636b555344543a204e6f7468696e6720746f206275726e","kind":"string","nodeType":"YulLiteral","src":"7038:27:17","type":"","value":"MockUSDT: Nothing to burn"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7015:6:17"},"nodeType":"YulFunctionCall","src":"7015:51:17"},"nodeType":"YulExpressionStatement","src":"7015:51:17"}]},"name":"store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"6996:6:17","type":""}],"src":"6898:175:17"},{"body":{"nodeType":"YulBlock","src":"7225:220:17","statements":[{"nodeType":"YulAssignment","src":"7235:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7301:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"7306:2:17","type":"","value":"25"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7242:58:17"},"nodeType":"YulFunctionCall","src":"7242:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"7235:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7407:3:17"}],"functionName":{"name":"store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09","nodeType":"YulIdentifier","src":"7318:88:17"},"nodeType":"YulFunctionCall","src":"7318:93:17"},"nodeType":"YulExpressionStatement","src":"7318:93:17"},{"nodeType":"YulAssignment","src":"7420:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"7431:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"7436:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7427:3:17"},"nodeType":"YulFunctionCall","src":"7427:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"7420:3:17"}]}]},"name":"abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"7213:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"7221:3:17","type":""}],"src":"7079:366:17"},{"body":{"nodeType":"YulBlock","src":"7622:248:17","statements":[{"nodeType":"YulAssignment","src":"7632:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7644:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7655:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7640:3:17"},"nodeType":"YulFunctionCall","src":"7640:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7632:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7679:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"7690:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7675:3:17"},"nodeType":"YulFunctionCall","src":"7675:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7698:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"7704:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7694:3:17"},"nodeType":"YulFunctionCall","src":"7694:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7668:6:17"},"nodeType":"YulFunctionCall","src":"7668:47:17"},"nodeType":"YulExpressionStatement","src":"7668:47:17"},{"nodeType":"YulAssignment","src":"7724:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"7858:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"7732:124:17"},"nodeType":"YulFunctionCall","src":"7732:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7724:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7602:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"7617:4:17","type":""}],"src":"7451:419:17"},{"body":{"nodeType":"YulBlock","src":"7982:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8004:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8012:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8000:3:17"},"nodeType":"YulFunctionCall","src":"8000:14:17"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nodeType":"YulLiteral","src":"8016:34:17","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7993:6:17"},"nodeType":"YulFunctionCall","src":"7993:58:17"},"nodeType":"YulExpressionStatement","src":"7993:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"8072:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"8080:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8068:3:17"},"nodeType":"YulFunctionCall","src":"8068:15:17"},{"hexValue":"207a65726f","kind":"string","nodeType":"YulLiteral","src":"8085:7:17","type":"","value":" zero"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8061:6:17"},"nodeType":"YulFunctionCall","src":"8061:32:17"},"nodeType":"YulExpressionStatement","src":"8061:32:17"}]},"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"7974:6:17","type":""}],"src":"7876:224:17"},{"body":{"nodeType":"YulBlock","src":"8252:220:17","statements":[{"nodeType":"YulAssignment","src":"8262:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8328:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"8333:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8269:58:17"},"nodeType":"YulFunctionCall","src":"8269:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8262:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8434:3:17"}],"functionName":{"name":"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8","nodeType":"YulIdentifier","src":"8345:88:17"},"nodeType":"YulFunctionCall","src":"8345:93:17"},"nodeType":"YulExpressionStatement","src":"8345:93:17"},{"nodeType":"YulAssignment","src":"8447:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8458:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"8463:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8454:3:17"},"nodeType":"YulFunctionCall","src":"8454:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"8447:3:17"}]}]},"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"8240:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"8248:3:17","type":""}],"src":"8106:366:17"},{"body":{"nodeType":"YulBlock","src":"8649:248:17","statements":[{"nodeType":"YulAssignment","src":"8659:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8671:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"8682:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8667:3:17"},"nodeType":"YulFunctionCall","src":"8667:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8659:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8706:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"8717:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8702:3:17"},"nodeType":"YulFunctionCall","src":"8702:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8725:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"8731:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8721:3:17"},"nodeType":"YulFunctionCall","src":"8721:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8695:6:17"},"nodeType":"YulFunctionCall","src":"8695:47:17"},"nodeType":"YulExpressionStatement","src":"8695:47:17"},{"nodeType":"YulAssignment","src":"8751:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"8885:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"8759:124:17"},"nodeType":"YulFunctionCall","src":"8759:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"8751:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8629:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8644:4:17","type":""}],"src":"8478:419:17"},{"body":{"nodeType":"YulBlock","src":"9009:117:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9031:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"9039:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9027:3:17"},"nodeType":"YulFunctionCall","src":"9027:14:17"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nodeType":"YulLiteral","src":"9043:34:17","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9020:6:17"},"nodeType":"YulFunctionCall","src":"9020:58:17"},"nodeType":"YulExpressionStatement","src":"9020:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"9099:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"9107:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9095:3:17"},"nodeType":"YulFunctionCall","src":"9095:15:17"},{"hexValue":"72657373","kind":"string","nodeType":"YulLiteral","src":"9112:6:17","type":"","value":"ress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9088:6:17"},"nodeType":"YulFunctionCall","src":"9088:31:17"},"nodeType":"YulExpressionStatement","src":"9088:31:17"}]},"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"9001:6:17","type":""}],"src":"8903:223:17"},{"body":{"nodeType":"YulBlock","src":"9278:220:17","statements":[{"nodeType":"YulAssignment","src":"9288:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9354:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9359:2:17","type":"","value":"36"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9295:58:17"},"nodeType":"YulFunctionCall","src":"9295:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9288:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9460:3:17"}],"functionName":{"name":"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208","nodeType":"YulIdentifier","src":"9371:88:17"},"nodeType":"YulFunctionCall","src":"9371:93:17"},"nodeType":"YulExpressionStatement","src":"9371:93:17"},{"nodeType":"YulAssignment","src":"9473:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9484:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"9489:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9480:3:17"},"nodeType":"YulFunctionCall","src":"9480:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"9473:3:17"}]}]},"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"9266:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"9274:3:17","type":""}],"src":"9132:366:17"},{"body":{"nodeType":"YulBlock","src":"9675:248:17","statements":[{"nodeType":"YulAssignment","src":"9685:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9697:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"9708:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9693:3:17"},"nodeType":"YulFunctionCall","src":"9693:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9685:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9732:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"9743:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9728:3:17"},"nodeType":"YulFunctionCall","src":"9728:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9751:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"9757:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9747:3:17"},"nodeType":"YulFunctionCall","src":"9747:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9721:6:17"},"nodeType":"YulFunctionCall","src":"9721:47:17"},"nodeType":"YulExpressionStatement","src":"9721:47:17"},{"nodeType":"YulAssignment","src":"9777:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"9911:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"9785:124:17"},"nodeType":"YulFunctionCall","src":"9785:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9777:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9655:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9670:4:17","type":""}],"src":"9504:419:17"},{"body":{"nodeType":"YulBlock","src":"10035:115:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10057:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"10065:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10053:3:17"},"nodeType":"YulFunctionCall","src":"10053:14:17"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nodeType":"YulLiteral","src":"10069:34:17","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10046:6:17"},"nodeType":"YulFunctionCall","src":"10046:58:17"},"nodeType":"YulExpressionStatement","src":"10046:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"10125:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"10133:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10121:3:17"},"nodeType":"YulFunctionCall","src":"10121:15:17"},{"hexValue":"7373","kind":"string","nodeType":"YulLiteral","src":"10138:4:17","type":"","value":"ss"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10114:6:17"},"nodeType":"YulFunctionCall","src":"10114:29:17"},"nodeType":"YulExpressionStatement","src":"10114:29:17"}]},"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"10027:6:17","type":""}],"src":"9929:221:17"},{"body":{"nodeType":"YulBlock","src":"10302:220:17","statements":[{"nodeType":"YulAssignment","src":"10312:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10378:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10383:2:17","type":"","value":"34"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10319:58:17"},"nodeType":"YulFunctionCall","src":"10319:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10312:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10484:3:17"}],"functionName":{"name":"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029","nodeType":"YulIdentifier","src":"10395:88:17"},"nodeType":"YulFunctionCall","src":"10395:93:17"},"nodeType":"YulExpressionStatement","src":"10395:93:17"},{"nodeType":"YulAssignment","src":"10497:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10508:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"10513:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10504:3:17"},"nodeType":"YulFunctionCall","src":"10504:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"10497:3:17"}]}]},"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"10290:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"10298:3:17","type":""}],"src":"10156:366:17"},{"body":{"nodeType":"YulBlock","src":"10699:248:17","statements":[{"nodeType":"YulAssignment","src":"10709:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10721:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"10732:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10717:3:17"},"nodeType":"YulFunctionCall","src":"10717:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10709:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10756:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"10767:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10752:3:17"},"nodeType":"YulFunctionCall","src":"10752:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10775:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"10781:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10771:3:17"},"nodeType":"YulFunctionCall","src":"10771:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10745:6:17"},"nodeType":"YulFunctionCall","src":"10745:47:17"},"nodeType":"YulExpressionStatement","src":"10745:47:17"},{"nodeType":"YulAssignment","src":"10801:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"10935:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"10809:124:17"},"nodeType":"YulFunctionCall","src":"10809:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10801:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10679:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"10694:4:17","type":""}],"src":"10528:419:17"},{"body":{"nodeType":"YulBlock","src":"11059:73:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"11081:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"11089:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11077:3:17"},"nodeType":"YulFunctionCall","src":"11077:14:17"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nodeType":"YulLiteral","src":"11093:31:17","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11070:6:17"},"nodeType":"YulFunctionCall","src":"11070:55:17"},"nodeType":"YulExpressionStatement","src":"11070:55:17"}]},"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"11051:6:17","type":""}],"src":"10953:179:17"},{"body":{"nodeType":"YulBlock","src":"11284:220:17","statements":[{"nodeType":"YulAssignment","src":"11294:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11360:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"11365:2:17","type":"","value":"29"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11301:58:17"},"nodeType":"YulFunctionCall","src":"11301:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"11294:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11466:3:17"}],"functionName":{"name":"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","nodeType":"YulIdentifier","src":"11377:88:17"},"nodeType":"YulFunctionCall","src":"11377:93:17"},"nodeType":"YulExpressionStatement","src":"11377:93:17"},{"nodeType":"YulAssignment","src":"11479:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11490:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"11495:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11486:3:17"},"nodeType":"YulFunctionCall","src":"11486:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"11479:3:17"}]}]},"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"11272:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"11280:3:17","type":""}],"src":"11138:366:17"},{"body":{"nodeType":"YulBlock","src":"11681:248:17","statements":[{"nodeType":"YulAssignment","src":"11691:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11703:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11714:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11699:3:17"},"nodeType":"YulFunctionCall","src":"11699:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11691:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11738:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"11749:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11734:3:17"},"nodeType":"YulFunctionCall","src":"11734:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11757:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"11763:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11753:3:17"},"nodeType":"YulFunctionCall","src":"11753:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11727:6:17"},"nodeType":"YulFunctionCall","src":"11727:47:17"},"nodeType":"YulExpressionStatement","src":"11727:47:17"},{"nodeType":"YulAssignment","src":"11783:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"11917:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"11791:124:17"},"nodeType":"YulFunctionCall","src":"11791:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"11783:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11661:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11676:4:17","type":""}],"src":"11510:419:17"},{"body":{"nodeType":"YulBlock","src":"12041:118:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12063:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"12071:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12059:3:17"},"nodeType":"YulFunctionCall","src":"12059:14:17"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nodeType":"YulLiteral","src":"12075:34:17","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12052:6:17"},"nodeType":"YulFunctionCall","src":"12052:58:17"},"nodeType":"YulExpressionStatement","src":"12052:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"12131:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"12139:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12127:3:17"},"nodeType":"YulFunctionCall","src":"12127:15:17"},{"hexValue":"6472657373","kind":"string","nodeType":"YulLiteral","src":"12144:7:17","type":"","value":"dress"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12120:6:17"},"nodeType":"YulFunctionCall","src":"12120:32:17"},"nodeType":"YulExpressionStatement","src":"12120:32:17"}]},"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"12033:6:17","type":""}],"src":"11935:224:17"},{"body":{"nodeType":"YulBlock","src":"12311:220:17","statements":[{"nodeType":"YulAssignment","src":"12321:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12387:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12392:2:17","type":"","value":"37"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12328:58:17"},"nodeType":"YulFunctionCall","src":"12328:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12321:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12493:3:17"}],"functionName":{"name":"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea","nodeType":"YulIdentifier","src":"12404:88:17"},"nodeType":"YulFunctionCall","src":"12404:93:17"},"nodeType":"YulExpressionStatement","src":"12404:93:17"},{"nodeType":"YulAssignment","src":"12506:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12517:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"12522:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12513:3:17"},"nodeType":"YulFunctionCall","src":"12513:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"12506:3:17"}]}]},"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"12299:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"12307:3:17","type":""}],"src":"12165:366:17"},{"body":{"nodeType":"YulBlock","src":"12708:248:17","statements":[{"nodeType":"YulAssignment","src":"12718:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12730:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12741:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12726:3:17"},"nodeType":"YulFunctionCall","src":"12726:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12718:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12765:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"12776:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12761:3:17"},"nodeType":"YulFunctionCall","src":"12761:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12784:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"12790:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12780:3:17"},"nodeType":"YulFunctionCall","src":"12780:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12754:6:17"},"nodeType":"YulFunctionCall","src":"12754:47:17"},"nodeType":"YulExpressionStatement","src":"12754:47:17"},{"nodeType":"YulAssignment","src":"12810:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"12944:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"12818:124:17"},"nodeType":"YulFunctionCall","src":"12818:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12810:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12688:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12703:4:17","type":""}],"src":"12537:419:17"},{"body":{"nodeType":"YulBlock","src":"13068:116:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13090:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13098:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13086:3:17"},"nodeType":"YulFunctionCall","src":"13086:14:17"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nodeType":"YulLiteral","src":"13102:34:17","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13079:6:17"},"nodeType":"YulFunctionCall","src":"13079:58:17"},"nodeType":"YulExpressionStatement","src":"13079:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"13158:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"13166:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13154:3:17"},"nodeType":"YulFunctionCall","src":"13154:15:17"},{"hexValue":"657373","kind":"string","nodeType":"YulLiteral","src":"13171:5:17","type":"","value":"ess"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13147:6:17"},"nodeType":"YulFunctionCall","src":"13147:30:17"},"nodeType":"YulExpressionStatement","src":"13147:30:17"}]},"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"13060:6:17","type":""}],"src":"12962:222:17"},{"body":{"nodeType":"YulBlock","src":"13336:220:17","statements":[{"nodeType":"YulAssignment","src":"13346:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13412:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13417:2:17","type":"","value":"35"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13353:58:17"},"nodeType":"YulFunctionCall","src":"13353:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"13346:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13518:3:17"}],"functionName":{"name":"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f","nodeType":"YulIdentifier","src":"13429:88:17"},"nodeType":"YulFunctionCall","src":"13429:93:17"},"nodeType":"YulExpressionStatement","src":"13429:93:17"},{"nodeType":"YulAssignment","src":"13531:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13542:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"13547:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13538:3:17"},"nodeType":"YulFunctionCall","src":"13538:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"13531:3:17"}]}]},"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"13324:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"13332:3:17","type":""}],"src":"13190:366:17"},{"body":{"nodeType":"YulBlock","src":"13733:248:17","statements":[{"nodeType":"YulAssignment","src":"13743:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13755:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"13766:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13751:3:17"},"nodeType":"YulFunctionCall","src":"13751:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13743:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13790:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"13801:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13786:3:17"},"nodeType":"YulFunctionCall","src":"13786:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13809:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"13815:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13805:3:17"},"nodeType":"YulFunctionCall","src":"13805:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13779:6:17"},"nodeType":"YulFunctionCall","src":"13779:47:17"},"nodeType":"YulExpressionStatement","src":"13779:47:17"},{"nodeType":"YulAssignment","src":"13835:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"13969:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"13843:124:17"},"nodeType":"YulFunctionCall","src":"13843:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13835:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13713:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13728:4:17","type":""}],"src":"13562:419:17"},{"body":{"nodeType":"YulBlock","src":"14093:119:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14115:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"14123:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14111:3:17"},"nodeType":"YulFunctionCall","src":"14111:14:17"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nodeType":"YulLiteral","src":"14127:34:17","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14104:6:17"},"nodeType":"YulFunctionCall","src":"14104:58:17"},"nodeType":"YulExpressionStatement","src":"14104:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"14183:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"14191:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14179:3:17"},"nodeType":"YulFunctionCall","src":"14179:15:17"},{"hexValue":"616c616e6365","kind":"string","nodeType":"YulLiteral","src":"14196:8:17","type":"","value":"alance"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14172:6:17"},"nodeType":"YulFunctionCall","src":"14172:33:17"},"nodeType":"YulExpressionStatement","src":"14172:33:17"}]},"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"14085:6:17","type":""}],"src":"13987:225:17"},{"body":{"nodeType":"YulBlock","src":"14364:220:17","statements":[{"nodeType":"YulAssignment","src":"14374:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14440:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"14445:2:17","type":"","value":"38"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14381:58:17"},"nodeType":"YulFunctionCall","src":"14381:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"14374:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14546:3:17"}],"functionName":{"name":"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6","nodeType":"YulIdentifier","src":"14457:88:17"},"nodeType":"YulFunctionCall","src":"14457:93:17"},"nodeType":"YulExpressionStatement","src":"14457:93:17"},{"nodeType":"YulAssignment","src":"14559:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"14570:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"14575:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14566:3:17"},"nodeType":"YulFunctionCall","src":"14566:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"14559:3:17"}]}]},"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"14352:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"14360:3:17","type":""}],"src":"14218:366:17"},{"body":{"nodeType":"YulBlock","src":"14761:248:17","statements":[{"nodeType":"YulAssignment","src":"14771:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14783:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14794:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14779:3:17"},"nodeType":"YulFunctionCall","src":"14779:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14771:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14818:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"14829:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14814:3:17"},"nodeType":"YulFunctionCall","src":"14814:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14837:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"14843:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14833:3:17"},"nodeType":"YulFunctionCall","src":"14833:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14807:6:17"},"nodeType":"YulFunctionCall","src":"14807:47:17"},"nodeType":"YulExpressionStatement","src":"14807:47:17"},{"nodeType":"YulAssignment","src":"14863:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"14997:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"14871:124:17"},"nodeType":"YulFunctionCall","src":"14871:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14863:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14741:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14756:4:17","type":""}],"src":"14590:419:17"},{"body":{"nodeType":"YulBlock","src":"15121:114:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15143:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"15151:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15139:3:17"},"nodeType":"YulFunctionCall","src":"15139:14:17"},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f20616464726573","kind":"string","nodeType":"YulLiteral","src":"15155:34:17","type":"","value":"ERC20: burn from the zero addres"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15132:6:17"},"nodeType":"YulFunctionCall","src":"15132:58:17"},"nodeType":"YulExpressionStatement","src":"15132:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"15211:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"15219:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15207:3:17"},"nodeType":"YulFunctionCall","src":"15207:15:17"},{"hexValue":"73","kind":"string","nodeType":"YulLiteral","src":"15224:3:17","type":"","value":"s"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15200:6:17"},"nodeType":"YulFunctionCall","src":"15200:28:17"},"nodeType":"YulExpressionStatement","src":"15200:28:17"}]},"name":"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"15113:6:17","type":""}],"src":"15015:220:17"},{"body":{"nodeType":"YulBlock","src":"15387:220:17","statements":[{"nodeType":"YulAssignment","src":"15397:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15463:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"15468:2:17","type":"","value":"33"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15404:58:17"},"nodeType":"YulFunctionCall","src":"15404:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"15397:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15569:3:17"}],"functionName":{"name":"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f","nodeType":"YulIdentifier","src":"15480:88:17"},"nodeType":"YulFunctionCall","src":"15480:93:17"},"nodeType":"YulExpressionStatement","src":"15480:93:17"},{"nodeType":"YulAssignment","src":"15582:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"15593:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"15598:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15589:3:17"},"nodeType":"YulFunctionCall","src":"15589:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"15582:3:17"}]}]},"name":"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"15375:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"15383:3:17","type":""}],"src":"15241:366:17"},{"body":{"nodeType":"YulBlock","src":"15784:248:17","statements":[{"nodeType":"YulAssignment","src":"15794:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15806:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15817:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15802:3:17"},"nodeType":"YulFunctionCall","src":"15802:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15794:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15841:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"15852:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15837:3:17"},"nodeType":"YulFunctionCall","src":"15837:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"15860:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"15866:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15856:3:17"},"nodeType":"YulFunctionCall","src":"15856:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15830:6:17"},"nodeType":"YulFunctionCall","src":"15830:47:17"},"nodeType":"YulExpressionStatement","src":"15830:47:17"},{"nodeType":"YulAssignment","src":"15886:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16020:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"15894:124:17"},"nodeType":"YulFunctionCall","src":"15894:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15886:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15764:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15779:4:17","type":""}],"src":"15613:419:17"},{"body":{"nodeType":"YulBlock","src":"16144:115:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16166:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"16174:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16162:3:17"},"nodeType":"YulFunctionCall","src":"16162:14:17"},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e","kind":"string","nodeType":"YulLiteral","src":"16178:34:17","type":"","value":"ERC20: burn amount exceeds balan"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16155:6:17"},"nodeType":"YulFunctionCall","src":"16155:58:17"},"nodeType":"YulExpressionStatement","src":"16155:58:17"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"16234:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"16242:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16230:3:17"},"nodeType":"YulFunctionCall","src":"16230:15:17"},{"hexValue":"6365","kind":"string","nodeType":"YulLiteral","src":"16247:4:17","type":"","value":"ce"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16223:6:17"},"nodeType":"YulFunctionCall","src":"16223:29:17"},"nodeType":"YulExpressionStatement","src":"16223:29:17"}]},"name":"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"16136:6:17","type":""}],"src":"16038:221:17"},{"body":{"nodeType":"YulBlock","src":"16411:220:17","statements":[{"nodeType":"YulAssignment","src":"16421:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16487:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"16492:2:17","type":"","value":"34"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16428:58:17"},"nodeType":"YulFunctionCall","src":"16428:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16421:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16593:3:17"}],"functionName":{"name":"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd","nodeType":"YulIdentifier","src":"16504:88:17"},"nodeType":"YulFunctionCall","src":"16504:93:17"},"nodeType":"YulExpressionStatement","src":"16504:93:17"},{"nodeType":"YulAssignment","src":"16606:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16617:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"16622:2:17","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16613:3:17"},"nodeType":"YulFunctionCall","src":"16613:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"16606:3:17"}]}]},"name":"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"16399:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"16407:3:17","type":""}],"src":"16265:366:17"},{"body":{"nodeType":"YulBlock","src":"16808:248:17","statements":[{"nodeType":"YulAssignment","src":"16818:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16830:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"16841:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16826:3:17"},"nodeType":"YulFunctionCall","src":"16826:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16818:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16865:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"16876:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16861:3:17"},"nodeType":"YulFunctionCall","src":"16861:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"16884:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"16890:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"16880:3:17"},"nodeType":"YulFunctionCall","src":"16880:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16854:6:17"},"nodeType":"YulFunctionCall","src":"16854:47:17"},"nodeType":"YulExpressionStatement","src":"16854:47:17"},{"nodeType":"YulAssignment","src":"16910:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17044:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"16918:124:17"},"nodeType":"YulFunctionCall","src":"16918:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16910:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16788:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16803:4:17","type":""}],"src":"16637:419:17"},{"body":{"nodeType":"YulBlock","src":"17168:75:17","statements":[{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"17190:6:17"},{"kind":"number","nodeType":"YulLiteral","src":"17198:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17186:3:17"},"nodeType":"YulFunctionCall","src":"17186:14:17"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nodeType":"YulLiteral","src":"17202:33:17","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17179:6:17"},"nodeType":"YulFunctionCall","src":"17179:57:17"},"nodeType":"YulExpressionStatement","src":"17179:57:17"}]},"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nodeType":"YulTypedName","src":"17160:6:17","type":""}],"src":"17062:181:17"},{"body":{"nodeType":"YulBlock","src":"17395:220:17","statements":[{"nodeType":"YulAssignment","src":"17405:74:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17471:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"17476:2:17","type":"","value":"31"}],"functionName":{"name":"array_storeLengthForEncoding_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17412:58:17"},"nodeType":"YulFunctionCall","src":"17412:67:17"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17405:3:17"}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17577:3:17"}],"functionName":{"name":"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e","nodeType":"YulIdentifier","src":"17488:88:17"},"nodeType":"YulFunctionCall","src":"17488:93:17"},"nodeType":"YulExpressionStatement","src":"17488:93:17"},{"nodeType":"YulAssignment","src":"17590:19:17","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17601:3:17"},{"kind":"number","nodeType":"YulLiteral","src":"17606:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17597:3:17"},"nodeType":"YulFunctionCall","src":"17597:12:17"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"17590:3:17"}]}]},"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nodeType":"YulTypedName","src":"17383:3:17","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"17391:3:17","type":""}],"src":"17249:366:17"},{"body":{"nodeType":"YulBlock","src":"17792:248:17","statements":[{"nodeType":"YulAssignment","src":"17802:26:17","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17814:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"17825:2:17","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17810:3:17"},"nodeType":"YulFunctionCall","src":"17810:18:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17802:4:17"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17849:9:17"},{"kind":"number","nodeType":"YulLiteral","src":"17860:1:17","type":"","value":"0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17845:3:17"},"nodeType":"YulFunctionCall","src":"17845:17:17"},{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"17868:4:17"},{"name":"headStart","nodeType":"YulIdentifier","src":"17874:9:17"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17864:3:17"},"nodeType":"YulFunctionCall","src":"17864:20:17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17838:6:17"},"nodeType":"YulFunctionCall","src":"17838:47:17"},"nodeType":"YulExpressionStatement","src":"17838:47:17"},{"nodeType":"YulAssignment","src":"17894:139:17","value":{"arguments":[{"name":"tail","nodeType":"YulIdentifier","src":"18028:4:17"}],"functionName":{"name":"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack","nodeType":"YulIdentifier","src":"17902:124:17"},"nodeType":"YulFunctionCall","src":"17902:131:17"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17894:4:17"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17772:9:17","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17787:4:17","type":""}],"src":"17621:419:17"}]},"contents":"{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09(memPtr) {\n\n mstore(add(memPtr, 0), \"MockUSDT: Nothing to burn\")\n\n }\n\n function abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_43547a7ae62213e7dce03299d8a9d87ef695a2312e1671bb080ae04ee02aca09_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(memPtr, 32), \"ce\")\n\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n","id":17,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a0712d6811610066578063a0712d681461024d578063a457c2d714610269578063a9059cbb14610299578063dd62ed3e146102c9576100ea565b806370a08231146101f557806395d89b41146102255780639975038c14610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102f9565b6040516101049190610f29565b60405180910390f35b61012760048036038101906101229190610fe4565b61038b565b604051610134919061103f565b60405180910390f35b6101456103ae565b6040516101529190611069565b60405180910390f35b61017560048036038101906101709190611084565b6103b8565b604051610182919061103f565b60405180910390f35b6101936103e7565b6040516101a091906110f3565b60405180910390f35b6101c360048036038101906101be9190610fe4565b6103f0565b6040516101d0919061103f565b60405180910390f35b6101f360048036038101906101ee919061110e565b610427565b005b61020f600480360381019061020a919061113b565b610434565b60405161021c9190611069565b60405180910390f35b61022d61047c565b60405161023a9190610f29565b60405180910390f35b61024b61050e565b005b6102676004803603810190610262919061110e565b61056b565b005b610283600480360381019061027e9190610fe4565b610578565b604051610290919061103f565b60405180910390f35b6102b360048036038101906102ae9190610fe4565b6105ef565b6040516102c0919061103f565b60405180910390f35b6102e360048036038101906102de9190611168565b610612565b6040516102f09190611069565b60405180910390f35b606060038054610308906111d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610334906111d7565b80156103815780601f1061035657610100808354040283529160200191610381565b820191906000526020600020905b81548152906001019060200180831161036457829003601f168201915b5050505050905090565b600080610396610699565b90506103a38185856106a1565b600191505092915050565b6000600254905090565b6000806103c3610699565b90506103d085828561086a565b6103db8585856108f6565b60019150509392505050565b60006012905090565b6000806103fb610699565b905061041c81858561040d8589610612565b6104179190611237565b6106a1565b600191505092915050565b6104313382610b6c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461048b906111d7565b80601f01602080910402602001604051908101604052809291908181526020018280546104b7906111d7565b80156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600061051933610434565b90506000811161055e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610555906112b7565b60405180910390fd5b6105683382610b6c565b50565b6105753382610d39565b50565b600080610583610699565b905060006105918286610612565b9050838110156105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611349565b60405180910390fd5b6105e382868684036106a1565b60019250505092915050565b6000806105fa610699565b90506106078185856108f6565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610707906113db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361077f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107769061146d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161085d9190611069565b60405180910390a3505050565b60006108768484610612565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108f057818110156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d9906114d9565b60405180910390fd5b6108ef84848484036106a1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c9061156b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb906115fd565b60405180910390fd5b6109df838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061168f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b539190611069565b60405180910390a3610b66848484610e94565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611721565b60405180910390fd5b610be782600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c64906117b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d209190611069565b60405180910390a3610d3483600084610e94565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061181f565b60405180910390fd5b610db460008383610e8f565b8060026000828254610dc69190611237565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e779190611069565b60405180910390a3610e8b60008383610e94565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ed3578082015181840152602081019050610eb8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610efb82610e99565b610f058185610ea4565b9350610f15818560208601610eb5565b610f1e81610edf565b840191505092915050565b60006020820190508181036000830152610f438184610ef0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f7b82610f50565b9050919050565b610f8b81610f70565b8114610f9657600080fd5b50565b600081359050610fa881610f82565b92915050565b6000819050919050565b610fc181610fae565b8114610fcc57600080fd5b50565b600081359050610fde81610fb8565b92915050565b60008060408385031215610ffb57610ffa610f4b565b5b600061100985828601610f99565b925050602061101a85828601610fcf565b9150509250929050565b60008115159050919050565b61103981611024565b82525050565b60006020820190506110546000830184611030565b92915050565b61106381610fae565b82525050565b600060208201905061107e600083018461105a565b92915050565b60008060006060848603121561109d5761109c610f4b565b5b60006110ab86828701610f99565b93505060206110bc86828701610f99565b92505060406110cd86828701610fcf565b9150509250925092565b600060ff82169050919050565b6110ed816110d7565b82525050565b600060208201905061110860008301846110e4565b92915050565b60006020828403121561112457611123610f4b565b5b600061113284828501610fcf565b91505092915050565b60006020828403121561115157611150610f4b565b5b600061115f84828501610f99565b91505092915050565b6000806040838503121561117f5761117e610f4b565b5b600061118d85828601610f99565b925050602061119e85828601610f99565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111ef57607f821691505b602082108103611202576112016111a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061124282610fae565b915061124d83610fae565b925082820190508082111561126557611264611208565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e00000000000000600082015250565b60006112a1601983610ea4565b91506112ac8261126b565b602082019050919050565b600060208201905081810360008301526112d081611294565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611333602583610ea4565b915061133e826112d7565b604082019050919050565b6000602082019050818103600083015261136281611326565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113c5602483610ea4565b91506113d082611369565b604082019050919050565b600060208201905081810360008301526113f4816113b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611457602283610ea4565b9150611462826113fb565b604082019050919050565b600060208201905081810360008301526114868161144a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114c3601d83610ea4565b91506114ce8261148d565b602082019050919050565b600060208201905081810360008301526114f2816114b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611555602583610ea4565b9150611560826114f9565b604082019050919050565b6000602082019050818103600083015261158481611548565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115e7602383610ea4565b91506115f28261158b565b604082019050919050565b60006020820190508181036000830152611616816115da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611679602683610ea4565b91506116848261161d565b604082019050919050565b600060208201905081810360008301526116a88161166c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061170b602183610ea4565b9150611716826116af565b604082019050919050565b6000602082019050818103600083015261173a816116fe565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061179d602283610ea4565b91506117a882611741565b604082019050919050565b600060208201905081810360008301526117cc81611790565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611809601f83610ea4565b9150611814826117d3565b602082019050919050565b60006020820190508181036000830152611838816117fc565b905091905056fea264697066735822122068d713bf4736c676499489be7a244631ce61e66372a491b3cb5640b12172fe9464736f6c63430008120033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA0712D68 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x269 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x299 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2C9 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x9975038C EQ PUSH2 0x243 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x15B JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1D9 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x2F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xF29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x122 SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x38B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x145 PUSH2 0x3AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x175 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x170 SWAP2 SWAP1 PUSH2 0x1084 JUMP JUMPDEST PUSH2 0x3B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x193 PUSH2 0x3E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BE SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x3F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D0 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x20F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20A SWAP2 SWAP1 PUSH2 0x113B JUMP JUMPDEST PUSH2 0x434 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22D PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23A SWAP2 SWAP1 PUSH2 0xF29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24B PUSH2 0x50E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x110E JUMP JUMPDEST PUSH2 0x56B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x283 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x27E SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x578 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x290 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AE SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH2 0x5EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C0 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x1168 JUMP JUMPDEST PUSH2 0x612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F0 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x308 SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x334 SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x381 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x356 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x381 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x364 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x396 PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A3 DUP2 DUP6 DUP6 PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3C3 PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x3D0 DUP6 DUP3 DUP6 PUSH2 0x86A JUMP JUMPDEST PUSH2 0x3DB DUP6 DUP6 DUP6 PUSH2 0x8F6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3FB PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x41C DUP2 DUP6 DUP6 PUSH2 0x40D DUP6 DUP10 PUSH2 0x612 JUMP JUMPDEST PUSH2 0x417 SWAP2 SWAP1 PUSH2 0x1237 JUMP JUMPDEST PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x431 CALLER DUP3 PUSH2 0xB6C JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x48B SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4B7 SWAP1 PUSH2 0x11D7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x504 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4D9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x504 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4E7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x519 CALLER PUSH2 0x434 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x55E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x555 SWAP1 PUSH2 0x12B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x568 CALLER DUP3 PUSH2 0xB6C JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x575 CALLER DUP3 PUSH2 0xD39 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x583 PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x591 DUP3 DUP7 PUSH2 0x612 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x5D6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5CD SWAP1 PUSH2 0x1349 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5E3 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x6A1 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5FA PUSH2 0x699 JUMP JUMPDEST SWAP1 POP PUSH2 0x607 DUP2 DUP6 DUP6 PUSH2 0x8F6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x710 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x707 SWAP1 PUSH2 0x13DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x77F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x776 SWAP1 PUSH2 0x146D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x85D SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x876 DUP5 DUP5 PUSH2 0x612 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x8F0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x8E2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D9 SWAP1 PUSH2 0x14D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8EF DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x6A1 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x965 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x95C SWAP1 PUSH2 0x156B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x9D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9CB SWAP1 PUSH2 0x15FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9DF DUP4 DUP4 DUP4 PUSH2 0xE8F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA65 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA5C SWAP1 PUSH2 0x168F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB53 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xB66 DUP5 DUP5 DUP5 PUSH2 0xE94 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBDB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD2 SWAP1 PUSH2 0x1721 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBE7 DUP3 PUSH1 0x0 DUP4 PUSH2 0xE8F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC6D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC64 SWAP1 PUSH2 0x17B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xD20 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xD34 DUP4 PUSH1 0x0 DUP5 PUSH2 0xE94 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDA8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD9F SWAP1 PUSH2 0x181F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDB4 PUSH1 0x0 DUP4 DUP4 PUSH2 0xE8F JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDC6 SWAP2 SWAP1 PUSH2 0x1237 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE77 SWAP2 SWAP1 PUSH2 0x1069 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE8B PUSH1 0x0 DUP4 DUP4 PUSH2 0xE94 JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xED3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xEB8 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEFB DUP3 PUSH2 0xE99 JUMP JUMPDEST PUSH2 0xF05 DUP2 DUP6 PUSH2 0xEA4 JUMP JUMPDEST SWAP4 POP PUSH2 0xF15 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xEB5 JUMP JUMPDEST PUSH2 0xF1E DUP2 PUSH2 0xEDF JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF43 DUP2 DUP5 PUSH2 0xEF0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF7B DUP3 PUSH2 0xF50 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF8B DUP2 PUSH2 0xF70 JUMP JUMPDEST DUP2 EQ PUSH2 0xF96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFA8 DUP2 PUSH2 0xF82 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFC1 DUP2 PUSH2 0xFAE JUMP JUMPDEST DUP2 EQ PUSH2 0xFCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFDE DUP2 PUSH2 0xFB8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFFB JUMPI PUSH2 0xFFA PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1009 DUP6 DUP3 DUP7 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x101A DUP6 DUP3 DUP7 ADD PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1039 DUP2 PUSH2 0x1024 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1054 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1030 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1063 DUP2 PUSH2 0xFAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x107E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x105A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x109D JUMPI PUSH2 0x109C PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10AB DUP7 DUP3 DUP8 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x10BC DUP7 DUP3 DUP8 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x10CD DUP7 DUP3 DUP8 ADD PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10ED DUP2 PUSH2 0x10D7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1108 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1124 JUMPI PUSH2 0x1123 PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1132 DUP5 DUP3 DUP6 ADD PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1151 JUMPI PUSH2 0x1150 PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x115F DUP5 DUP3 DUP6 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x117F JUMPI PUSH2 0x117E PUSH2 0xF4B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x118D DUP6 DUP3 DUP7 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x119E DUP6 DUP3 DUP7 ADD PUSH2 0xF99 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11EF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1202 JUMPI PUSH2 0x1201 PUSH2 0x11A8 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1242 DUP3 PUSH2 0xFAE JUMP JUMPDEST SWAP2 POP PUSH2 0x124D DUP4 PUSH2 0xFAE JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1265 JUMPI PUSH2 0x1264 PUSH2 0x1208 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4D6F636B555344543A204E6F7468696E6720746F206275726E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12A1 PUSH1 0x19 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x12AC DUP3 PUSH2 0x126B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12D0 DUP2 PUSH2 0x1294 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1333 PUSH1 0x25 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x133E DUP3 PUSH2 0x12D7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1362 DUP2 PUSH2 0x1326 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13C5 PUSH1 0x24 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x13D0 DUP3 PUSH2 0x1369 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x13F4 DUP2 PUSH2 0x13B8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1457 PUSH1 0x22 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1462 DUP3 PUSH2 0x13FB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1486 DUP2 PUSH2 0x144A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14C3 PUSH1 0x1D DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x14CE DUP3 PUSH2 0x148D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14F2 DUP2 PUSH2 0x14B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1555 PUSH1 0x25 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1560 DUP3 PUSH2 0x14F9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1584 DUP2 PUSH2 0x1548 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15E7 PUSH1 0x23 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x15F2 DUP3 PUSH2 0x158B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1616 DUP2 PUSH2 0x15DA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1679 PUSH1 0x26 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1684 DUP3 PUSH2 0x161D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x16A8 DUP2 PUSH2 0x166C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x170B PUSH1 0x21 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1716 DUP3 PUSH2 0x16AF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x173A DUP2 PUSH2 0x16FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179D PUSH1 0x22 DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x17A8 DUP3 PUSH2 0x1741 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x17CC DUP2 PUSH2 0x1790 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1809 PUSH1 0x1F DUP4 PUSH2 0xEA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x1814 DUP3 PUSH2 0x17D3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1838 DUP2 PUSH2 0x17FC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0xD713BF4736C6764994 DUP10 0xBE PUSH27 0x244631CE61E66372A491B3CB5640B12172FE9464736F6C63430008 SLT STOP CALLER ","sourceMap":"162:496:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;379:83:16;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3419:125:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;468:188:16;;;:::i;:::-;;290:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6575:427:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;379:83:16:-;429:26;435:10;447:7;429:5;:26::i;:::-;379:83;:::o;3419:125:6:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;468:188:16:-;506:18;527:21;537:10;527:9;:21::i;:::-;506:42;;579:1;566:10;:14;558:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;620:29;626:10;638;620:5;:29::i;:::-;496:160;468:188::o;290:83::-;340:26;346:10;358:7;340:5;:26::i;:::-;290:83;:::o;6575:427:6:-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;655:96:9:-;708:7;734:10;727:17;;655:96;:::o;10457:340:6:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;9375:659::-;9477:1;9458:21;;:7;:21;;;9450:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9528:49;9549:7;9566:1;9570:6;9528:20;:49::i;:::-;9588:22;9613:9;:18;9623:7;9613:18;;;;;;;;;;;;;;;;9588:43;;9667:6;9649:14;:24;;9641:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9784:6;9767:14;:23;9746:9;:18;9756:7;9746:18;;;;;;;;;;;;;;;:44;;;;9899:6;9883:12;;:22;;;;;;;;;;;9957:1;9931:37;;9940:7;9931:37;;;9961:6;9931:37;;;;;;:::i;:::-;;;;;;;;9979:48;9999:7;10016:1;10020:6;9979:19;:48::i;:::-;9440:594;9375:659;;:::o;8520:535::-;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;:49::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;:48::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:17:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:180::-;6563:77;6560:1;6553:88;6660:4;6657:1;6650:15;6684:4;6681:1;6674:15;6701:191;6741:3;6760:20;6778:1;6760:20;:::i;:::-;6755:25;;6794:20;6812:1;6794:20;:::i;:::-;6789:25;;6837:1;6834;6830:9;6823:16;;6858:3;6855:1;6852:10;6849:36;;;6865:18;;:::i;:::-;6849:36;6701:191;;;;:::o;6898:175::-;7038:27;7034:1;7026:6;7022:14;7015:51;6898:175;:::o;7079:366::-;7221:3;7242:67;7306:2;7301:3;7242:67;:::i;:::-;7235:74;;7318:93;7407:3;7318:93;:::i;:::-;7436:2;7431:3;7427:12;7420:19;;7079:366;;;:::o;7451:419::-;7617:4;7655:2;7644:9;7640:18;7632:26;;7704:9;7698:4;7694:20;7690:1;7679:9;7675:17;7668:47;7732:131;7858:4;7732:131;:::i;:::-;7724:139;;7451:419;;;:::o;7876:224::-;8016:34;8012:1;8004:6;8000:14;7993:58;8085:7;8080:2;8072:6;8068:15;8061:32;7876:224;:::o;8106:366::-;8248:3;8269:67;8333:2;8328:3;8269:67;:::i;:::-;8262:74;;8345:93;8434:3;8345:93;:::i;:::-;8463:2;8458:3;8454:12;8447:19;;8106:366;;;:::o;8478:419::-;8644:4;8682:2;8671:9;8667:18;8659:26;;8731:9;8725:4;8721:20;8717:1;8706:9;8702:17;8695:47;8759:131;8885:4;8759:131;:::i;:::-;8751:139;;8478:419;;;:::o;8903:223::-;9043:34;9039:1;9031:6;9027:14;9020:58;9112:6;9107:2;9099:6;9095:15;9088:31;8903:223;:::o;9132:366::-;9274:3;9295:67;9359:2;9354:3;9295:67;:::i;:::-;9288:74;;9371:93;9460:3;9371:93;:::i;:::-;9489:2;9484:3;9480:12;9473:19;;9132:366;;;:::o;9504:419::-;9670:4;9708:2;9697:9;9693:18;9685:26;;9757:9;9751:4;9747:20;9743:1;9732:9;9728:17;9721:47;9785:131;9911:4;9785:131;:::i;:::-;9777:139;;9504:419;;;:::o;9929:221::-;10069:34;10065:1;10057:6;10053:14;10046:58;10138:4;10133:2;10125:6;10121:15;10114:29;9929:221;:::o;10156:366::-;10298:3;10319:67;10383:2;10378:3;10319:67;:::i;:::-;10312:74;;10395:93;10484:3;10395:93;:::i;:::-;10513:2;10508:3;10504:12;10497:19;;10156:366;;;:::o;10528:419::-;10694:4;10732:2;10721:9;10717:18;10709:26;;10781:9;10775:4;10771:20;10767:1;10756:9;10752:17;10745:47;10809:131;10935:4;10809:131;:::i;:::-;10801:139;;10528:419;;;:::o;10953:179::-;11093:31;11089:1;11081:6;11077:14;11070:55;10953:179;:::o;11138:366::-;11280:3;11301:67;11365:2;11360:3;11301:67;:::i;:::-;11294:74;;11377:93;11466:3;11377:93;:::i;:::-;11495:2;11490:3;11486:12;11479:19;;11138:366;;;:::o;11510:419::-;11676:4;11714:2;11703:9;11699:18;11691:26;;11763:9;11757:4;11753:20;11749:1;11738:9;11734:17;11727:47;11791:131;11917:4;11791:131;:::i;:::-;11783:139;;11510:419;;;:::o;11935:224::-;12075:34;12071:1;12063:6;12059:14;12052:58;12144:7;12139:2;12131:6;12127:15;12120:32;11935:224;:::o;12165:366::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:419::-;12703:4;12741:2;12730:9;12726:18;12718:26;;12790:9;12784:4;12780:20;12776:1;12765:9;12761:17;12754:47;12818:131;12944:4;12818:131;:::i;:::-;12810:139;;12537:419;;;:::o;12962:222::-;13102:34;13098:1;13090:6;13086:14;13079:58;13171:5;13166:2;13158:6;13154:15;13147:30;12962:222;:::o;13190:366::-;13332:3;13353:67;13417:2;13412:3;13353:67;:::i;:::-;13346:74;;13429:93;13518:3;13429:93;:::i;:::-;13547:2;13542:3;13538:12;13531:19;;13190:366;;;:::o;13562:419::-;13728:4;13766:2;13755:9;13751:18;13743:26;;13815:9;13809:4;13805:20;13801:1;13790:9;13786:17;13779:47;13843:131;13969:4;13843:131;:::i;:::-;13835:139;;13562:419;;;:::o;13987:225::-;14127:34;14123:1;14115:6;14111:14;14104:58;14196:8;14191:2;14183:6;14179:15;14172:33;13987:225;:::o;14218:366::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:419::-;14756:4;14794:2;14783:9;14779:18;14771:26;;14843:9;14837:4;14833:20;14829:1;14818:9;14814:17;14807:47;14871:131;14997:4;14871:131;:::i;:::-;14863:139;;14590:419;;;:::o;15015:220::-;15155:34;15151:1;15143:6;15139:14;15132:58;15224:3;15219:2;15211:6;15207:15;15200:28;15015:220;:::o;15241:366::-;15383:3;15404:67;15468:2;15463:3;15404:67;:::i;:::-;15397:74;;15480:93;15569:3;15480:93;:::i;:::-;15598:2;15593:3;15589:12;15582:19;;15241:366;;;:::o;15613:419::-;15779:4;15817:2;15806:9;15802:18;15794:26;;15866:9;15860:4;15856:20;15852:1;15841:9;15837:17;15830:47;15894:131;16020:4;15894:131;:::i;:::-;15886:139;;15613:419;;;:::o;16038:221::-;16178:34;16174:1;16166:6;16162:14;16155:58;16247:4;16242:2;16234:6;16230:15;16223:29;16038:221;:::o;16265:366::-;16407:3;16428:67;16492:2;16487:3;16428:67;:::i;:::-;16421:74;;16504:93;16593:3;16504:93;:::i;:::-;16622:2;16617:3;16613:12;16606:19;;16265:366;;;:::o;16637:419::-;16803:4;16841:2;16830:9;16826:18;16818:26;;16890:9;16884:4;16880:20;16876:1;16865:9;16861:17;16854:47;16918:131;17044:4;16918:131;:::i;:::-;16910:139;;16637:419;;;:::o;17062:181::-;17202:33;17198:1;17190:6;17186:14;17179:57;17062:181;:::o;17249:366::-;17391:3;17412:67;17476:2;17471:3;17412:67;:::i;:::-;17405:74;;17488:93;17577:3;17488:93;:::i;:::-;17606:2;17601:3;17597:12;17590:19;;17249:366;;;:::o;17621:419::-;17787:4;17825:2;17814:9;17810:18;17802:26;;17874:9;17868:4;17864:20;17860:1;17849:9;17845:17;17838:47;17902:131;18028:4;17902:131;:::i;:::-;17894:139;;17621:419;;;:::o"},"gasEstimates":{"creation":{"codeDepositCost":"1252200","executionCost":"infinite","totalCost":"infinite"},"external":{"allowance(address,address)":"infinite","approve(address,uint256)":"infinite","balanceOf(address)":"2864","burn(uint256)":"infinite","burnAll()":"36156","decimals()":"388","decreaseAllowance(address,uint256)":"infinite","increaseAllowance(address,uint256)":"infinite","mint(uint256)":"infinite","name()":"infinite","symbol()":"infinite","totalSupply()":"2505","transfer(address,uint256)":"infinite","transferFrom(address,address,uint256)":"infinite"}},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(uint256)":"42966c68","burnAll()":"9975038c","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","increaseAllowance(address,uint256)":"39509351","mint(uint256)":"a0712d68","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"burnAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Mock mintable USDC\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/MockUSDC.sol\":\"MockUSDT\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * The default value of {decimals} is 18. To change this, you should override\\n * this function so it returns a different value.\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n mapping(address => uint256) private _balances;\\n\\n mapping(address => mapping(address => uint256)) private _allowances;\\n\\n uint256 private _totalSupply;\\n\\n string private _name;\\n string private _symbol;\\n\\n /**\\n * @dev Sets the values for {name} and {symbol}.\\n *\\n * All two of these values are immutable: they can only be set once during\\n * construction.\\n */\\n constructor(string memory name_, string memory symbol_) {\\n _name = name_;\\n _symbol = symbol_;\\n }\\n\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() public view virtual override returns (string memory) {\\n return _name;\\n }\\n\\n /**\\n * @dev Returns the symbol of the token, usually a shorter version of the\\n * name.\\n */\\n function symbol() public view virtual override returns (string memory) {\\n return _symbol;\\n }\\n\\n /**\\n * @dev Returns the number of decimals used to get its user representation.\\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n *\\n * Tokens usually opt for a value of 18, imitating the relationship between\\n * Ether and Wei. This is the default value returned by this function, unless\\n * it's overridden.\\n *\\n * NOTE: This information is only used for _display_ purposes: it in\\n * no way affects any of the arithmetic of the contract, including\\n * {IERC20-balanceOf} and {IERC20-transfer}.\\n */\\n function decimals() public view virtual override returns (uint8) {\\n return 18;\\n }\\n\\n /**\\n * @dev See {IERC20-totalSupply}.\\n */\\n function totalSupply() public view virtual override returns (uint256) {\\n return _totalSupply;\\n }\\n\\n /**\\n * @dev See {IERC20-balanceOf}.\\n */\\n function balanceOf(address account) public view virtual override returns (uint256) {\\n return _balances[account];\\n }\\n\\n /**\\n * @dev See {IERC20-transfer}.\\n *\\n * Requirements:\\n *\\n * - `to` cannot be the zero address.\\n * - the caller must have a balance of at least `amount`.\\n */\\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _transfer(owner, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-allowance}.\\n */\\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n return _allowances[owner][spender];\\n }\\n\\n /**\\n * @dev See {IERC20-approve}.\\n *\\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\\n * `transferFrom`. This is semantically equivalent to an infinite approval.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n */\\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, amount);\\n return true;\\n }\\n\\n /**\\n * @dev See {IERC20-transferFrom}.\\n *\\n * Emits an {Approval} event indicating the updated allowance. This is not\\n * required by the EIP. See the note at the beginning of {ERC20}.\\n *\\n * NOTE: Does not update the allowance if the current allowance\\n * is the maximum `uint256`.\\n *\\n * Requirements:\\n *\\n * - `from` and `to` cannot be the zero address.\\n * - `from` must have a balance of at least `amount`.\\n * - the caller must have allowance for ``from``'s tokens of at least\\n * `amount`.\\n */\\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\\n address spender = _msgSender();\\n _spendAllowance(from, spender, amount);\\n _transfer(from, to, amount);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically increases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n */\\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n _approve(owner, spender, allowance(owner, spender) + addedValue);\\n return true;\\n }\\n\\n /**\\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n *\\n * This is an alternative to {approve} that can be used as a mitigation for\\n * problems described in {IERC20-approve}.\\n *\\n * Emits an {Approval} event indicating the updated allowance.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `spender` must have allowance for the caller of at least\\n * `subtractedValue`.\\n */\\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n address owner = _msgSender();\\n uint256 currentAllowance = allowance(owner, spender);\\n require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - subtractedValue);\\n }\\n\\n return true;\\n }\\n\\n /**\\n * @dev Moves `amount` of tokens from `from` to `to`.\\n *\\n * This internal function is equivalent to {transfer}, and can be used to\\n * e.g. implement automatic token fees, slashing mechanisms, etc.\\n *\\n * Emits a {Transfer} event.\\n *\\n * Requirements:\\n *\\n * - `from` cannot be the zero address.\\n * - `to` cannot be the zero address.\\n * - `from` must have a balance of at least `amount`.\\n */\\n function _transfer(address from, address to, uint256 amount) internal virtual {\\n require(from != address(0), \\\"ERC20: transfer from the zero address\\\");\\n require(to != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n _beforeTokenTransfer(from, to, amount);\\n\\n uint256 fromBalance = _balances[from];\\n require(fromBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n unchecked {\\n _balances[from] = fromBalance - amount;\\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\\n // decrementing then incrementing.\\n _balances[to] += amount;\\n }\\n\\n emit Transfer(from, to, amount);\\n\\n _afterTokenTransfer(from, to, amount);\\n }\\n\\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n * the total supply.\\n *\\n * Emits a {Transfer} event with `from` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n */\\n function _mint(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n _beforeTokenTransfer(address(0), account, amount);\\n\\n _totalSupply += amount;\\n unchecked {\\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\\n _balances[account] += amount;\\n }\\n emit Transfer(address(0), account, amount);\\n\\n _afterTokenTransfer(address(0), account, amount);\\n }\\n\\n /**\\n * @dev Destroys `amount` tokens from `account`, reducing the\\n * total supply.\\n *\\n * Emits a {Transfer} event with `to` set to the zero address.\\n *\\n * Requirements:\\n *\\n * - `account` cannot be the zero address.\\n * - `account` must have at least `amount` tokens.\\n */\\n function _burn(address account, uint256 amount) internal virtual {\\n require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n _beforeTokenTransfer(account, address(0), amount);\\n\\n uint256 accountBalance = _balances[account];\\n require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n unchecked {\\n _balances[account] = accountBalance - amount;\\n // Overflow not possible: amount <= accountBalance <= totalSupply.\\n _totalSupply -= amount;\\n }\\n\\n emit Transfer(account, address(0), amount);\\n\\n _afterTokenTransfer(account, address(0), amount);\\n }\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n *\\n * This internal function is equivalent to `approve`, and can be used to\\n * e.g. set automatic allowances for certain subsystems, etc.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `owner` cannot be the zero address.\\n * - `spender` cannot be the zero address.\\n */\\n function _approve(address owner, address spender, uint256 amount) internal virtual {\\n require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n _allowances[owner][spender] = amount;\\n emit Approval(owner, spender, amount);\\n }\\n\\n /**\\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\\n *\\n * Does not update the allowance amount in case of infinite allowance.\\n * Revert if not enough allowance is available.\\n *\\n * Might emit an {Approval} event.\\n */\\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\\n uint256 currentAllowance = allowance(owner, spender);\\n if (currentAllowance != type(uint256).max) {\\n require(currentAllowance >= amount, \\\"ERC20: insufficient allowance\\\");\\n unchecked {\\n _approve(owner, spender, currentAllowance - amount);\\n }\\n }\\n }\\n\\n /**\\n * @dev Hook that is called before any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * will be transferred to `to`.\\n * - when `from` is zero, `amount` tokens will be minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n\\n /**\\n * @dev Hook that is called after any transfer of tokens. This includes\\n * minting and burning.\\n *\\n * Calling conditions:\\n *\\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n * has been transferred to `to`.\\n * - when `from` is zero, `amount` tokens have been minted for `to`.\\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n * - `from` and `to` are never both zero.\\n *\\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n */\\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\\n}\\n\",\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\n */\\ninterface IERC20Metadata is IERC20 {\\n /**\\n * @dev Returns the name of the token.\\n */\\n function name() external view returns (string memory);\\n\\n /**\\n * @dev Returns the symbol of the token.\\n */\\n function symbol() external view returns (string memory);\\n\\n /**\\n * @dev Returns the decimals places of the token.\\n */\\n function decimals() external view returns (uint8);\\n}\\n\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"},\"contracts/mocks/MockUSDC.sol\":{\"content\":\"//SPDX-License-Identifier: UNLICENSED\\npragma solidity ^0.8.18;\\n\\nimport {ERC20} from \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\n\\n/// @dev Mock mintable USDC\\ncontract MockUSDT is ERC20 {\\n constructor() ERC20(\\\"MockUDSC\\\", \\\"MUSDC\\\") {\\n _mint(msg.sender, 1_000_000E18);\\n }\\n\\n function mint(uint256 _amount) external {\\n _mint(msg.sender, _amount);\\n }\\n\\n function burn(uint256 _amount) external {\\n _burn(msg.sender, _amount);\\n }\\n\\n function burnAll() external {\\n uint256 _balanceOf = balanceOf(msg.sender);\\n require(_balanceOf > 0, \\\"MockUSDT: Nothing to burn\\\");\\n _burn(msg.sender, _balanceOf);\\n }\\n}\\n\",\"keccak256\":\"0x983ae7c4c407602537b8623a63a3598cf983fbb637943d39338f0bb0fb6d4f13\",\"license\":\"UNLICENSED\"}},\"version\":1}","storageLayout":{"storage":[{"astId":933,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":939,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":941,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":943,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":945,"contract":"contracts/mocks/MockUSDC.sol:MockUSDT","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}},"userdoc":{"kind":"user","methods":{},"version":1}}}}}} \ No newline at end of file diff --git a/artifacts/contracts/Gateway.sol/Gateway.dbg.json b/artifacts/contracts/Gateway.sol/Gateway.dbg.json new file mode 100644 index 0000000..8c4ab84 --- /dev/null +++ b/artifacts/contracts/Gateway.sol/Gateway.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/Gateway.sol/Gateway.json b/artifacts/contracts/Gateway.sol/Gateway.json new file mode 100644 index 0000000..76dcd6f --- /dev/null +++ b/artifacts/contracts/Gateway.sol/Gateway.json @@ -0,0 +1,771 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Gateway", + "sourceName": "contracts/Gateway.sol", + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "institutionCode", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "settlePercent", + "type": "uint96" + } + ], + "name": "OrderSettled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint64", + "name": "protocolFee", + "type": "uint64" + } + ], + "name": "ProtocolFeeUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "indexed": false, + "internalType": "struct SharedStructs.Institution[]", + "name": "institutions", + "type": "tuple[]" + } + ], + "name": "SupportedInstitutionsUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_institutionCode", + "type": "bytes32" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getFeeDetails", + "outputs": [ + { + "internalType": "uint64", + "name": "", + "type": "uint64" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_code", + "type": "bytes32" + } + ], + "name": "getSupportedInstitutionByCode", + "outputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.InstitutionByCode", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_currency", + "type": "bytes32" + } + ], + "name": "getSupportedInstitutions", + "outputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.Institution[]", + "name": "", + "type": "tuple[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.Institution[]", + "name": "institutions", + "type": "tuple[]" + } + ], + "name": "setSupportedInstitutions", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + } + ], + "name": "settle", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint64", + "name": "_protocolFeePercent", + "type": "uint64" + } + ], + "name": "updateProtocolFee", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x60806040523480156200001157600080fd5b50620000226200002860201b60201c565b620001d2565b600060019054906101000a900460ff16156200007b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000729062000175565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff1614620000ec5760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000e39190620001b5565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b60006200015d602783620000ee565b91506200016a82620000ff565b604082019050919050565b6000602082019050818103600083015262000190816200014e565b9050919050565b600060ff82169050919050565b620001af8162000197565b82525050565b6000602082019050620001cc6000830184620001a4565b92915050565b61407380620001e26000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806379ba5097116100b8578063c22801031161007c578063c2280103146102dd578063cd9924001461030d578063d12ff20a14610329578063e30c397814610359578063f22ee70414610377578063f2fde38b146103a757610137565b806379ba5097146102825780638129fc1c1461028c5780638456cb59146102965780638da5cb5b146102a0578063b810c636146102be57610137565b80635c975abb116100ff5780635c975abb146101ca578063715018a6146101e857806371eedb88146101f257806375151b6314610222578063768c6ec01461025257610137565b8063026213381461013c578063322008821461016c5780633f4ba83a1461018857806340ebc6771461019257806347094e2e146101ae575b600080fd5b6101566004803603810190610151919061285d565b6103c3565b6040516101639190612977565b60405180910390f35b61018660048036038101906101819190612b47565b610449565b005b6101906105be565b005b6101ac60048036038101906101a79190612c01565b6105d0565b005b6101c860048036038101906101c39190612c81565b610898565b005b6101d2610903565b6040516101df9190612cc9565b60405180910390f35b6101f061091a565b005b61020c60048036038101906102079190612d1a565b61092e565b6040516102199190612cc9565b60405180910390f35b61023c60048036038101906102379190612d5a565b610dce565b6040516102499190612cc9565b60405180910390f35b61026c6004803603810190610267919061285d565b610e2a565b6040516102799190612ea7565b60405180910390f35b61028a611043565b005b6102946110d0565b005b61029e611220565b005b6102a8611232565b6040516102b59190612ed2565b60405180910390f35b6102c661125c565b6040516102d4929190612f0b565b60405180910390f35b6102f760048036038101906102f2919061285d565b611281565b6040516103049190612f63565b60405180910390f35b61032760048036038101906103229190612f7e565b6112c2565b005b610343600480360381019061033e9190613058565b611447565b604051610350919061313d565b60405180910390f35b61036161198d565b60405161036e9190612ed2565b60405180910390f35b610391600480360381019061038c9190613158565b6119b7565b60405161039e9190612cc9565b60405180910390f35b6103c160048036038101906103bc9190612d5a565b612013565b005b606060cd6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561043e578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906103f8565b505050509050919050565b6104516120c0565b60cd6000838152602001908152602001600020600061047091906126eb565b60005b815181101561056f5760cd60008481526020019081526020016000208282815181106104a2576104a16131bf565b5b60200260200101519080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550506040518060400160405280838381518110610507576105066131bf565b5b60200260200101516020015181526020018481525060ce6000848481518110610533576105326131bf565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610473565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516105b29190613308565b60405180910390a25050565b6105c66120c0565b6105ce61213e565b565b6105d86120c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063e90613387565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361074a578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790613419565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610848565b7f61676772656761746f72000000000000000000000000000000000000000000008303610847578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f8906134ab565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610893578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6108a06120c0565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516108f891906134cb565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b6109226120c0565b61092c60006121a1565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613532565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c9061359e565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff1615610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a819061360a565b60405180910390fd5b826101016000848152602001908152602001600020600401541015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613676565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610b78929190613696565b6020604051808303816000875af1158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906136eb565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610c709190613747565b610c7a919061377b565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610d2a9190613747565b6040518363ffffffff1660e01b8152600401610d47929190613696565b6020604051808303816000875af1158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a91906136eb565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610dbb91906137af565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610e205760019050610e25565b600090505b919050565b610e3261270f565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b600061104d6121d2565b90508073ffffffffffffffffffffffffffffffffffffffff1661106e61198d565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061383c565b60405180910390fd5b6110cd816121a1565b50565b60008060019054906101000a900460ff161590508080156111015750600160008054906101000a900460ff1660ff16105b8061112e5750611110306121da565b15801561112d5750600160008054906101000a900460ff1660ff16145b5b61116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906138ce565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156111aa576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506111bc6121fd565b6111c4612256565b801561121d5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516112149190613940565b60405180910390a15b50565b6112286120c0565b6112306122af565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b6112896127cc565b60ce6000838152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b6112ca6120c0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613387565b60405180910390fd5b60018114806113485750600281145b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906139a7565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611442578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161143991906137af565b60405180910390a35b505050565b6000611451612312565b61145e8a8a86898961235c565b600083839050036114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a13565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d6114ce9190613747565b6040518463ffffffff1660e01b81526004016114ec93929190613a33565b6020604051808303816000875af115801561150b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152f91906136eb565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061158190613a6a565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516020016115d9929190613696565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6116229190613ab2565b61162c9190613b23565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6116f4919061377b565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161197796959493929190613bc1565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613532565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061359e565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff1615611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a9061360a565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611b979190613c1d565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611ec9576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611df057610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611d19929190613696565b6020604051808303816000875af1158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c91906136eb565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611ec8578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611e83929190613696565b6020604051808303816000875af1158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec691906136eb565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611efb9190613ab2565b611f059190613b23565b90508061010160008881526020019081526020016000206007016000828254611f2e919061377b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611f70929190613696565b6020604051808303816000875af1158015611f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb391906136eb565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ffd929190613c8e565b60405180910390a3600192505050949350505050565b61201b6120c0565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661207b611232565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6120c86121d2565b73ffffffffffffffffffffffffffffffffffffffff166120e6611232565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613d03565b60405180910390fd5b565b61214661250f565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61218a6121d2565b6040516121979190612ed2565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556121cf81612558565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390613d95565b60405180910390fd5b61225461261e565b565b600060019054906101000a900460ff166122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613d95565b60405180910390fd5b6122ad61267f565b565b6122b7612312565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122fb6121d2565b6040516123089190612ed2565b60405180910390a1565b61231a610903565b1561235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190613e01565b60405180910390fd5b565b600160cc60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d590613e6d565b60405180910390fd5b60008403612421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241890613ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248790613f45565b60405180910390fd5b6000811461250857600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe90613fb1565b60405180910390fd5b5b5050505050565b612517610903565b612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d9061401d565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1661266d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266490613d95565b60405180910390fd5b61267d6126786121d2565b6121a1565b565b600060019054906101000a900460ff166126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c590613d95565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061270c91906127ec565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b604051806040016040528060008019168152602001600080191681525090565b5b8082111561280f576000808201600090556001820160009055506002016127ed565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61283a81612827565b811461284557600080fd5b50565b60008135905061285781612831565b92915050565b6000602082840312156128735761287261281d565b5b600061288184828501612848565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128bf81612827565b82525050565b6040820160008201516128db60008501826128b6565b5060208201516128ee60208501826128b6565b50505050565b600061290083836128c5565b60408301905092915050565b6000602082019050919050565b60006129248261288a565b61292e8185612895565b9350612939836128a6565b8060005b8381101561296a57815161295188826128f4565b975061295c8361290c565b92505060018101905061293d565b5085935050505092915050565b600060208201905081810360008301526129918184612919565b905092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129e78261299e565b810181811067ffffffffffffffff82111715612a0657612a056129af565b5b80604052505050565b6000612a19612813565b9050612a2582826129de565b919050565b600067ffffffffffffffff821115612a4557612a446129af565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215612a7657612a75612a5b565b5b612a806040612a0f565b90506000612a9084828501612848565b6000830152506020612aa484828501612848565b60208301525092915050565b6000612ac3612abe84612a2a565b612a0f565b90508083825260208201905060408402830185811115612ae657612ae5612a56565b5b835b81811015612b0f5780612afb8882612a60565b845260208401935050604081019050612ae8565b5050509392505050565b600082601f830112612b2e57612b2d612999565b5b8135612b3e848260208601612ab0565b91505092915050565b60008060408385031215612b5e57612b5d61281d565b5b6000612b6c85828601612848565b925050602083013567ffffffffffffffff811115612b8d57612b8c612822565b5b612b9985828601612b19565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bce82612ba3565b9050919050565b612bde81612bc3565b8114612be957600080fd5b50565b600081359050612bfb81612bd5565b92915050565b60008060408385031215612c1857612c1761281d565b5b6000612c2685828601612848565b9250506020612c3785828601612bec565b9150509250929050565b600067ffffffffffffffff82169050919050565b612c5e81612c41565b8114612c6957600080fd5b50565b600081359050612c7b81612c55565b92915050565b600060208284031215612c9757612c9661281d565b5b6000612ca584828501612c6c565b91505092915050565b60008115159050919050565b612cc381612cae565b82525050565b6000602082019050612cde6000830184612cba565b92915050565b6000819050919050565b612cf781612ce4565b8114612d0257600080fd5b50565b600081359050612d1481612cee565b92915050565b60008060408385031215612d3157612d3061281d565b5b6000612d3f85828601612d05565b9250506020612d5085828601612848565b9150509250929050565b600060208284031215612d7057612d6f61281d565b5b6000612d7e84828501612bec565b91505092915050565b612d9081612bc3565b82525050565b612d9f81612ce4565b82525050565b612dae81612cae565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612dd581612db4565b82525050565b61014082016000820151612df26000850182612d87565b506020820151612e056020850182612d87565b506040820151612e186040850182612d87565b506060820151612e2b6060850182612d96565b506080820151612e3e6080850182612d96565b5060a0820151612e5160a0850182612da5565b5060c0820151612e6460c0850182612da5565b5060e0820151612e7760e0850182612d87565b50610100820151612e8c610100850182612dcc565b50610120820151612ea1610120850182612d96565b50505050565b600061014082019050612ebd6000830184612ddb565b92915050565b612ecc81612bc3565b82525050565b6000602082019050612ee76000830184612ec3565b92915050565b612ef681612c41565b82525050565b612f0581612ce4565b82525050565b6000604082019050612f206000830185612eed565b612f2d6020830184612efc565b9392505050565b604082016000820151612f4a60008501826128b6565b506020820151612f5d60208501826128b6565b50505050565b6000604082019050612f786000830184612f34565b92915050565b600080600060608486031215612f9757612f9661281d565b5b6000612fa586828701612848565b9350506020612fb686828701612bec565b9250506040612fc786828701612d05565b9150509250925092565b612fda81612db4565b8114612fe557600080fd5b50565b600081359050612ff781612fd1565b92915050565b600080fd5b60008083601f84011261301857613017612999565b5b8235905067ffffffffffffffff81111561303557613034612ffd565b5b60208301915083600182028301111561305157613050612a56565b5b9250929050565b60008060008060008060008060006101008a8c03121561307b5761307a61281d565b5b60006130898c828d01612bec565b995050602061309a8c828d01612d05565b98505060406130ab8c828d01612848565b97505060606130bc8c828d01612fe8565b96505060806130cd8c828d01612bec565b95505060a06130de8c828d01612d05565b94505060c06130ef8c828d01612bec565b93505060e08a013567ffffffffffffffff8111156131105761310f612822565b5b61311c8c828d01613002565b92509250509295985092959850929598565b61313781612827565b82525050565b6000602082019050613152600083018461312e565b92915050565b600080600080608085870312156131725761317161281d565b5b600061318087828801612848565b945050602061319187828801612848565b93505060406131a287828801612bec565b92505060606131b387828801612c6c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b60006132386132338361320e565b61321b565b9050919050565b60408201600080830154905061325481613225565b61326160008601826128b6565b506001830154905061327281613225565b61327f60208601826128b6565b5050505050565b6000613292838361323f565b60408301905092915050565b6000600282019050919050565b60006132b6826131ee565b6132c08185612895565b93506132cb836131f9565b8060005b838110156132fb57816132e28882613286565b97506132ed8361329e565b9250506001810190506132cf565b5085935050505092915050565b6000602082019050818103600083015261332281846132ab565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061337160158361332a565b915061337c8261333b565b602082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b600061340360258361332a565b915061340e826133a7565b604082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b600061349560278361332a565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b60006020820190506134e06000830184612eed565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b600061351c600e8361332a565b9150613527826134e6565b602082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b6000613588600e8361332a565b915061359382613552565b602082019050919050565b600060208201905081810360008301526135b78161357b565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006135f4600d8361332a565b91506135ff826135be565b602082019050919050565b60006020820190508181036000830152613623816135e7565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b600061366060158361332a565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b60006040820190506136ab6000830185612ec3565b6136b86020830184612efc565b9392505050565b6136c881612cae565b81146136d357600080fd5b50565b6000815190506136e5816136bf565b92915050565b6000602082840312156137015761370061281d565b5b600061370f848285016136d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375282612ce4565b915061375d83612ce4565b925082820190508082111561377557613774613718565b5b92915050565b600061378682612ce4565b915061379183612ce4565b92508282039050818111156137a9576137a8613718565b5b92915050565b60006020820190506137c46000830184612efc565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b600061382660298361332a565b9150613831826137ca565b604082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006138b8602e8361332a565b91506138c38261385c565b604082019050919050565b600060208201905081810360008301526138e7816138ab565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600061392a613925613920846138ee565b613905565b6138f8565b9050919050565b61393a8161390f565b82525050565b60006020820190506139556000830184613931565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b600061399160178361332a565b915061399c8261395b565b602082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006139fd60128361332a565b9150613a08826139c7565b602082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b6000606082019050613a486000830186612ec3565b613a556020830185612ec3565b613a626040830184612efc565b949350505050565b6000613a7582612ce4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aa757613aa6613718565b5b600182019050919050565b6000613abd82612ce4565b9150613ac883612ce4565b9250828202613ad681612ce4565b91508282048414831517613aed57613aec613718565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b2e82612ce4565b9150613b3983612ce4565b925082613b4957613b48613af4565b5b828204905092915050565b6000613b6f613b6a613b6584612db4565b613905565b612ce4565b9050919050565b613b7f81613b54565b82525050565b82818337600083830152505050565b6000613ba0838561332a565b9350613bad838584613b85565b613bb68361299e565b840190509392505050565b600060a082019050613bd66000830189612efc565b613be3602083018861312e565b613bf06040830187613b76565b613bfd606083018661312e565b8181036080830152613c10818486613b94565b9050979650505050505050565b6000613c2882612db4565b9150613c3383612db4565b925082820390506bffffffffffffffffffffffff811115613c5757613c56613718565b5b92915050565b6000613c78613c73613c6e84612c41565b613905565b612db4565b9050919050565b613c8881613c5d565b82525050565b6000604082019050613ca3600083018561312e565b613cb06020830184613c7f565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ced60208361332a565b9150613cf882613cb7565b602082019050919050565b60006020820190508181036000830152613d1c81613ce0565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613d7f602b8361332a565b9150613d8a82613d23565b604082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613deb60108361332a565b9150613df682613db5565b602082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613e5760118361332a565b9150613e6282613e21565b602082019050919050565b60006020820190508181036000830152613e8681613e4a565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613ec3600c8361332a565b9150613ece82613e8d565b602082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613f2f60108361332a565b9150613f3a82613ef9565b602082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613f9b60198361332a565b9150613fa682613f65565b602082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061400760148361332a565b915061401282613fd1565b602082019050919050565b6000602082019050818103600083015261403681613ffa565b905091905056fea26469706673582212207dab2d8943229ee0ffe5f5e542da3ea20341c382d0e9de16603ee6cdba0d8e8f64736f6c63430008120033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101375760003560e01c806379ba5097116100b8578063c22801031161007c578063c2280103146102dd578063cd9924001461030d578063d12ff20a14610329578063e30c397814610359578063f22ee70414610377578063f2fde38b146103a757610137565b806379ba5097146102825780638129fc1c1461028c5780638456cb59146102965780638da5cb5b146102a0578063b810c636146102be57610137565b80635c975abb116100ff5780635c975abb146101ca578063715018a6146101e857806371eedb88146101f257806375151b6314610222578063768c6ec01461025257610137565b8063026213381461013c578063322008821461016c5780633f4ba83a1461018857806340ebc6771461019257806347094e2e146101ae575b600080fd5b6101566004803603810190610151919061285d565b6103c3565b6040516101639190612977565b60405180910390f35b61018660048036038101906101819190612b47565b610449565b005b6101906105be565b005b6101ac60048036038101906101a79190612c01565b6105d0565b005b6101c860048036038101906101c39190612c81565b610898565b005b6101d2610903565b6040516101df9190612cc9565b60405180910390f35b6101f061091a565b005b61020c60048036038101906102079190612d1a565b61092e565b6040516102199190612cc9565b60405180910390f35b61023c60048036038101906102379190612d5a565b610dce565b6040516102499190612cc9565b60405180910390f35b61026c6004803603810190610267919061285d565b610e2a565b6040516102799190612ea7565b60405180910390f35b61028a611043565b005b6102946110d0565b005b61029e611220565b005b6102a8611232565b6040516102b59190612ed2565b60405180910390f35b6102c661125c565b6040516102d4929190612f0b565b60405180910390f35b6102f760048036038101906102f2919061285d565b611281565b6040516103049190612f63565b60405180910390f35b61032760048036038101906103229190612f7e565b6112c2565b005b610343600480360381019061033e9190613058565b611447565b604051610350919061313d565b60405180910390f35b61036161198d565b60405161036e9190612ed2565b60405180910390f35b610391600480360381019061038c9190613158565b6119b7565b60405161039e9190612cc9565b60405180910390f35b6103c160048036038101906103bc9190612d5a565b612013565b005b606060cd6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561043e578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906103f8565b505050509050919050565b6104516120c0565b60cd6000838152602001908152602001600020600061047091906126eb565b60005b815181101561056f5760cd60008481526020019081526020016000208282815181106104a2576104a16131bf565b5b60200260200101519080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550506040518060400160405280838381518110610507576105066131bf565b5b60200260200101516020015181526020018481525060ce6000848481518110610533576105326131bf565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610473565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516105b29190613308565b60405180910390a25050565b6105c66120c0565b6105ce61213e565b565b6105d86120c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063e90613387565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361074a578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790613419565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610848565b7f61676772656761746f72000000000000000000000000000000000000000000008303610847578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f8906134ab565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610893578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6108a06120c0565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516108f891906134cb565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b6109226120c0565b61092c60006121a1565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613532565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c9061359e565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff1615610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a819061360a565b60405180910390fd5b826101016000848152602001908152602001600020600401541015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613676565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610b78929190613696565b6020604051808303816000875af1158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906136eb565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610c709190613747565b610c7a919061377b565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610d2a9190613747565b6040518363ffffffff1660e01b8152600401610d47929190613696565b6020604051808303816000875af1158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a91906136eb565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610dbb91906137af565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610e205760019050610e25565b600090505b919050565b610e3261270f565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b600061104d6121d2565b90508073ffffffffffffffffffffffffffffffffffffffff1661106e61198d565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061383c565b60405180910390fd5b6110cd816121a1565b50565b60008060019054906101000a900460ff161590508080156111015750600160008054906101000a900460ff1660ff16105b8061112e5750611110306121da565b15801561112d5750600160008054906101000a900460ff1660ff16145b5b61116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906138ce565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156111aa576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506111bc6121fd565b6111c4612256565b801561121d5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516112149190613940565b60405180910390a15b50565b6112286120c0565b6112306122af565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b6112896127cc565b60ce6000838152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b6112ca6120c0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613387565b60405180910390fd5b60018114806113485750600281145b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906139a7565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611442578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161143991906137af565b60405180910390a35b505050565b6000611451612312565b61145e8a8a86898961235c565b600083839050036114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a13565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d6114ce9190613747565b6040518463ffffffff1660e01b81526004016114ec93929190613a33565b6020604051808303816000875af115801561150b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152f91906136eb565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061158190613a6a565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516020016115d9929190613696565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6116229190613ab2565b61162c9190613b23565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6116f4919061377b565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161197796959493929190613bc1565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613532565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061359e565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff1615611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a9061360a565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611b979190613c1d565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611ec9576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611df057610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611d19929190613696565b6020604051808303816000875af1158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c91906136eb565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611ec8578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611e83929190613696565b6020604051808303816000875af1158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec691906136eb565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611efb9190613ab2565b611f059190613b23565b90508061010160008881526020019081526020016000206007016000828254611f2e919061377b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611f70929190613696565b6020604051808303816000875af1158015611f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb391906136eb565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ffd929190613c8e565b60405180910390a3600192505050949350505050565b61201b6120c0565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1661207b611232565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6120c86121d2565b73ffffffffffffffffffffffffffffffffffffffff166120e6611232565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613d03565b60405180910390fd5b565b61214661250f565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61218a6121d2565b6040516121979190612ed2565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556121cf81612558565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224390613d95565b60405180910390fd5b61225461261e565b565b600060019054906101000a900460ff166122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613d95565b60405180910390fd5b6122ad61267f565b565b6122b7612312565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122fb6121d2565b6040516123089190612ed2565b60405180910390a1565b61231a610903565b1561235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190613e01565b60405180910390fd5b565b600160cc60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d590613e6d565b60405180910390fd5b60008403612421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241890613ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248790613f45565b60405180910390fd5b6000811461250857600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe90613fb1565b60405180910390fd5b5b5050505050565b612517610903565b612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d9061401d565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1661266d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266490613d95565b60405180910390fd5b61267d6126786121d2565b6121a1565b565b600060019054906101000a900460ff166126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c590613d95565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061270c91906127ec565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b604051806040016040528060008019168152602001600080191681525090565b5b8082111561280f576000808201600090556001820160009055506002016127ed565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61283a81612827565b811461284557600080fd5b50565b60008135905061285781612831565b92915050565b6000602082840312156128735761287261281d565b5b600061288184828501612848565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128bf81612827565b82525050565b6040820160008201516128db60008501826128b6565b5060208201516128ee60208501826128b6565b50505050565b600061290083836128c5565b60408301905092915050565b6000602082019050919050565b60006129248261288a565b61292e8185612895565b9350612939836128a6565b8060005b8381101561296a57815161295188826128f4565b975061295c8361290c565b92505060018101905061293d565b5085935050505092915050565b600060208201905081810360008301526129918184612919565b905092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129e78261299e565b810181811067ffffffffffffffff82111715612a0657612a056129af565b5b80604052505050565b6000612a19612813565b9050612a2582826129de565b919050565b600067ffffffffffffffff821115612a4557612a446129af565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215612a7657612a75612a5b565b5b612a806040612a0f565b90506000612a9084828501612848565b6000830152506020612aa484828501612848565b60208301525092915050565b6000612ac3612abe84612a2a565b612a0f565b90508083825260208201905060408402830185811115612ae657612ae5612a56565b5b835b81811015612b0f5780612afb8882612a60565b845260208401935050604081019050612ae8565b5050509392505050565b600082601f830112612b2e57612b2d612999565b5b8135612b3e848260208601612ab0565b91505092915050565b60008060408385031215612b5e57612b5d61281d565b5b6000612b6c85828601612848565b925050602083013567ffffffffffffffff811115612b8d57612b8c612822565b5b612b9985828601612b19565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bce82612ba3565b9050919050565b612bde81612bc3565b8114612be957600080fd5b50565b600081359050612bfb81612bd5565b92915050565b60008060408385031215612c1857612c1761281d565b5b6000612c2685828601612848565b9250506020612c3785828601612bec565b9150509250929050565b600067ffffffffffffffff82169050919050565b612c5e81612c41565b8114612c6957600080fd5b50565b600081359050612c7b81612c55565b92915050565b600060208284031215612c9757612c9661281d565b5b6000612ca584828501612c6c565b91505092915050565b60008115159050919050565b612cc381612cae565b82525050565b6000602082019050612cde6000830184612cba565b92915050565b6000819050919050565b612cf781612ce4565b8114612d0257600080fd5b50565b600081359050612d1481612cee565b92915050565b60008060408385031215612d3157612d3061281d565b5b6000612d3f85828601612d05565b9250506020612d5085828601612848565b9150509250929050565b600060208284031215612d7057612d6f61281d565b5b6000612d7e84828501612bec565b91505092915050565b612d9081612bc3565b82525050565b612d9f81612ce4565b82525050565b612dae81612cae565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612dd581612db4565b82525050565b61014082016000820151612df26000850182612d87565b506020820151612e056020850182612d87565b506040820151612e186040850182612d87565b506060820151612e2b6060850182612d96565b506080820151612e3e6080850182612d96565b5060a0820151612e5160a0850182612da5565b5060c0820151612e6460c0850182612da5565b5060e0820151612e7760e0850182612d87565b50610100820151612e8c610100850182612dcc565b50610120820151612ea1610120850182612d96565b50505050565b600061014082019050612ebd6000830184612ddb565b92915050565b612ecc81612bc3565b82525050565b6000602082019050612ee76000830184612ec3565b92915050565b612ef681612c41565b82525050565b612f0581612ce4565b82525050565b6000604082019050612f206000830185612eed565b612f2d6020830184612efc565b9392505050565b604082016000820151612f4a60008501826128b6565b506020820151612f5d60208501826128b6565b50505050565b6000604082019050612f786000830184612f34565b92915050565b600080600060608486031215612f9757612f9661281d565b5b6000612fa586828701612848565b9350506020612fb686828701612bec565b9250506040612fc786828701612d05565b9150509250925092565b612fda81612db4565b8114612fe557600080fd5b50565b600081359050612ff781612fd1565b92915050565b600080fd5b60008083601f84011261301857613017612999565b5b8235905067ffffffffffffffff81111561303557613034612ffd565b5b60208301915083600182028301111561305157613050612a56565b5b9250929050565b60008060008060008060008060006101008a8c03121561307b5761307a61281d565b5b60006130898c828d01612bec565b995050602061309a8c828d01612d05565b98505060406130ab8c828d01612848565b97505060606130bc8c828d01612fe8565b96505060806130cd8c828d01612bec565b95505060a06130de8c828d01612d05565b94505060c06130ef8c828d01612bec565b93505060e08a013567ffffffffffffffff8111156131105761310f612822565b5b61311c8c828d01613002565b92509250509295985092959850929598565b61313781612827565b82525050565b6000602082019050613152600083018461312e565b92915050565b600080600080608085870312156131725761317161281d565b5b600061318087828801612848565b945050602061319187828801612848565b93505060406131a287828801612bec565b92505060606131b387828801612c6c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b60006132386132338361320e565b61321b565b9050919050565b60408201600080830154905061325481613225565b61326160008601826128b6565b506001830154905061327281613225565b61327f60208601826128b6565b5050505050565b6000613292838361323f565b60408301905092915050565b6000600282019050919050565b60006132b6826131ee565b6132c08185612895565b93506132cb836131f9565b8060005b838110156132fb57816132e28882613286565b97506132ed8361329e565b9250506001810190506132cf565b5085935050505092915050565b6000602082019050818103600083015261332281846132ab565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061337160158361332a565b915061337c8261333b565b602082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b600061340360258361332a565b915061340e826133a7565b604082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b600061349560278361332a565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b60006020820190506134e06000830184612eed565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b600061351c600e8361332a565b9150613527826134e6565b602082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b6000613588600e8361332a565b915061359382613552565b602082019050919050565b600060208201905081810360008301526135b78161357b565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006135f4600d8361332a565b91506135ff826135be565b602082019050919050565b60006020820190508181036000830152613623816135e7565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b600061366060158361332a565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b60006040820190506136ab6000830185612ec3565b6136b86020830184612efc565b9392505050565b6136c881612cae565b81146136d357600080fd5b50565b6000815190506136e5816136bf565b92915050565b6000602082840312156137015761370061281d565b5b600061370f848285016136d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375282612ce4565b915061375d83612ce4565b925082820190508082111561377557613774613718565b5b92915050565b600061378682612ce4565b915061379183612ce4565b92508282039050818111156137a9576137a8613718565b5b92915050565b60006020820190506137c46000830184612efc565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b600061382660298361332a565b9150613831826137ca565b604082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006138b8602e8361332a565b91506138c38261385c565b604082019050919050565b600060208201905081810360008301526138e7816138ab565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600061392a613925613920846138ee565b613905565b6138f8565b9050919050565b61393a8161390f565b82525050565b60006020820190506139556000830184613931565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b600061399160178361332a565b915061399c8261395b565b602082019050919050565b600060208201905081810360008301526139c081613984565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006139fd60128361332a565b9150613a08826139c7565b602082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b6000606082019050613a486000830186612ec3565b613a556020830185612ec3565b613a626040830184612efc565b949350505050565b6000613a7582612ce4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aa757613aa6613718565b5b600182019050919050565b6000613abd82612ce4565b9150613ac883612ce4565b9250828202613ad681612ce4565b91508282048414831517613aed57613aec613718565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b2e82612ce4565b9150613b3983612ce4565b925082613b4957613b48613af4565b5b828204905092915050565b6000613b6f613b6a613b6584612db4565b613905565b612ce4565b9050919050565b613b7f81613b54565b82525050565b82818337600083830152505050565b6000613ba0838561332a565b9350613bad838584613b85565b613bb68361299e565b840190509392505050565b600060a082019050613bd66000830189612efc565b613be3602083018861312e565b613bf06040830187613b76565b613bfd606083018661312e565b8181036080830152613c10818486613b94565b9050979650505050505050565b6000613c2882612db4565b9150613c3383612db4565b925082820390506bffffffffffffffffffffffff811115613c5757613c56613718565b5b92915050565b6000613c78613c73613c6e84612c41565b613905565b612db4565b9050919050565b613c8881613c5d565b82525050565b6000604082019050613ca3600083018561312e565b613cb06020830184613c7f565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ced60208361332a565b9150613cf882613cb7565b602082019050919050565b60006020820190508181036000830152613d1c81613ce0565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613d7f602b8361332a565b9150613d8a82613d23565b604082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613deb60108361332a565b9150613df682613db5565b602082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613e5760118361332a565b9150613e6282613e21565b602082019050919050565b60006020820190508181036000830152613e8681613e4a565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613ec3600c8361332a565b9150613ece82613e8d565b602082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613f2f60108361332a565b9150613f3a82613ef9565b602082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613f9b60198361332a565b9150613fa682613f65565b602082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061400760148361332a565b915061401282613fd1565b602082019050919050565b6000602082019050818103600083015261403681613ffa565b905091905056fea26469706673582212207dab2d8943229ee0ffe5f5e542da3ea20341c382d0e9de16603ee6cdba0d8e8f64736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json new file mode 100644 index 0000000..8c4ab84 --- /dev/null +++ b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json new file mode 100644 index 0000000..5c07a96 --- /dev/null +++ b/artifacts/contracts/GatewaySettingManager.sol/GatewaySettingManager.json @@ -0,0 +1,300 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GatewaySettingManager", + "sourceName": "contracts/GatewaySettingManager.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint64", + "name": "protocolFee", + "type": "uint64" + } + ], + "name": "ProtocolFeeUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "indexed": false, + "internalType": "struct SharedStructs.Institution[]", + "name": "institutions", + "type": "tuple[]" + } + ], + "name": "SupportedInstitutionsUpdated", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.Institution[]", + "name": "institutions", + "type": "tuple[]" + } + ], + "name": "setSupportedInstitutions", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint64", + "name": "_protocolFeePercent", + "type": "uint64" + } + ], + "name": "updateProtocolFee", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x608060405234801561001057600080fd5b5061146a806100206000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c806379ba50971161006657806379ba5097146100f65780638da5cb5b14610100578063cd9924001461011e578063e30c39781461013a578063f2fde38b1461015857610093565b8063322008821461009857806340ebc677146100b457806347094e2e146100d0578063715018a6146100ec575b600080fd5b6100b260048036038101906100ad9190610d03565b610174565b005b6100ce60048036038101906100c99190610dbd565b6102e9565b005b6100ea60048036038101906100e59190610e3d565b6105b1565b005b6100f461061c565b005b6100fe610630565b005b6101086106bd565b6040516101159190610e79565b60405180910390f35b61013860048036038101906101339190610eca565b6106e7565b005b61014261086c565b60405161014f9190610e79565b60405180910390f35b610172600480360381019061016d9190610f1d565b610896565b005b61017c610943565b60cd6000838152602001908152602001600020600061019b9190610ac0565b60005b815181101561029a5760cd60008481526020019081526020016000208282815181106101cd576101cc610f4a565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061023257610231610f4a565b5b60200260200101516020015181526020018481525060ce600084848151811061025e5761025d610f4a565b5b6020026020010151600001518152602001908152602001600020600082015181600001556020820151816001015590505080600101905061019e565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516102dd91906110b3565b60405180910390a25050565b6102f1610943565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035790611132565b60405180910390fd5b60007f74726561737572790000000000000000000000000000000000000000000000008303610463578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610410906111c4565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610561565b7f61676772656761746f72000000000000000000000000000000000000000000008303610560578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361051a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051190611256565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b80156105ac578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6105b9610943565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516106119190611285565b60405180910390a150565b610624610943565b61062e60006109c1565b565b600061063a6109f2565b90508073ffffffffffffffffffffffffffffffffffffffff1661065b61086c565b73ffffffffffffffffffffffffffffffffffffffff16146106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890611312565b60405180910390fd5b6106ba816109c1565b50565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106ef610943565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590611132565b60405180910390fd5b600181148061076d5750600281145b6107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a39061137e565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303610867578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161085e91906113ad565b60405180910390a35b505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61089e610943565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166108fe6106bd565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61094b6109f2565b73ffffffffffffffffffffffffffffffffffffffff166109696106bd565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611414565b60405180910390fd5b565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556109ef816109fa565b50565b600033905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5080546000825560020290600052602060002090810190610ae19190610ae4565b50565b5b80821115610b0757600080820160009055600182016000905550600201610ae5565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610b3281610b1f565b8114610b3d57600080fd5b50565b600081359050610b4f81610b29565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610ba382610b5a565b810181811067ffffffffffffffff82111715610bc257610bc1610b6b565b5b80604052505050565b6000610bd5610b0b565b9050610be18282610b9a565b919050565b600067ffffffffffffffff821115610c0157610c00610b6b565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215610c3257610c31610c17565b5b610c3c6040610bcb565b90506000610c4c84828501610b40565b6000830152506020610c6084828501610b40565b60208301525092915050565b6000610c7f610c7a84610be6565b610bcb565b90508083825260208201905060408402830185811115610ca257610ca1610c12565b5b835b81811015610ccb5780610cb78882610c1c565b845260208401935050604081019050610ca4565b5050509392505050565b600082601f830112610cea57610ce9610b55565b5b8135610cfa848260208601610c6c565b91505092915050565b60008060408385031215610d1a57610d19610b15565b5b6000610d2885828601610b40565b925050602083013567ffffffffffffffff811115610d4957610d48610b1a565b5b610d5585828601610cd5565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d8a82610d5f565b9050919050565b610d9a81610d7f565b8114610da557600080fd5b50565b600081359050610db781610d91565b92915050565b60008060408385031215610dd457610dd3610b15565b5b6000610de285828601610b40565b9250506020610df385828601610da8565b9150509250929050565b600067ffffffffffffffff82169050919050565b610e1a81610dfd565b8114610e2557600080fd5b50565b600081359050610e3781610e11565b92915050565b600060208284031215610e5357610e52610b15565b5b6000610e6184828501610e28565b91505092915050565b610e7381610d7f565b82525050565b6000602082019050610e8e6000830184610e6a565b92915050565b6000819050919050565b610ea781610e94565b8114610eb257600080fd5b50565b600081359050610ec481610e9e565b92915050565b600080600060608486031215610ee357610ee2610b15565b5b6000610ef186828701610b40565b9350506020610f0286828701610da8565b9250506040610f1386828701610eb5565b9150509250925092565b600060208284031215610f3357610f32610b15565b5b6000610f4184828501610da8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000610fd4610fcf83610faa565b610fb7565b9050919050565b610fe481610b1f565b82525050565b604082016000808301549050610fff81610fc1565b61100c6000860182610fdb565b506001830154905061101d81610fc1565b61102a6020860182610fdb565b5050505050565b600061103d8383610fea565b60408301905092915050565b6000600282019050919050565b600061106182610f79565b61106b8185610f84565b935061107683610f95565b8060005b838110156110a6578161108d8882611031565b975061109883611049565b92505060018101905061107a565b5085935050505092915050565b600060208201905081810360008301526110cd8184611056565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061111c6015836110d5565b9150611127826110e6565b602082019050919050565b6000602082019050818103600083015261114b8161110f565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006111ae6025836110d5565b91506111b982611152565b604082019050919050565b600060208201905081810360008301526111dd816111a1565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006112406027836110d5565b915061124b826111e4565b604082019050919050565b6000602082019050818103600083015261126f81611233565b9050919050565b61127f81610dfd565b82525050565b600060208201905061129a6000830184611276565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006112fc6029836110d5565b9150611307826112a0565b604082019050919050565b6000602082019050818103600083015261132b816112ef565b9050919050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006113686017836110d5565b915061137382611332565b602082019050919050565b600060208201905081810360008301526113978161135b565b9050919050565b6113a781610e94565b82525050565b60006020820190506113c2600083018461139e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113fe6020836110d5565b9150611409826113c8565b602082019050919050565b6000602082019050818103600083015261142d816113f1565b905091905056fea2646970667358221220a5cf2406f8bb007a45008610cf8baf05dde6f3dbf02727307f944766ecf3cbe164736f6c63430008120033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100935760003560e01c806379ba50971161006657806379ba5097146100f65780638da5cb5b14610100578063cd9924001461011e578063e30c39781461013a578063f2fde38b1461015857610093565b8063322008821461009857806340ebc677146100b457806347094e2e146100d0578063715018a6146100ec575b600080fd5b6100b260048036038101906100ad9190610d03565b610174565b005b6100ce60048036038101906100c99190610dbd565b6102e9565b005b6100ea60048036038101906100e59190610e3d565b6105b1565b005b6100f461061c565b005b6100fe610630565b005b6101086106bd565b6040516101159190610e79565b60405180910390f35b61013860048036038101906101339190610eca565b6106e7565b005b61014261086c565b60405161014f9190610e79565b60405180910390f35b610172600480360381019061016d9190610f1d565b610896565b005b61017c610943565b60cd6000838152602001908152602001600020600061019b9190610ac0565b60005b815181101561029a5760cd60008481526020019081526020016000208282815181106101cd576101cc610f4a565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061023257610231610f4a565b5b60200260200101516020015181526020018481525060ce600084848151811061025e5761025d610f4a565b5b6020026020010151600001518152602001908152602001600020600082015181600001556020820151816001015590505080600101905061019e565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516102dd91906110b3565b60405180910390a25050565b6102f1610943565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035790611132565b60405180910390fd5b60007f74726561737572790000000000000000000000000000000000000000000000008303610463578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610410906111c4565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610561565b7f61676772656761746f72000000000000000000000000000000000000000000008303610560578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361051a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051190611256565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b80156105ac578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6105b9610943565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516106119190611285565b60405180910390a150565b610624610943565b61062e60006109c1565b565b600061063a6109f2565b90508073ffffffffffffffffffffffffffffffffffffffff1661065b61086c565b73ffffffffffffffffffffffffffffffffffffffff16146106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890611312565b60405180910390fd5b6106ba816109c1565b50565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106ef610943565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361075e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075590611132565b60405180910390fd5b600181148061076d5750600281145b6107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a39061137e565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303610867578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c8360405161085e91906113ad565b60405180910390a35b505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61089e610943565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166108fe6106bd565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b61094b6109f2565b73ffffffffffffffffffffffffffffffffffffffff166109696106bd565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611414565b60405180910390fd5b565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556109ef816109fa565b50565b600033905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5080546000825560020290600052602060002090810190610ae19190610ae4565b50565b5b80821115610b0757600080820160009055600182016000905550600201610ae5565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610b3281610b1f565b8114610b3d57600080fd5b50565b600081359050610b4f81610b29565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610ba382610b5a565b810181811067ffffffffffffffff82111715610bc257610bc1610b6b565b5b80604052505050565b6000610bd5610b0b565b9050610be18282610b9a565b919050565b600067ffffffffffffffff821115610c0157610c00610b6b565b5b602082029050602081019050919050565b600080fd5b600080fd5b600060408284031215610c3257610c31610c17565b5b610c3c6040610bcb565b90506000610c4c84828501610b40565b6000830152506020610c6084828501610b40565b60208301525092915050565b6000610c7f610c7a84610be6565b610bcb565b90508083825260208201905060408402830185811115610ca257610ca1610c12565b5b835b81811015610ccb5780610cb78882610c1c565b845260208401935050604081019050610ca4565b5050509392505050565b600082601f830112610cea57610ce9610b55565b5b8135610cfa848260208601610c6c565b91505092915050565b60008060408385031215610d1a57610d19610b15565b5b6000610d2885828601610b40565b925050602083013567ffffffffffffffff811115610d4957610d48610b1a565b5b610d5585828601610cd5565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d8a82610d5f565b9050919050565b610d9a81610d7f565b8114610da557600080fd5b50565b600081359050610db781610d91565b92915050565b60008060408385031215610dd457610dd3610b15565b5b6000610de285828601610b40565b9250506020610df385828601610da8565b9150509250929050565b600067ffffffffffffffff82169050919050565b610e1a81610dfd565b8114610e2557600080fd5b50565b600081359050610e3781610e11565b92915050565b600060208284031215610e5357610e52610b15565b5b6000610e6184828501610e28565b91505092915050565b610e7381610d7f565b82525050565b6000602082019050610e8e6000830184610e6a565b92915050565b6000819050919050565b610ea781610e94565b8114610eb257600080fd5b50565b600081359050610ec481610e9e565b92915050565b600080600060608486031215610ee357610ee2610b15565b5b6000610ef186828701610b40565b9350506020610f0286828701610da8565b9250506040610f1386828701610eb5565b9150509250925092565b600060208284031215610f3357610f32610b15565b5b6000610f4184828501610da8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000610fd4610fcf83610faa565b610fb7565b9050919050565b610fe481610b1f565b82525050565b604082016000808301549050610fff81610fc1565b61100c6000860182610fdb565b506001830154905061101d81610fc1565b61102a6020860182610fdb565b5050505050565b600061103d8383610fea565b60408301905092915050565b6000600282019050919050565b600061106182610f79565b61106b8185610f84565b935061107683610f95565b8060005b838110156110a6578161108d8882611031565b975061109883611049565b92505060018101905061107a565b5085935050505092915050565b600060208201905081810360008301526110cd8184611056565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b600061111c6015836110d5565b9150611127826110e6565b602082019050919050565b6000602082019050818103600083015261114b8161110f565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006111ae6025836110d5565b91506111b982611152565b604082019050919050565b600060208201905081810360008301526111dd816111a1565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006112406027836110d5565b915061124b826111e4565b604082019050919050565b6000602082019050818103600083015261126f81611233565b9050919050565b61127f81610dfd565b82525050565b600060208201905061129a6000830184611276565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006112fc6029836110d5565b9150611307826112a0565b604082019050919050565b6000602082019050818103600083015261132b816112ef565b9050919050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006113686017836110d5565b915061137382611332565b602082019050919050565b600060208201905081810360008301526113978161135b565b9050919050565b6113a781610e94565b82525050565b60006020820190506113c2600083018461139e565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113fe6020836110d5565b9150611409826113c8565b602082019050919050565b6000602082019050818103600083015261142d816113f1565b905091905056fea2646970667358221220a5cf2406f8bb007a45008610cf8baf05dde6f3dbf02727307f944766ecf3cbe164736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/contracts/GatewayV2.sol/GatewayV2.dbg.json b/artifacts/contracts/GatewayV2.sol/GatewayV2.dbg.json new file mode 100644 index 0000000..8c4ab84 --- /dev/null +++ b/artifacts/contracts/GatewayV2.sol/GatewayV2.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/GatewayV2.sol/GatewayV2.json b/artifacts/contracts/GatewayV2.sol/GatewayV2.json new file mode 100644 index 0000000..1ac6351 --- /dev/null +++ b/artifacts/contracts/GatewayV2.sol/GatewayV2.json @@ -0,0 +1,709 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GatewayV2", + "sourceName": "contracts/GatewayV2.sol", + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "institutionCode", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "settlePercent", + "type": "uint96" + } + ], + "name": "OrderSettled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferStarted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "ProtocolAddressUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint64", + "name": "protocolFee", + "type": "uint64" + } + ], + "name": "ProtocolFeeUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "treasuryAddress", + "type": "address" + } + ], + "name": "SetFeeRecipient", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "SettingManagerBool", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "indexed": false, + "internalType": "struct SharedStructs.Institution[]", + "name": "institutions", + "type": "tuple[]" + } + ], + "name": "SupportedInstitutionsUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "acceptOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_institutionCode", + "type": "bytes32" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getFeeDetails", + "outputs": [ + { + "internalType": "uint64", + "name": "", + "type": "uint64" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGatewayV2.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pendingOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + }, + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.Institution[]", + "name": "institutions", + "type": "tuple[]" + } + ], + "name": "setSupportedInstitutions", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + }, + { + "internalType": "uint256", + "name": "status", + "type": "uint256" + } + ], + "name": "settingManagerBool", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + } + ], + "name": "settle", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "what", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "value", + "type": "address" + } + ], + "name": "updateProtocolAddress", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint64", + "name": "_protocolFeePercent", + "type": "uint64" + } + ], + "name": "updateProtocolFee", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x60806040523480156200001157600080fd5b50620000226200002860201b60201c565b620001d2565b600060019054906101000a900460ff16156200007b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000729062000175565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff1614620000ec5760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620000e39190620001b5565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b60006200015d602783620000ee565b91506200016a82620000ff565b604082019050919050565b6000602082019050818103600083015262000190816200014e565b9050919050565b600060ff82169050919050565b620001af8162000197565b82525050565b6000602082019050620001cc6000830184620001a4565b92915050565b613e9280620001e26000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806379ba5097116100ad578063cd99240011610071578063cd99240014610297578063d12ff20a146102b3578063e30c3978146102e3578063f22ee70414610301578063f2fde38b1461033157610121565b806379ba50971461023c5780638129fc1c146102465780638456cb59146102505780638da5cb5b1461025a578063b810c6361461027857610121565b80635c975abb116100f45780635c975abb14610184578063715018a6146101a257806371eedb88146101ac57806375151b63146101dc578063768c6ec01461020c57610121565b806332200882146101265780633f4ba83a1461014257806340ebc6771461014c57806347094e2e14610168575b600080fd5b610140600480360381019061013b91906128f7565b61034d565b005b61014a6104c2565b005b610166600480360381019061016191906129b1565b6104d4565b005b610182600480360381019061017d9190612a31565b61079c565b005b61018c610807565b6040516101999190612a79565b60405180910390f35b6101aa61081e565b005b6101c660048036038101906101c19190612aca565b610832565b6040516101d39190612a79565b60405180910390f35b6101f660048036038101906101f19190612b0a565b610cd2565b6040516102039190612a79565b60405180910390f35b61022660048036038101906102219190612b37565b610d2e565b6040516102339190612c84565b60405180910390f35b610244610f47565b005b61024e610fd4565b005b610258611124565b005b610262611136565b60405161026f9190612caf565b60405180910390f35b610280611160565b60405161028e929190612ce8565b60405180910390f35b6102b160048036038101906102ac9190612d11565b611185565b005b6102cd60048036038101906102c89190612deb565b61130a565b6040516102da9190612ed0565b60405180910390f35b6102eb611851565b6040516102f89190612caf565b60405180910390f35b61031b60048036038101906103169190612eeb565b61187b565b6040516103289190612a79565b60405180910390f35b61034b60048036038101906103469190612b0a565b611ed7565b005b610355611f84565b60cd6000838152602001908152602001600020600061037491906125f7565b60005b81518110156104735760cd60008481526020019081526020016000208282815181106103a6576103a5612f52565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061040b5761040a612f52565b5b60200260200101516020015181526020018481525060ce600084848151811061043757610436612f52565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610377565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516104b691906130bb565b60405180910390a25050565b6104ca611f84565b6104d2612002565b565b6104dc611f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361054b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105429061313a565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361064e578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb906131cc565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905061074c565b7f61676772656761746f7200000000000000000000000000000000000000000000830361074b578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc9061325e565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610797578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6107a4611f84565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516107fc919061327e565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b610826611f84565b6108306000612065565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906132e5565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613351565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff161561098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906133bd565b60405180910390fd5b8261010160008481526020019081526020016000206004015410156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90613429565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610a7c929190613449565b6020604051808303816000875af1158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf919061349e565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610b7491906134fa565b610b7e919061352e565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610c2e91906134fa565b6040518363ffffffff1660e01b8152600401610c4b929190613449565b6020604051808303816000875af1158015610c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8e919061349e565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610cbf9190613562565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d245760019050610d29565b600090505b919050565b610d3661261b565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b6000610f51612096565b90508073ffffffffffffffffffffffffffffffffffffffff16610f72611851565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906135ef565b60405180910390fd5b610fd181612065565b50565b60008060019054906101000a900460ff161590508080156110055750600160008054906101000a900460ff1660ff16105b8061103257506110143061209e565b1580156110315750600160008054906101000a900460ff1660ff16145b5b611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613681565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156110ae576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506110c06120c1565b6110c861211a565b80156111215760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161111891906136f3565b60405180910390a15b50565b61112c611f84565b611134612173565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b61118d611f84565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061313a565b60405180910390fd5b600181148061120b5750600281145b61124a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112419061375a565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611305578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516112fc9190613562565b60405180910390a35b505050565b60006113146121d6565b6113228a8a8689898d612220565b60008383905003611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906137c6565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d61139291906134fa565b6040518463ffffffff1660e01b81526004016113b0939291906137e6565b6020604051808303816000875af11580156113cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f3919061349e565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906114459061381d565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405160200161149d929190613449565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6114e69190613865565b6114f091906138d6565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6115b8919061352e565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161183b96959493929190613974565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906132e5565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613351565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff16156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce906133bd565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611a5b91906139d0565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d8d576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611cb457610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611bdd929190613449565b6020604051808303816000875af1158015611bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c20919061349e565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611d8c578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611d47929190613449565b6020604051808303816000875af1158015611d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8a919061349e565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611dbf9190613865565b611dc991906138d6565b90508061010160008881526020019081526020016000206007016000828254611df2919061352e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611e34929190613449565b6020604051808303816000875af1158015611e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e77919061349e565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ec1929190613a41565b60405180910390a3600192505050949350505050565b611edf611f84565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611f3f611136565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611f8c612096565b73ffffffffffffffffffffffffffffffffffffffff16611faa611136565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790613ab6565b60405180910390fd5b565b61200a61241b565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61204e612096565b60405161205b9190612caf565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561209381612464565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613b48565b60405180910390fd5b61211861252a565b565b600060019054906101000a900460ff16612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613b48565b60405180910390fd5b61217161258b565b565b61217b6121d6565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121bf612096565b6040516121cc9190612caf565b60405180910390a1565b6121de610807565b1561221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613bb4565b60405180910390fd5b565b600160cc60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613c20565b60405180910390fd5b600085036122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90613c8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613cf8565b60405180910390fd5b6000602060ff161161239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290613d64565b60405180910390fd5b6000821461241357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990613dd0565b60405180910390fd5b5b505050505050565b612423610807565b612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990613e3c565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff16612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090613b48565b60405180910390fd5b612589612584612096565b612065565b565b600060019054906101000a900460ff166125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190613b48565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061261891906126d8565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b5b808211156126fb576000808201600090556001820160009055506002016126d9565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61272681612713565b811461273157600080fd5b50565b6000813590506127438161271d565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127978261274e565b810181811067ffffffffffffffff821117156127b6576127b561275f565b5b80604052505050565b60006127c96126ff565b90506127d5828261278e565b919050565b600067ffffffffffffffff8211156127f5576127f461275f565b5b602082029050602081019050919050565b600080fd5b600080fd5b6000604082840312156128265761282561280b565b5b61283060406127bf565b9050600061284084828501612734565b600083015250602061285484828501612734565b60208301525092915050565b600061287361286e846127da565b6127bf565b9050808382526020820190506040840283018581111561289657612895612806565b5b835b818110156128bf57806128ab8882612810565b845260208401935050604081019050612898565b5050509392505050565b600082601f8301126128de576128dd612749565b5b81356128ee848260208601612860565b91505092915050565b6000806040838503121561290e5761290d612709565b5b600061291c85828601612734565b925050602083013567ffffffffffffffff81111561293d5761293c61270e565b5b612949858286016128c9565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297e82612953565b9050919050565b61298e81612973565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c7612709565b5b60006129d685828601612734565b92505060206129e78582860161299c565b9150509250929050565b600067ffffffffffffffff82169050919050565b612a0e816129f1565b8114612a1957600080fd5b50565b600081359050612a2b81612a05565b92915050565b600060208284031215612a4757612a46612709565b5b6000612a5584828501612a1c565b91505092915050565b60008115159050919050565b612a7381612a5e565b82525050565b6000602082019050612a8e6000830184612a6a565b92915050565b6000819050919050565b612aa781612a94565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b60008060408385031215612ae157612ae0612709565b5b6000612aef85828601612ab5565b9250506020612b0085828601612734565b9150509250929050565b600060208284031215612b2057612b1f612709565b5b6000612b2e8482850161299c565b91505092915050565b600060208284031215612b4d57612b4c612709565b5b6000612b5b84828501612734565b91505092915050565b612b6d81612973565b82525050565b612b7c81612a94565b82525050565b612b8b81612a5e565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612bb281612b91565b82525050565b61014082016000820151612bcf6000850182612b64565b506020820151612be26020850182612b64565b506040820151612bf56040850182612b64565b506060820151612c086060850182612b73565b506080820151612c1b6080850182612b73565b5060a0820151612c2e60a0850182612b82565b5060c0820151612c4160c0850182612b82565b5060e0820151612c5460e0850182612b64565b50610100820151612c69610100850182612ba9565b50610120820151612c7e610120850182612b73565b50505050565b600061014082019050612c9a6000830184612bb8565b92915050565b612ca981612973565b82525050565b6000602082019050612cc46000830184612ca0565b92915050565b612cd3816129f1565b82525050565b612ce281612a94565b82525050565b6000604082019050612cfd6000830185612cca565b612d0a6020830184612cd9565b9392505050565b600080600060608486031215612d2a57612d29612709565b5b6000612d3886828701612734565b9350506020612d498682870161299c565b9250506040612d5a86828701612ab5565b9150509250925092565b612d6d81612b91565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b600080fd5b60008083601f840112612dab57612daa612749565b5b8235905067ffffffffffffffff811115612dc857612dc7612d90565b5b602083019150836001820283011115612de457612de3612806565b5b9250929050565b60008060008060008060008060006101008a8c031215612e0e57612e0d612709565b5b6000612e1c8c828d0161299c565b9950506020612e2d8c828d01612ab5565b9850506040612e3e8c828d01612734565b9750506060612e4f8c828d01612d7b565b9650506080612e608c828d0161299c565b95505060a0612e718c828d01612ab5565b94505060c0612e828c828d0161299c565b93505060e08a013567ffffffffffffffff811115612ea357612ea261270e565b5b612eaf8c828d01612d95565b92509250509295985092959850929598565b612eca81612713565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b60008060008060808587031215612f0557612f04612709565b5b6000612f1387828801612734565b9450506020612f2487828801612734565b9350506040612f358782880161299c565b9250506060612f4687828801612a1c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000612fdc612fd783612fb2565b612fbf565b9050919050565b612fec81612713565b82525050565b60408201600080830154905061300781612fc9565b6130146000860182612fe3565b506001830154905061302581612fc9565b6130326020860182612fe3565b5050505050565b60006130458383612ff2565b60408301905092915050565b6000600282019050919050565b600061306982612f81565b6130738185612f8c565b935061307e83612f9d565b8060005b838110156130ae57816130958882613039565b97506130a083613051565b925050600181019050613082565b5085935050505092915050565b600060208201905081810360008301526130d5818461305e565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b60006131246015836130dd565b915061312f826130ee565b602082019050919050565b6000602082019050818103600083015261315381613117565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006131b66025836130dd565b91506131c18261315a565b604082019050919050565b600060208201905081810360008301526131e5816131a9565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006132486027836130dd565b9150613253826131ec565b604082019050919050565b600060208201905081810360008301526132778161323b565b9050919050565b60006020820190506132936000830184612cca565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b60006132cf600e836130dd565b91506132da82613299565b602082019050919050565b600060208201905081810360008301526132fe816132c2565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b600061333b600e836130dd565b915061334682613305565b602082019050919050565b6000602082019050818103600083015261336a8161332e565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006133a7600d836130dd565b91506133b282613371565b602082019050919050565b600060208201905081810360008301526133d68161339a565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b60006134136015836130dd565b915061341e826133dd565b602082019050919050565b6000602082019050818103600083015261344281613406565b9050919050565b600060408201905061345e6000830185612ca0565b61346b6020830184612cd9565b9392505050565b61347b81612a5e565b811461348657600080fd5b50565b60008151905061349881613472565b92915050565b6000602082840312156134b4576134b3612709565b5b60006134c284828501613489565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061350582612a94565b915061351083612a94565b9250828201905080821115613528576135276134cb565b5b92915050565b600061353982612a94565b915061354483612a94565b925082820390508181111561355c5761355b6134cb565b5b92915050565b60006020820190506135776000830184612cd9565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135d96029836130dd565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061366b602e836130dd565b91506136768261360f565b604082019050919050565b6000602082019050818103600083015261369a8161365e565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b60006136dd6136d86136d3846136a1565b6136b8565b6136ab565b9050919050565b6136ed816136c2565b82525050565b600060208201905061370860008301846136e4565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006137446017836130dd565b915061374f8261370e565b602082019050919050565b6000602082019050818103600083015261377381613737565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006137b06012836130dd565b91506137bb8261377a565b602082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b60006060820190506137fb6000830186612ca0565b6138086020830185612ca0565b6138156040830184612cd9565b949350505050565b600061382882612a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361385a576138596134cb565b5b600182019050919050565b600061387082612a94565b915061387b83612a94565b925082820261388981612a94565b915082820484148315176138a05761389f6134cb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138e182612a94565b91506138ec83612a94565b9250826138fc576138fb6138a7565b5b828204905092915050565b600061392261391d61391884612b91565b6136b8565b612a94565b9050919050565b61393281613907565b82525050565b82818337600083830152505050565b600061395383856130dd565b9350613960838584613938565b6139698361274e565b840190509392505050565b600060a0820190506139896000830189612cd9565b6139966020830188612ec1565b6139a36040830187613929565b6139b06060830186612ec1565b81810360808301526139c3818486613947565b9050979650505050505050565b60006139db82612b91565b91506139e683612b91565b925082820390506bffffffffffffffffffffffff811115613a0a57613a096134cb565b5b92915050565b6000613a2b613a26613a21846129f1565b6136b8565b612b91565b9050919050565b613a3b81613a10565b82525050565b6000604082019050613a566000830185612ec1565b613a636020830184613a32565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aa06020836130dd565b9150613aab82613a6a565b602082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613b32602b836130dd565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613b9e6010836130dd565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613c0a6011836130dd565b9150613c1582613bd4565b602082019050919050565b60006020820190508181036000830152613c3981613bfd565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613c76600c836130dd565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613ce26010836130dd565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f496e76616c6964496e737469747574696f6e436f646500000000000000000000600082015250565b6000613d4e6016836130dd565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613dba6019836130dd565b9150613dc582613d84565b602082019050919050565b60006020820190508181036000830152613de981613dad565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613e266014836130dd565b9150613e3182613df0565b602082019050919050565b60006020820190508181036000830152613e5581613e19565b905091905056fea26469706673582212207052e17dbf1c403e694b894ce0e7c48def05964824c5ca61166978940a74897964736f6c63430008120033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101215760003560e01c806379ba5097116100ad578063cd99240011610071578063cd99240014610297578063d12ff20a146102b3578063e30c3978146102e3578063f22ee70414610301578063f2fde38b1461033157610121565b806379ba50971461023c5780638129fc1c146102465780638456cb59146102505780638da5cb5b1461025a578063b810c6361461027857610121565b80635c975abb116100f45780635c975abb14610184578063715018a6146101a257806371eedb88146101ac57806375151b63146101dc578063768c6ec01461020c57610121565b806332200882146101265780633f4ba83a1461014257806340ebc6771461014c57806347094e2e14610168575b600080fd5b610140600480360381019061013b91906128f7565b61034d565b005b61014a6104c2565b005b610166600480360381019061016191906129b1565b6104d4565b005b610182600480360381019061017d9190612a31565b61079c565b005b61018c610807565b6040516101999190612a79565b60405180910390f35b6101aa61081e565b005b6101c660048036038101906101c19190612aca565b610832565b6040516101d39190612a79565b60405180910390f35b6101f660048036038101906101f19190612b0a565b610cd2565b6040516102039190612a79565b60405180910390f35b61022660048036038101906102219190612b37565b610d2e565b6040516102339190612c84565b60405180910390f35b610244610f47565b005b61024e610fd4565b005b610258611124565b005b610262611136565b60405161026f9190612caf565b60405180910390f35b610280611160565b60405161028e929190612ce8565b60405180910390f35b6102b160048036038101906102ac9190612d11565b611185565b005b6102cd60048036038101906102c89190612deb565b61130a565b6040516102da9190612ed0565b60405180910390f35b6102eb611851565b6040516102f89190612caf565b60405180910390f35b61031b60048036038101906103169190612eeb565b61187b565b6040516103289190612a79565b60405180910390f35b61034b60048036038101906103469190612b0a565b611ed7565b005b610355611f84565b60cd6000838152602001908152602001600020600061037491906125f7565b60005b81518110156104735760cd60008481526020019081526020016000208282815181106103a6576103a5612f52565b5b6020026020010151908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050604051806040016040528083838151811061040b5761040a612f52565b5b60200260200101516020015181526020018481525060ce600084848151811061043757610436612f52565b5b60200260200101516000015181526020019081526020016000206000820151816000015560208201518160010155905050806001019050610377565b50817f58f3a30ec15a8d3e09fa65f9ef10219bc7a9a99d872a4ed895c37c2e761ac2ac60cd60008581526020019081526020016000206040516104b691906130bb565b60405180910390a25050565b6104ca611f84565b6104d2612002565b565b6104dc611f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361054b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105429061313a565b60405180910390fd5b60007f7472656173757279000000000000000000000000000000000000000000000000830361064e578173ffffffffffffffffffffffffffffffffffffffff16609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb906131cc565b60405180910390fd5b81609860086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905061074c565b7f61676772656761746f7200000000000000000000000000000000000000000000830361074b578173ffffffffffffffffffffffffffffffffffffffff16609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc9061325e565b60405180910390fd5b81609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600190505b5b8015610797578173ffffffffffffffffffffffffffffffffffffffff16837fbbc5b96e57cfecb3dbeeadf92e87f15e58e64fcd75cbe256dcc5d9ef2e51e8a460405160405180910390a35b505050565b6107a4611f84565b80609860006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f1ce29a697a4765bd17d91df93ba75b250b629ecf030553ff1f6ab59f15ae6c7b816040516107fc919061327e565b60405180910390a150565b600060cf60009054906101000a900460ff16905090565b610826611f84565b6108306000612065565b565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906132e5565b60405180910390fd5b610101600083815260200190815260200160002060050160009054906101000a900460ff1615610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613351565b60405180910390fd5b610101600083815260200190815260200160002060050160019054906101000a900460ff161561098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906133bd565b60405180910390fd5b8261010160008481526020019081526020016000206004015410156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90613429565b60405180910390fd5b610101600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610a7c929190613449565b6020604051808303816000875af1158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf919061349e565b506001610101600084815260200190815260200160002060050160016101000a81548160ff0219169083151502179055506000610101600084815260200190815260200160002060060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600083610101600085815260200190815260200160002060040154610101600086815260200190815260200160002060070154610b7491906134fa565b610b7e919061352e565b9050610101600084815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600086815260200190815260200160002060050160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160008781526020019081526020016000206003015484610c2e91906134fa565b6040518363ffffffff1660e01b8152600401610c4b929190613449565b6020604051808303816000875af1158015610c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8e919061349e565b50827f0736fe428e1747ca8d387c2e6fa1a31a0cde62d3a167c40a46ade59a3cdc828e85604051610cbf9190613562565b60405180910390a2600191505092915050565b6000600160cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d245760019050610d29565b600090505b919050565b610d3661261b565b6101016000838152602001908152602001600020604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152602001600482015481526020016005820160009054906101000a900460ff161515151581526020016005820160019054906101000a900460ff161515151581526020016005820160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016006820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016007820154815250509050919050565b6000610f51612096565b90508073ffffffffffffffffffffffffffffffffffffffff16610f72611851565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906135ef565b60405180910390fd5b610fd181612065565b50565b60008060019054906101000a900460ff161590508080156110055750600160008054906101000a900460ff1660ff16105b8061103257506110143061209e565b1580156110315750600160008054906101000a900460ff1660ff16145b5b611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613681565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156110ae576001600060016101000a81548160ff0219169083151502179055505b620186a06097819055506110c06120c1565b6110c861211a565b80156111215760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161111891906136f3565b60405180910390a15b50565b61112c611f84565b611134612173565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080609860009054906101000a900467ffffffffffffffff16609754915091509091565b61118d611f84565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061313a565b60405180910390fd5b600181148061120b5750600281145b61124a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112419061375a565b60405180910390fd5b7f746f6b656e0000000000000000000000000000000000000000000000000000008303611305578060cc60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16837fcfa976492af7c14a916cc3a239f4c9c75bbd7f5f0e398beb41d892c7eeccae4c836040516112fc9190613562565b60405180910390a35b505050565b60006113146121d6565b6113228a8a8689898d612220565b60008383905003611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906137c6565b60405180910390fd5b8973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330888d61139291906134fa565b6040518463ffffffff1660e01b81526004016113b0939291906137e6565b6020604051808303816000875af11580156113cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f3919061349e565b5061010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906114459061381d565b91905055503361010260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405160200161149d929190613449565b6040516020818303038152906040528051906020012090506000609754609860009054906101000a900467ffffffffffffffff1667ffffffffffffffff168b6114e69190613865565b6114f091906138d6565b90506040518061014001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018c73ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018281526020016000151581526020016000151581526020018673ffffffffffffffffffffffffffffffffffffffff16815260200160975467ffffffffffffffff166bffffffffffffffffffffffff168152602001828c6115b8919061352e565b815250610101600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101008201518160060160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061012082015181600701559050506101016000838152602001908152602001600020600701548b73ffffffffffffffffffffffffffffffffffffffff16610101600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3bdd0d86e09a22d7ce596118bd3ca5ec73ea47533a465be37621e913ed2bf33384868d8f8b8b60405161183b96959493929190613974565b60405180910390a4509998505050505050505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906132e5565b60405180910390fd5b610101600085815260200190815260200160002060050160009054906101000a900460ff1615611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613351565b60405180910390fd5b610101600085815260200190815260200160002060050160019054906101000a900460ff16156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce906133bd565b60405180910390fd5b6000610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508267ffffffffffffffff16610101600087815260200190815260200160002060060160008282829054906101000a90046bffffffffffffffffffffffff16611a5b91906139d0565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506000610101600087815260200190815260200160002060060160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1603611d8d576001610101600087815260200190815260200160002060050160006101000a81548160ff021916908315150217905550600061010160008781526020019081526020016000206003015414611cb457610101600086815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610101600088815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600301546040518363ffffffff1660e01b8152600401611bdd929190613449565b6020604051808303816000875af1158015611bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c20919061349e565b50610101600086815260200190815260200160002060030154610101600087815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44f6938ca4a10313aabb76f874cced61e35710a734a126e4afb34461bf8c250160405160405180910390a35b600061010160008781526020019081526020016000206004015414611d8c578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb609860089054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101016000898152602001908152602001600020600401546040518363ffffffff1660e01b8152600401611d47929190613449565b6020604051808303816000875af1158015611d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8a919061349e565b505b5b60006097548467ffffffffffffffff16610101600089815260200190815260200160002060070154611dbf9190613865565b611dc991906138d6565b90508061010160008881526020019081526020016000206007016000828254611df2919061352e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611e34929190613449565b6020604051808303816000875af1158015611e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e77919061349e565b508473ffffffffffffffffffffffffffffffffffffffff16867f98ece21e01a01cbe1d1c0dad3b053c8fbd368f99be78be958fcf1d1d13fd249a8987604051611ec1929190613a41565b60405180910390a3600192505050949350505050565b611edf611f84565b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611f3f611136565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611f8c612096565b73ffffffffffffffffffffffffffffffffffffffff16611faa611136565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790613ab6565b60405180910390fd5b565b61200a61241b565b600060cf60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61204e612096565b60405161205b9190612caf565b60405180910390a1565b606560006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561209381612464565b50565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613b48565b60405180910390fd5b61211861252a565b565b600060019054906101000a900460ff16612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613b48565b60405180910390fd5b61217161258b565b565b61217b6121d6565b600160cf60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121bf612096565b6040516121cc9190612caf565b60405180910390a1565b6121de610807565b1561221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613bb4565b60405180910390fd5b565b600160cc60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613c20565b60405180910390fd5b600085036122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90613c8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613cf8565b60405180910390fd5b6000602060ff161161239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290613d64565b60405180910390fd5b6000821461241357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990613dd0565b60405180910390fd5b5b505050505050565b612423610807565b612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990613e3c565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff16612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090613b48565b60405180910390fd5b612589612584612096565b612065565b565b600060019054906101000a900460ff166125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d190613b48565b60405180910390fd5b600060cf60006101000a81548160ff021916908315150217905550565b508054600082556002029060005260206000209081019061261891906126d8565b50565b604051806101400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600081525090565b5b808211156126fb576000808201600090556001820160009055506002016126d9565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61272681612713565b811461273157600080fd5b50565b6000813590506127438161271d565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127978261274e565b810181811067ffffffffffffffff821117156127b6576127b561275f565b5b80604052505050565b60006127c96126ff565b90506127d5828261278e565b919050565b600067ffffffffffffffff8211156127f5576127f461275f565b5b602082029050602081019050919050565b600080fd5b600080fd5b6000604082840312156128265761282561280b565b5b61283060406127bf565b9050600061284084828501612734565b600083015250602061285484828501612734565b60208301525092915050565b600061287361286e846127da565b6127bf565b9050808382526020820190506040840283018581111561289657612895612806565b5b835b818110156128bf57806128ab8882612810565b845260208401935050604081019050612898565b5050509392505050565b600082601f8301126128de576128dd612749565b5b81356128ee848260208601612860565b91505092915050565b6000806040838503121561290e5761290d612709565b5b600061291c85828601612734565b925050602083013567ffffffffffffffff81111561293d5761293c61270e565b5b612949858286016128c9565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297e82612953565b9050919050565b61298e81612973565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c7612709565b5b60006129d685828601612734565b92505060206129e78582860161299c565b9150509250929050565b600067ffffffffffffffff82169050919050565b612a0e816129f1565b8114612a1957600080fd5b50565b600081359050612a2b81612a05565b92915050565b600060208284031215612a4757612a46612709565b5b6000612a5584828501612a1c565b91505092915050565b60008115159050919050565b612a7381612a5e565b82525050565b6000602082019050612a8e6000830184612a6a565b92915050565b6000819050919050565b612aa781612a94565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b60008060408385031215612ae157612ae0612709565b5b6000612aef85828601612ab5565b9250506020612b0085828601612734565b9150509250929050565b600060208284031215612b2057612b1f612709565b5b6000612b2e8482850161299c565b91505092915050565b600060208284031215612b4d57612b4c612709565b5b6000612b5b84828501612734565b91505092915050565b612b6d81612973565b82525050565b612b7c81612a94565b82525050565b612b8b81612a5e565b82525050565b60006bffffffffffffffffffffffff82169050919050565b612bb281612b91565b82525050565b61014082016000820151612bcf6000850182612b64565b506020820151612be26020850182612b64565b506040820151612bf56040850182612b64565b506060820151612c086060850182612b73565b506080820151612c1b6080850182612b73565b5060a0820151612c2e60a0850182612b82565b5060c0820151612c4160c0850182612b82565b5060e0820151612c5460e0850182612b64565b50610100820151612c69610100850182612ba9565b50610120820151612c7e610120850182612b73565b50505050565b600061014082019050612c9a6000830184612bb8565b92915050565b612ca981612973565b82525050565b6000602082019050612cc46000830184612ca0565b92915050565b612cd3816129f1565b82525050565b612ce281612a94565b82525050565b6000604082019050612cfd6000830185612cca565b612d0a6020830184612cd9565b9392505050565b600080600060608486031215612d2a57612d29612709565b5b6000612d3886828701612734565b9350506020612d498682870161299c565b9250506040612d5a86828701612ab5565b9150509250925092565b612d6d81612b91565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b600080fd5b60008083601f840112612dab57612daa612749565b5b8235905067ffffffffffffffff811115612dc857612dc7612d90565b5b602083019150836001820283011115612de457612de3612806565b5b9250929050565b60008060008060008060008060006101008a8c031215612e0e57612e0d612709565b5b6000612e1c8c828d0161299c565b9950506020612e2d8c828d01612ab5565b9850506040612e3e8c828d01612734565b9750506060612e4f8c828d01612d7b565b9650506080612e608c828d0161299c565b95505060a0612e718c828d01612ab5565b94505060c0612e828c828d0161299c565b93505060e08a013567ffffffffffffffff811115612ea357612ea261270e565b5b612eaf8c828d01612d95565b92509250509295985092959850929598565b612eca81612713565b82525050565b6000602082019050612ee56000830184612ec1565b92915050565b60008060008060808587031215612f0557612f04612709565b5b6000612f1387828801612734565b9450506020612f2487828801612734565b9350506040612f358782880161299c565b9250506060612f4687828801612a1c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b60008160001c9050919050565b6000819050919050565b6000612fdc612fd783612fb2565b612fbf565b9050919050565b612fec81612713565b82525050565b60408201600080830154905061300781612fc9565b6130146000860182612fe3565b506001830154905061302581612fc9565b6130326020860182612fe3565b5050505050565b60006130458383612ff2565b60408301905092915050565b6000600282019050919050565b600061306982612f81565b6130738185612f8c565b935061307e83612f9d565b8060005b838110156130ae57816130958882613039565b97506130a083613051565b925050600181019050613082565b5085935050505092915050565b600060208201905081810360008301526130d5818461305e565b905092915050565b600082825260208201905092915050565b7f476174657761793a207a65726f20616464726573730000000000000000000000600082015250565b60006131246015836130dd565b915061312f826130ee565b602082019050919050565b6000602082019050818103600083015261315381613117565b9050919050565b7f476174657761793a207472656173757279206164647265737320616c7265616460008201527f7920736574000000000000000000000000000000000000000000000000000000602082015250565b60006131b66025836130dd565b91506131c18261315a565b604082019050919050565b600060208201905081810360008301526131e5816131a9565b9050919050565b7f476174657761793a2061676772656761746f72206164647265737320616c726560008201527f6164792073657400000000000000000000000000000000000000000000000000602082015250565b60006132486027836130dd565b9150613253826131ec565b604082019050919050565b600060208201905081810360008301526132778161323b565b9050919050565b60006020820190506132936000830184612cca565b92915050565b7f4f6e6c7941676772656761746f72000000000000000000000000000000000000600082015250565b60006132cf600e836130dd565b91506132da82613299565b602082019050919050565b600060208201905081810360008301526132fe816132c2565b9050919050565b7f4f7264657246756c66696c6c6564000000000000000000000000000000000000600082015250565b600061333b600e836130dd565b915061334682613305565b602082019050919050565b6000602082019050818103600083015261336a8161332e565b9050919050565b7f4f72646572526566756e64656400000000000000000000000000000000000000600082015250565b60006133a7600d836130dd565b91506133b282613371565b602082019050919050565b600060208201905081810360008301526133d68161339a565b9050919050565b7f4665654578636565647350726f746f636f6c4665650000000000000000000000600082015250565b60006134136015836130dd565b915061341e826133dd565b602082019050919050565b6000602082019050818103600083015261344281613406565b9050919050565b600060408201905061345e6000830185612ca0565b61346b6020830184612cd9565b9392505050565b61347b81612a5e565b811461348657600080fd5b50565b60008151905061349881613472565b92915050565b6000602082840312156134b4576134b3612709565b5b60006134c284828501613489565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061350582612a94565b915061351083612a94565b9250828201905080821115613528576135276134cb565b5b92915050565b600061353982612a94565b915061354483612a94565b925082820390508181111561355c5761355b6134cb565b5b92915050565b60006020820190506135776000830184612cd9565b92915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135d96029836130dd565b91506135e48261357d565b604082019050919050565b60006020820190508181036000830152613608816135cc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061366b602e836130dd565b91506136768261360f565b604082019050919050565b6000602082019050818103600083015261369a8161365e565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b60006136dd6136d86136d3846136a1565b6136b8565b6136ab565b9050919050565b6136ed816136c2565b82525050565b600060208201905061370860008301846136e4565b92915050565b7f476174657761793a20696e76616c696420737461747573000000000000000000600082015250565b60006137446017836130dd565b915061374f8261370e565b602082019050919050565b6000602082019050818103600083015261377381613737565b9050919050565b7f496e76616c69644d657373616765486173680000000000000000000000000000600082015250565b60006137b06012836130dd565b91506137bb8261377a565b602082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b60006060820190506137fb6000830186612ca0565b6138086020830185612ca0565b6138156040830184612cd9565b949350505050565b600061382882612a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361385a576138596134cb565b5b600182019050919050565b600061387082612a94565b915061387b83612a94565b925082820261388981612a94565b915082820484148315176138a05761389f6134cb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138e182612a94565b91506138ec83612a94565b9250826138fc576138fb6138a7565b5b828204905092915050565b600061392261391d61391884612b91565b6136b8565b612a94565b9050919050565b61393281613907565b82525050565b82818337600083830152505050565b600061395383856130dd565b9350613960838584613938565b6139698361274e565b840190509392505050565b600060a0820190506139896000830189612cd9565b6139966020830188612ec1565b6139a36040830187613929565b6139b06060830186612ec1565b81810360808301526139c3818486613947565b9050979650505050505050565b60006139db82612b91565b91506139e683612b91565b925082820390506bffffffffffffffffffffffff811115613a0a57613a096134cb565b5b92915050565b6000613a2b613a26613a21846129f1565b6136b8565b612b91565b9050919050565b613a3b81613a10565b82525050565b6000604082019050613a566000830185612ec1565b613a636020830184613a32565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aa06020836130dd565b9150613aab82613a6a565b602082019050919050565b60006020820190508181036000830152613acf81613a93565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613b32602b836130dd565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613b9e6010836130dd565b9150613ba982613b68565b602082019050919050565b60006020820190508181036000830152613bcd81613b91565b9050919050565b7f546f6b656e4e6f74537570706f72746564000000000000000000000000000000600082015250565b6000613c0a6011836130dd565b9150613c1582613bd4565b602082019050919050565b60006020820190508181036000830152613c3981613bfd565b9050919050565b7f416d6f756e7449735a65726f0000000000000000000000000000000000000000600082015250565b6000613c76600c836130dd565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f5468726f775a65726f4164647265737300000000000000000000000000000000600082015250565b6000613ce26010836130dd565b9150613ced82613cac565b602082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b7f496e76616c6964496e737469747574696f6e436f646500000000000000000000600082015250565b6000613d4e6016836130dd565b9150613d5982613d18565b602082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f496e76616c696453656e646572466565526563697069656e7400000000000000600082015250565b6000613dba6019836130dd565b9150613dc582613d84565b602082019050919050565b60006020820190508181036000830152613de981613dad565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613e266014836130dd565b9150613e3182613df0565b602082019050919050565b60006020820190508181036000830152613e5581613e19565b905091905056fea26469706673582212207052e17dbf1c403e694b894ce0e7c48def05964824c5ca61166978940a74897964736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json b/artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json new file mode 100644 index 0000000..e9c660f --- /dev/null +++ b/artifacts/contracts/interfaces/IGateway.sol/IGateway.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/interfaces/IGateway.sol/IGateway.json b/artifacts/contracts/interfaces/IGateway.sol/IGateway.json new file mode 100644 index 0000000..ffde919 --- /dev/null +++ b/artifacts/contracts/interfaces/IGateway.sol/IGateway.json @@ -0,0 +1,417 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IGateway", + "sourceName": "contracts/interfaces/IGateway.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "institutionCode", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "settlePercent", + "type": "uint96" + } + ], + "name": "OrderSettled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_institutionCode", + "type": "bytes32" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getFeeDetails", + "outputs": [ + { + "internalType": "uint64", + "name": "protocolReward", + "type": "uint64" + }, + { + "internalType": "uint256", + "name": "max_bps", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGateway.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_code", + "type": "bytes32" + } + ], + "name": "getSupportedInstitutionByCode", + "outputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "currency", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.InstitutionByCode", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_currency", + "type": "bytes32" + } + ], + "name": "getSupportedInstitutions", + "outputs": [ + { + "components": [ + { + "internalType": "bytes32", + "name": "code", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "name", + "type": "bytes32" + } + ], + "internalType": "struct SharedStructs.Institution[]", + "name": "", + "type": "tuple[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + } + ], + "name": "settle", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.dbg.json b/artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.dbg.json new file mode 100644 index 0000000..e9c660f --- /dev/null +++ b/artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.json b/artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.json new file mode 100644 index 0000000..9827579 --- /dev/null +++ b/artifacts/contracts/interfaces/IGatewayV2.sol/IGatewayV2.json @@ -0,0 +1,355 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IGatewayV2", + "sourceName": "contracts/interfaces/IGatewayV2.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "institutionCode", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "OrderCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "fee", + "type": "uint256" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + } + ], + "name": "OrderRefunded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "bytes32", + "name": "splitOrderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "orderId", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "liquidityProvider", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint96", + "name": "settlePercent", + "type": "uint96" + } + ], + "name": "OrderSettled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SenderFeeTransferred", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_institutionCode", + "type": "bytes32" + }, + { + "internalType": "uint96", + "name": "_rate", + "type": "uint96" + }, + { + "internalType": "address", + "name": "_senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_senderFee", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_refundAddress", + "type": "address" + }, + { + "internalType": "string", + "name": "messageHash", + "type": "string" + } + ], + "name": "createOrder", + "outputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "getFeeDetails", + "outputs": [ + { + "internalType": "uint64", + "name": "protocolReward", + "type": "uint64" + }, + { + "internalType": "uint256", + "name": "max_bps", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "getOrderInfo", + "outputs": [ + { + "components": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "address", + "name": "senderFeeRecipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "senderFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "protocolFee", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "isFulfilled", + "type": "bool" + }, + { + "internalType": "bool", + "name": "isRefunded", + "type": "bool" + }, + { + "internalType": "address", + "name": "refundAddress", + "type": "address" + }, + { + "internalType": "uint96", + "name": "currentBPS", + "type": "uint96" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "internalType": "struct IGatewayV2.Order", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + } + ], + "name": "isTokenSupported", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_fee", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + } + ], + "name": "refund", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "_splitOrderId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "_orderId", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "_liquidityProvider", + "type": "address" + }, + { + "internalType": "uint64", + "name": "_settlePercent", + "type": "uint64" + } + ], + "name": "settle", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.dbg.json b/artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.dbg.json new file mode 100644 index 0000000..e9c660f --- /dev/null +++ b/artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.json b/artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.json new file mode 100644 index 0000000..4137138 --- /dev/null +++ b/artifacts/contracts/libraries/SharedStructs.sol/SharedStructs.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "SharedStructs", + "sourceName": "contracts/libraries/SharedStructs.sol", + "abi": [], + "bytecode": "0x60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122018c796264cd6f686e5056fd2234e702189b8345766e6fd8b962c4406475a9a8664736f6c63430008120033", + "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122018c796264cd6f686e5056fd2234e702189b8345766e6fd8b962c4406475a9a8664736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json new file mode 100644 index 0000000..e9c660f --- /dev/null +++ b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../build-info/d775da09ef809423b637832990bde81f.json" +} diff --git a/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json new file mode 100644 index 0000000..bfe83c4 --- /dev/null +++ b/artifacts/contracts/mocks/MockUSDC.sol/MockUSDT.json @@ -0,0 +1,319 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "MockUSDT", + "sourceName": "contracts/mocks/MockUSDC.sol", + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "burn", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "burnAll", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4d6f636b554453430000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d5553444300000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004b7565b508060049081620000a19190620004b7565b505050620000c03369d3c21bcecceda1000000620000c660201b60201c565b620006b9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012f90620005ff565b60405180910390fd5b6200014c600083836200023360201b60201c565b806002600082825462000160919062000650565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200021391906200069c565b60405180910390a36200022f600083836200023860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002bf57607f821691505b602082108103620002d557620002d462000277565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200033f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000300565b6200034b868362000300565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000398620003926200038c8462000363565b6200036d565b62000363565b9050919050565b6000819050919050565b620003b48362000377565b620003cc620003c3826200039f565b8484546200030d565b825550505050565b600090565b620003e3620003d4565b620003f0818484620003a9565b505050565b5b8181101562000418576200040c600082620003d9565b600181019050620003f6565b5050565b601f82111562000467576200043181620002db565b6200043c84620002f0565b810160208510156200044c578190505b620004646200045b85620002f0565b830182620003f5565b50505b505050565b600082821c905092915050565b60006200048c600019846008026200046c565b1980831691505092915050565b6000620004a7838362000479565b9150826002028217905092915050565b620004c2826200023d565b67ffffffffffffffff811115620004de57620004dd62000248565b5b620004ea8254620002a6565b620004f78282856200041c565b600060209050601f8311600181146200052f57600084156200051a578287015190505b62000526858262000499565b86555062000596565b601f1984166200053f86620002db565b60005b82811015620005695784890151825560018201915060208501945060208101905062000542565b8683101562000589578489015162000585601f89168262000479565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005e7601f836200059e565b9150620005f482620005af565b602082019050919050565b600060208201905081810360008301526200061a81620005d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200065d8262000363565b91506200066a8362000363565b925082820190508082111562000685576200068462000621565b5b92915050565b620006968162000363565b82525050565b6000602082019050620006b360008301846200068b565b92915050565b61187580620006c96000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a0712d6811610066578063a0712d681461024d578063a457c2d714610269578063a9059cbb14610299578063dd62ed3e146102c9576100ea565b806370a08231146101f557806395d89b41146102255780639975038c14610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102f9565b6040516101049190610f29565b60405180910390f35b61012760048036038101906101229190610fe4565b61038b565b604051610134919061103f565b60405180910390f35b6101456103ae565b6040516101529190611069565b60405180910390f35b61017560048036038101906101709190611084565b6103b8565b604051610182919061103f565b60405180910390f35b6101936103e7565b6040516101a091906110f3565b60405180910390f35b6101c360048036038101906101be9190610fe4565b6103f0565b6040516101d0919061103f565b60405180910390f35b6101f360048036038101906101ee919061110e565b610427565b005b61020f600480360381019061020a919061113b565b610434565b60405161021c9190611069565b60405180910390f35b61022d61047c565b60405161023a9190610f29565b60405180910390f35b61024b61050e565b005b6102676004803603810190610262919061110e565b61056b565b005b610283600480360381019061027e9190610fe4565b610578565b604051610290919061103f565b60405180910390f35b6102b360048036038101906102ae9190610fe4565b6105ef565b6040516102c0919061103f565b60405180910390f35b6102e360048036038101906102de9190611168565b610612565b6040516102f09190611069565b60405180910390f35b606060038054610308906111d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610334906111d7565b80156103815780601f1061035657610100808354040283529160200191610381565b820191906000526020600020905b81548152906001019060200180831161036457829003601f168201915b5050505050905090565b600080610396610699565b90506103a38185856106a1565b600191505092915050565b6000600254905090565b6000806103c3610699565b90506103d085828561086a565b6103db8585856108f6565b60019150509392505050565b60006012905090565b6000806103fb610699565b905061041c81858561040d8589610612565b6104179190611237565b6106a1565b600191505092915050565b6104313382610b6c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461048b906111d7565b80601f01602080910402602001604051908101604052809291908181526020018280546104b7906111d7565b80156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600061051933610434565b90506000811161055e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610555906112b7565b60405180910390fd5b6105683382610b6c565b50565b6105753382610d39565b50565b600080610583610699565b905060006105918286610612565b9050838110156105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611349565b60405180910390fd5b6105e382868684036106a1565b60019250505092915050565b6000806105fa610699565b90506106078185856108f6565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610707906113db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361077f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107769061146d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161085d9190611069565b60405180910390a3505050565b60006108768484610612565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108f057818110156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d9906114d9565b60405180910390fd5b6108ef84848484036106a1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c9061156b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb906115fd565b60405180910390fd5b6109df838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061168f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b539190611069565b60405180910390a3610b66848484610e94565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611721565b60405180910390fd5b610be782600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c64906117b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d209190611069565b60405180910390a3610d3483600084610e94565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061181f565b60405180910390fd5b610db460008383610e8f565b8060026000828254610dc69190611237565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e779190611069565b60405180910390a3610e8b60008383610e94565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ed3578082015181840152602081019050610eb8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610efb82610e99565b610f058185610ea4565b9350610f15818560208601610eb5565b610f1e81610edf565b840191505092915050565b60006020820190508181036000830152610f438184610ef0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f7b82610f50565b9050919050565b610f8b81610f70565b8114610f9657600080fd5b50565b600081359050610fa881610f82565b92915050565b6000819050919050565b610fc181610fae565b8114610fcc57600080fd5b50565b600081359050610fde81610fb8565b92915050565b60008060408385031215610ffb57610ffa610f4b565b5b600061100985828601610f99565b925050602061101a85828601610fcf565b9150509250929050565b60008115159050919050565b61103981611024565b82525050565b60006020820190506110546000830184611030565b92915050565b61106381610fae565b82525050565b600060208201905061107e600083018461105a565b92915050565b60008060006060848603121561109d5761109c610f4b565b5b60006110ab86828701610f99565b93505060206110bc86828701610f99565b92505060406110cd86828701610fcf565b9150509250925092565b600060ff82169050919050565b6110ed816110d7565b82525050565b600060208201905061110860008301846110e4565b92915050565b60006020828403121561112457611123610f4b565b5b600061113284828501610fcf565b91505092915050565b60006020828403121561115157611150610f4b565b5b600061115f84828501610f99565b91505092915050565b6000806040838503121561117f5761117e610f4b565b5b600061118d85828601610f99565b925050602061119e85828601610f99565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111ef57607f821691505b602082108103611202576112016111a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061124282610fae565b915061124d83610fae565b925082820190508082111561126557611264611208565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e00000000000000600082015250565b60006112a1601983610ea4565b91506112ac8261126b565b602082019050919050565b600060208201905081810360008301526112d081611294565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611333602583610ea4565b915061133e826112d7565b604082019050919050565b6000602082019050818103600083015261136281611326565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113c5602483610ea4565b91506113d082611369565b604082019050919050565b600060208201905081810360008301526113f4816113b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611457602283610ea4565b9150611462826113fb565b604082019050919050565b600060208201905081810360008301526114868161144a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114c3601d83610ea4565b91506114ce8261148d565b602082019050919050565b600060208201905081810360008301526114f2816114b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611555602583610ea4565b9150611560826114f9565b604082019050919050565b6000602082019050818103600083015261158481611548565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115e7602383610ea4565b91506115f28261158b565b604082019050919050565b60006020820190508181036000830152611616816115da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611679602683610ea4565b91506116848261161d565b604082019050919050565b600060208201905081810360008301526116a88161166c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061170b602183610ea4565b9150611716826116af565b604082019050919050565b6000602082019050818103600083015261173a816116fe565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061179d602283610ea4565b91506117a882611741565b604082019050919050565b600060208201905081810360008301526117cc81611790565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611809601f83610ea4565b9150611814826117d3565b602082019050919050565b60006020820190508181036000830152611838816117fc565b905091905056fea264697066735822122068d713bf4736c676499489be7a244631ce61e66372a491b3cb5640b12172fe9464736f6c63430008120033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a0712d6811610066578063a0712d681461024d578063a457c2d714610269578063a9059cbb14610299578063dd62ed3e146102c9576100ea565b806370a08231146101f557806395d89b41146102255780639975038c14610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102f9565b6040516101049190610f29565b60405180910390f35b61012760048036038101906101229190610fe4565b61038b565b604051610134919061103f565b60405180910390f35b6101456103ae565b6040516101529190611069565b60405180910390f35b61017560048036038101906101709190611084565b6103b8565b604051610182919061103f565b60405180910390f35b6101936103e7565b6040516101a091906110f3565b60405180910390f35b6101c360048036038101906101be9190610fe4565b6103f0565b6040516101d0919061103f565b60405180910390f35b6101f360048036038101906101ee919061110e565b610427565b005b61020f600480360381019061020a919061113b565b610434565b60405161021c9190611069565b60405180910390f35b61022d61047c565b60405161023a9190610f29565b60405180910390f35b61024b61050e565b005b6102676004803603810190610262919061110e565b61056b565b005b610283600480360381019061027e9190610fe4565b610578565b604051610290919061103f565b60405180910390f35b6102b360048036038101906102ae9190610fe4565b6105ef565b6040516102c0919061103f565b60405180910390f35b6102e360048036038101906102de9190611168565b610612565b6040516102f09190611069565b60405180910390f35b606060038054610308906111d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610334906111d7565b80156103815780601f1061035657610100808354040283529160200191610381565b820191906000526020600020905b81548152906001019060200180831161036457829003601f168201915b5050505050905090565b600080610396610699565b90506103a38185856106a1565b600191505092915050565b6000600254905090565b6000806103c3610699565b90506103d085828561086a565b6103db8585856108f6565b60019150509392505050565b60006012905090565b6000806103fb610699565b905061041c81858561040d8589610612565b6104179190611237565b6106a1565b600191505092915050565b6104313382610b6c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461048b906111d7565b80601f01602080910402602001604051908101604052809291908181526020018280546104b7906111d7565b80156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b5050505050905090565b600061051933610434565b90506000811161055e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610555906112b7565b60405180910390fd5b6105683382610b6c565b50565b6105753382610d39565b50565b600080610583610699565b905060006105918286610612565b9050838110156105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611349565b60405180910390fd5b6105e382868684036106a1565b60019250505092915050565b6000806105fa610699565b90506106078185856108f6565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610707906113db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361077f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107769061146d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161085d9190611069565b60405180910390a3505050565b60006108768484610612565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108f057818110156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d9906114d9565b60405180910390fd5b6108ef84848484036106a1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c9061156b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb906115fd565b60405180910390fd5b6109df838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061168f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b539190611069565b60405180910390a3610b66848484610e94565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611721565b60405180910390fd5b610be782600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c64906117b3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d209190611069565b60405180910390a3610d3483600084610e94565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061181f565b60405180910390fd5b610db460008383610e8f565b8060026000828254610dc69190611237565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e779190611069565b60405180910390a3610e8b60008383610e94565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ed3578082015181840152602081019050610eb8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610efb82610e99565b610f058185610ea4565b9350610f15818560208601610eb5565b610f1e81610edf565b840191505092915050565b60006020820190508181036000830152610f438184610ef0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f7b82610f50565b9050919050565b610f8b81610f70565b8114610f9657600080fd5b50565b600081359050610fa881610f82565b92915050565b6000819050919050565b610fc181610fae565b8114610fcc57600080fd5b50565b600081359050610fde81610fb8565b92915050565b60008060408385031215610ffb57610ffa610f4b565b5b600061100985828601610f99565b925050602061101a85828601610fcf565b9150509250929050565b60008115159050919050565b61103981611024565b82525050565b60006020820190506110546000830184611030565b92915050565b61106381610fae565b82525050565b600060208201905061107e600083018461105a565b92915050565b60008060006060848603121561109d5761109c610f4b565b5b60006110ab86828701610f99565b93505060206110bc86828701610f99565b92505060406110cd86828701610fcf565b9150509250925092565b600060ff82169050919050565b6110ed816110d7565b82525050565b600060208201905061110860008301846110e4565b92915050565b60006020828403121561112457611123610f4b565b5b600061113284828501610fcf565b91505092915050565b60006020828403121561115157611150610f4b565b5b600061115f84828501610f99565b91505092915050565b6000806040838503121561117f5761117e610f4b565b5b600061118d85828601610f99565b925050602061119e85828601610f99565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111ef57607f821691505b602082108103611202576112016111a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061124282610fae565b915061124d83610fae565b925082820190508082111561126557611264611208565b5b92915050565b7f4d6f636b555344543a204e6f7468696e6720746f206275726e00000000000000600082015250565b60006112a1601983610ea4565b91506112ac8261126b565b602082019050919050565b600060208201905081810360008301526112d081611294565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611333602583610ea4565b915061133e826112d7565b604082019050919050565b6000602082019050818103600083015261136281611326565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113c5602483610ea4565b91506113d082611369565b604082019050919050565b600060208201905081810360008301526113f4816113b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611457602283610ea4565b9150611462826113fb565b604082019050919050565b600060208201905081810360008301526114868161144a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114c3601d83610ea4565b91506114ce8261148d565b602082019050919050565b600060208201905081810360008301526114f2816114b6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611555602583610ea4565b9150611560826114f9565b604082019050919050565b6000602082019050818103600083015261158481611548565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115e7602383610ea4565b91506115f28261158b565b604082019050919050565b60006020820190508181036000830152611616816115da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611679602683610ea4565b91506116848261161d565b604082019050919050565b600060208201905081810360008301526116a88161166c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061170b602183610ea4565b9150611716826116af565b604082019050919050565b6000602082019050818103600083015261173a816116fe565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061179d602283610ea4565b91506117a882611741565b604082019050919050565b600060208201905081810360008301526117cc81611790565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611809601f83610ea4565b9150611814826117d3565b602082019050919050565b60006020820190508181036000830152611838816117fc565b905091905056fea264697066735822122068d713bf4736c676499489be7a244631ce61e66372a491b3cb5640b12172fe9464736f6c63430008120033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/test/gateway/gateway.createorder.test.js b/test/gateway/gateway.createorder.test.js index 69c34d4..26148d1 100644 --- a/test/gateway/gateway.createorder.test.js +++ b/test/gateway/gateway.createorder.test.js @@ -412,7 +412,7 @@ describe("Gateway create order", function () { ); }); - it("Should revert when creating order with invalid supported institutions", async function () { + it("Should revert when creating order with insufficient allowance", async function () { const ret = await setSupportedInstitutions(this.gateway, this.deployer); const fee = ethers.utils.formatBytes32String("fee"); @@ -448,19 +448,19 @@ describe("Gateway create order", function () { const orderId = ethers.utils.solidityKeccak256(["bytes"], [encoded]); await expect( - this.gateway - .connect(this.sender) - .createOrder( - this.mockUSDT.address, - this.mintAmount, - invalidInstitutionCode, - rate, - this.sender.address, - this.senderFee, - this.alice.address, - messageHash.toString() - ) - ).to.be.revertedWith(Errors.Gateway.InvalidInstitutionCode); + this.gateway + .connect(this.sender) + .createOrder( + this.mockUSDT.address, + this.mintAmount, + invalidInstitutionCode, + rate, + this.sender.address, + this.senderFee, + this.alice.address, + messageHash.toString() + ) + ).to.be.revertedWith(Errors.Gateway.Allowance); [ this.seller, diff --git a/test/utils/utils.manager.js b/test/utils/utils.manager.js index d9528be..4aa39cd 100644 --- a/test/utils/utils.manager.js +++ b/test/utils/utils.manager.js @@ -7,22 +7,23 @@ const MAX_BPS = BigNumber.from("100000"); const FEE_BPS = BigNumber.from("500"); const Errors = { - Ownable: { - onlyOwner: "Ownable: caller is not the owner", - }, + Ownable: { + onlyOwner: "Ownable: caller is not the owner", + }, - Gateway: { - OnlyAggregator: "OnlyAggregator", - TokenNotSupported: "TokenNotSupported", - AmountIsZero: "AmountIsZero", - ThrowZeroAddress: "ThrowZeroAddress", - InvalidSigner: "InvalidSigner", - Unsupported: "Unsupported", - OrderFulfilled: "OrderFulfilled", - OrderRefunded: "OrderRefunded", - UnableToProcessRewards: "UnableToProcessRewards", - InvalidInstitutionCode: "InvalidInstitutionCode", - } + Gateway: { + OnlyAggregator: "OnlyAggregator", + TokenNotSupported: "TokenNotSupported", + AmountIsZero: "AmountIsZero", + ThrowZeroAddress: "ThrowZeroAddress", + InvalidSigner: "InvalidSigner", + Unsupported: "Unsupported", + OrderFulfilled: "OrderFulfilled", + OrderRefunded: "OrderRefunded", + UnableToProcessRewards: "UnableToProcessRewards", + InvalidInstitutionCode: "InvalidInstitutionCode", + Allowance: "ERC20: insufficient allowance", + }, }; const Events = {