Skip to content

Instantly share code, notes, and snippets.

@socarrandinn
Created February 25, 2024 19:38
Show Gist options
  • Save socarrandinn/6f88c93e33660425e94c708c669102a7 to your computer and use it in GitHub Desktop.
Save socarrandinn/6f88c93e33660425e94c708c669102a7 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.24+commit.e11b9ed9.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRC eە��eە������-�k�����uw����,�&$.deps/remix-tests/remix_accounts.soleە �.�eە �.��������b 2�H"��(���,�Dz!.deps/remix-tests/remix_tests.soleە,Eeە,E�����o#q{K���Sc��X�W�n.prettierrc.jsoneە�eە���;���9|�>�Xߌy��˷'contracts/MyToken.soleە�Q@eە�Q@���cS?���5?,���7��'�|scripts/deploy_with_ethers.tseەe��eەe��������.��E�r���NH-��Wscripts/deploy_with_web3.tseە���eە������'S��Н��M�%5�s<��wscripts/ethers-lib.tseە�<eە�<��%�~P9���WrV���ߒ�~�scripts/web3-lib.tseە��eە��
��!K�*����8��w'���tests/MyToken_test.sol�x7�1jfs"����bg��
x��U]o�0�9�⪼�R��6�1�"4�شI�����Z8v�F���Q�ڴIg���ڷ��s�=%��g� ǁ��_'W���SH��+J��x{5�ٮe��#J0R��w���v�k���E�XH I"���&J+[ 68�A���.m���k��V��6?/J����( T�_�ѲPJ� �]���J-J�5���;:?��j'��ɬv��Ď�s>P�`I@ H�TS�@<p"�B,��2�Z��l��v�O9�*�XS�aIVB�c��ɒQ �YE��^�F��X�N�j�������a��V������Ȕ� ��XBT�ʅRDj��Lr��h �·�:�z! � �x3��y���R�&����� AB�i��Ja��;���E ��]�l���^�3P��0ݧ?D�A��הk�ם6.C��U�wU��ꈹ�c��J�(��<�u�S*ktYu��Ѳf��:�9�gֈ�.�;�/�a����;�i�( �fpO��^
��I��?O�I���߈���lR�wZ��:�Z�@"�V}�����.�R�1�{8z675��yc�K[�47zCd��L���� EWݝf`�ߛ�4�4߾oj�������?���,���B�`���\I{���y�\ı�� F����6�R���
�r�
ڼϖ��h������y������x�we�s� �:Һ�"z�z�Qݒ˔r�g!4
�_ �����P�����ٍqJ ��T-v ���X-a��N����#Sm��s�dY��T�
x�+)JMU0�`01000P(J�ͬ�-I-.)fh����v�ß��w"[Z��Z[~��:�
x�M�A
�0D]����FQWB��;w"4i�ZL�K)���b��j`x��:�جw��j�G�(�q�a��s�D�Z�ۥ+m"�4��sH��^�wc9�!�Sx���5e�\29v'~P�,p��Ύ���LQx
a�y���7= 71�C��;��IW��ш�AI��B�
x�+)JMU01a040031Q� ��N͋/I-.�+��a`R�~���_��ۯ����)����
x�]S]k�@��<$s�%�Ӧ)���kV�Z�T�{�8���}�J_�ݝ���K+�����_�ٺ�؃�d 8`-�F���,9;�� ?���Z2
���w*�i[�ސP�}P��8k+����u7:�y�8������$E@e����wAe���]3+K�ή6u�re��8�u9����� kY�k��c��֍8�����S�ɬ�� -X���e����ѻ�褜�$n��s������k��7ߌ\.���f3t�}Ŧ�E��3�����t��i>�+� -I;�!�(s�W?n�-mV��XH9?Y������$jה���_F���VmZs]~� �� BO�{�K<�ⷁ%CrlI�h��wO-��\ъ�k/��z��Nѐ��㶚�rR���V�! Ӗ�B���&�������79*X�����V-�ҝG[N?݋�9K�Z@=�ʧT��RZ1|��m��{9[8,;�o�4Z0&��t�|n
ևn:��i~��R���s�=f�/ƣ)�R�8Zd�O�S�|Φg��NVo~���a��sc��χ�& ˷yY�=�^ڎ�+��z�Ʃ�`��ں.;��Č�q{!�3>>��?}�V
x�+)JMU04�`01000P�KI-(fR� �Z���˿8�`��W�?G���(����d�%�e��1lZ��\X�=���Jp�����A�J��+)JL.)fx�qFp�� ����\K��>3�KDMqrQfAI1�_��Mr��T5?�ۯx��o��]%��%� J��鱟�8�lG[I�h-o�q�J�
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)fH���u����N��^��w�`�P��d R.�j�t���]o�<���C�m�x8T9�Lݜ�$�B���{.�}���`����b�gʡ
Af��� �\��-�(l��g��'u���I5
x�M��
�0���7I@�88� ��Dh���Ŵ)IDB黋������w�uv���i{�#��[�0��] �6k�am��3&tH���Ȏ}�0� ���Fd�O���&�)�ݝ:���*�����D���S,��@�͘��FGSC��;��I���hB�(�|��C�
x���9�0����ȎB�<c�l��d �z$h�)��j�$����tf��'��=9���HޭHau�9�H�"�E�C��ý��uI�������)凞�C���z�Z��*���N5I� �� �Kz�p�e���N�Vo-�H
x�+)JMU��d040031Q(J�ͬ�OLN�/�+)�+��a8xD�d��7��ͻ_Z��_�}�_j(�KR��Jw�Ɯ�`��C��Q�o�<?� w�*�
x���Oo�0�9�S�rJ�4Y�*���s�`Պ���̖����.K�8YZU��C���{�ql7�6�rq��E]����o�_H#<>m�����-�O7���S���d��I�\���:g�@��:�?��Z[���Z�O���������5��I>�-ȁ,���>zV��g�:W1<!Ji�!�g�g��HRP6y`���&����; O�S�%����
7���G-��m=��$��َ� �~ �"O켄|�����x�=����m6�����ep*,���Ɛ�f?����q�4��r? ��D̪�C:b���"�,_�����x�`�MI|Qװ��������� �<��F��E��B���t��{m^F�*��ӭ�] �}�L�Î zVf.L���35��U�8D����#����i���_��]�
x����
�0 �=�)B�2ă��[����n٬�f�� c�.+l0cB{J�� ��ɪ�����e)\}�{�Py���l���X<N�r�t���|X��E���RH��/����D\[<s�� �,NV�R�&�3�0<{�;U<������6^p��k���xH�����%�pυ._ݢ6��̢�
x�͖�N�@�{��re���j!A�!$T��Ro��8��즻k B�{�>��؉q��$�l�ߌg�?��m8�68���������=u�I�ܹ��(�s�}��|�� c&�xJ@r��T��r��t��߻� ��-��Õ�(|�"Sq�rv�/M��܇��v�JP6�)JIƘ����$S4���Ŀh��Q8�L N�@�
K$Q|�����
r��L�2?8��c��]�C��\W���)H�(�D��c�P~�#Q�tS�h!��0s}�8�N ���˴foMɥ����_/`�f>1û��2�yrO f��S'N,��WC���#�Mt# �5N��EgڋZ��'-K��\�?����5�{!4 �F`[����؄ �Zm d�R/��|W9y����pC�.��������9p�����P�($�L��A;��Ty}GWg�>�X��^/�6�E�I��`QM����K���u��J���.���
�=W_G���ZE�T1A�!���Il�E�p�3A�$��K�r¶������ J�ϸ�i�)��8EBV��9��N��%��q���9��K]UkE6�G��;��҄}ԩh�I�>]�Rf-��ˑ�#%�t��frT�L�xI�Fw�/�H
P/���םN縷ڽqt����F�貂���?���3����~�K����x�����6�7Dvsu�>���i�P�2���?�&�,T�1Q�#�i���\&P�MS"��c����E����lz-��&�t�w��^f�z&)�7{W�<��]� �F����m�]���֕{�y�ʊ�n\U�Te��/*+��i�V��a�c�.)�갊�Z���^�����q`=I�pv�
�p"&�:b�״O�/}��
x�]�M�7�\ݿBG��㒪��2�A-�B�C|0,{P��4��,�^�����c2���xT�xk~��BJ-�x�V��1~�����;��j۝���ß���p��|�_��8����^��w���R�/ظ l��q���">����Kٟw���6!D?��i��ėvZ�^���I,�ھ���C���q)��N���(^�Z�x|���s�G�R?����?���V��^�����N�W=���dY���t ������u�fn������l�b2T]0UN%�ْ��0׈(�E]fu��Ө�9 Y)�[��vͲ��'�]S*���5� f�(#�lf��r�dR�K�֓�%�y��t�FrR��U�.j (�S9Hc��d����m}�����N�Y�kvA�qAƹ���lA��f��bF�<v��4 ��j�k��]Ҡ�a{����Ie�Ķ�sp���Zr�� 3�(S�kl׶��Gʬ�#�6�L}��1�M�)\c�V���T3�М�<�0���Ҭ=�4�x����Q�\�Ԥ�4A�̀�55��&�3#��fL+��|��D� �RgO>u�b ��m��!�x-���A�Mu�'�\���PT�&'rM��(��s$I �f3F�{���$�R�F�1��2t/g�I��;�Bk� �tF�$��p���sz�k���f���}�v�=�
x�mT]k�@�~�<$GN� �iK!�|@�P
^Ik�R��ܭ�[���$�j�@�������*�L�˫ˏ�T�2V���+,��n8�
���_�K�L�_/�����S<�D�Ќ��Y���A0;; p�����R2
��H��"K5vN��E3��f��a�>����8��Z�^���4 [8T�I���Į316���u����2�ւ�㼥r�s�/����u=N��:e۠ ��Jժ3fY�Vc�w��Us>�? �����C0�������:�-O���#� w���6I�lM�_�Jn0��.Г�G�94o�4D��gk�T�vңL�qe�h�)T����X]�h���0�$�]s�U+�fΝq���Re%�C��- �]�c�W��V(ȊZR&qW��~3�ڎfA�>�s�· �|,?X��$%�X��l�١�� ���Wg��ض��r��_��Y�mH ,��O�QUE�RU�@�
��a��MUN�3�+�3��9����Yʸ`���(�3V����@t�S�N�hw<9������h@[+��G��LαI_9���-�5kq��hF��7�{�tƃ����]Ȟ�����~��ϋ_aA.�;�����E{u�@��'Hc���_��p
x�+)JMU0�d040031Q� ��N��+��a�}�ٲ��N�o����s/NoWnf
767622adf17b0d960fabfb6286b47d0a758806f0
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220df0bdab177597bec43948798806a2da941839c1c94699149b4be4a6b4906aec264736f6c63430008180033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF SIGNEXTEND 0xDA 0xB1 PUSH24 0x597BEC43948798806A2DA941839C1C94699149B4BE4A6B49 MOD 0xAE 0xC2 PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "258:8324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220df0bdab177597bec43948798806a2da941839c1c94699149b4be4a6b4906aec264736f6c63430008180033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF SIGNEXTEND 0xDA 0xB1 PUSH24 0x597BEC43948798806A2DA941839C1C94699149B4BE4A6B49 MOD 0xAE 0xC2 PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "258:8324:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"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"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"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": {
"contracts/TokenSTacking.sol": "Address"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"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": {
"contracts/TokenSTacking.sol": "Context"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"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"
}
},
"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"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"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": {
"contracts/TokenSTacking.sol": "IERC20"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint8",
"name": "version",
"type": "uint8"
}
],
"name": "Initialized",
"type": "event"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"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] ``` 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": {
"contracts/TokenSTacking.sol": "Initializable"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"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"
}
},
"abi": [
{
"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"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"language": "Solidity",
"output": {
"abi": [
{
"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.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"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 anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing 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."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenSTacking.sol": "Ownable"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenSTacking.sol": "ReentrancyGuard"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_461": {
"entryPoint": null,
"id": 461,
"parameterSlots": 0,
"returnSlots": 0
},
"@_525": {
"entryPoint": null,
"id": 525,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_493": {
"entryPoint": 62,
"id": 493,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_613": {
"entryPoint": 69,
"id": 613,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801562000010575f80fd5b5062000031620000256200003e60201b60201c565b6200004560201b60201c565b6001808190555062000106565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131cc80620001145f395ff3fe608060405234801561000f575f80fd5b50600436106101d7575f3560e01c8063845738cb11610102578063b88a802f116100a0578063d2cbf7ad1161006f578063d2cbf7ad146104bd578063f0116b74146104db578063f18cce76146104f9578063f2fde38b14610517576101d7565b8063b88a802f1461046d578063bb8febc614610477578063c5d62b1814610495578063cab9b8fb1461049f576101d7565b806390be10cc116100dc57806390be10cc146103f75780639be572f614610415578063a694fc3a14610433578063b3cd42541461044f576101d7565b8063845738cb1461039f5780638585d138146103bb5780638da5cb5b146103d9576101d7565b806351d185981161017a5780636f77926b116101495780636f77926b1461032d57806370607f5d1461035d578063715018a6146103795780637bb9769d14610383576101d7565b806351d18598146102a557806355f0fe42146102c35780635e39cd75146102df57806363512159146102fd576101d7565b80632e1a7d4d116101b65780632e1a7d4d146102315780633e0935721461024d57806342a23945146102695780634d55b17814610287576101d7565b80628e3252146101db5780630c4ca4a6146101f95780632e17de7814610215575b5f80fd5b6101e3610533565b6040516101f0919061203e565b60405180910390f35b610213600480360381019061020e9190612085565b61053c565b005b61022f600480360381019061022a9190612085565b61054e565b005b61024b60048036038101906102469190612085565b610adc565b005b61026760048036038101906102629190612085565b610c88565b005b610271610c9a565b60405161027e919061203e565b60405180910390f35b61028f610ca3565b60405161029c919061203e565b60405180910390f35b6102ad610d03565b6040516102ba919061203e565b60405180910390f35b6102dd60048036038101906102d89190612085565b610d0c565b005b6102e7610d1e565b6040516102f4919061203e565b60405180910390f35b6103176004803603810190610312919061210a565b610d27565b604051610324919061214f565b60405180910390f35b6103476004803603810190610342919061210a565b610d72565b60405161035491906121dd565b60405180910390f35b610377600480360381019061037291906121f6565b610dfa565b005b610381610e64565b005b61039d60048036038101906103989190612085565b610e77565b005b6103b960048036038101906103b49190612234565b610e89565b005b6103c3610fdb565b6040516103d0919061203e565b60405180910390f35b6103e1610fe0565b6040516103ee9190612307565b60405180910390f35b6103ff611007565b60405161040c919061203e565b60405180910390f35b61041d6110b4565b60405161042a919061203e565b60405180910390f35b61044d60048036038101906104489190612085565b6110bd565b005b61045761111e565b604051610464919061203e565b60405180910390f35b610475611124565b005b61047f6114ed565b60405161048c919061203e565b60405180910390f35b61049d6114f6565b005b6104a7611528565b6040516104b4919061214f565b60405180910390f35b6104c561153d565b6040516104d2919061203e565b60405180910390f35b6104e3611546565b6040516104f0919061203e565b60405180910390f35b61050161154f565b60405161050e919061203e565b60405180910390f35b610531600480360381019061052c919061210a565b611558565b005b5f600654905090565b6105446115da565b8060048190555050565b600260015403610593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058a9061237a565b60405180910390fd5b60026001819055508080600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105f89190612307565b602060405180830381865afa158015610613573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063791906123ac565b1015610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066f90612447565b60405180910390fd5b5f3390505f83036106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b5906124d5565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166363512159826040518263ffffffff1660e01b81526004016106f79190612307565b602060405180830381865afa158015610712573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610736919061251d565b610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612592565b60405180910390fd5b82600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015410156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612620565b60405180910390fd5b61080081611658565b5f600954600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015461084f919061266b565b610857611707565b116108c857612710600a548561086d919061269e565b610877919061270c565b90508173ffffffffffffffffffffffffffffffffffffffff167f547c747d3878b7637a9d040b5479a58c43382aac8e5aa9a30a053c1a0cffb4f2826040516108bf919061203e565b60405180910390a25b5f81856108d5919061273c565b905084600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f828254610925919061273c565b925050819055508460075f82825461093d919061273c565b925050819055505f600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0154036109a457600160085f82825461099c919061273c565b925050819055505b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401610a0192919061276f565b6020604051808303815f875af1158015610a1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a41919061251d565b610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a77906127e0565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167fb24546d975e2628748efc9aced80665e0fad66272033e5c0ea25fd3afac9979586604051610ac6919061203e565b60405180910390a2505050506001808190555050565b610ae46115da565b600260015403610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061237a565b60405180910390fd5b6002600181905550803073ffffffffffffffffffffffffffffffffffffffff166390be10cc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9f91906123ac565b1015610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061286e565b60405180910390fd5b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c3d92919061276f565b6020604051808303815f875af1158015610c59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7d919061251d565b506001808190555050565b610c906115da565b8060058190555050565b5f600354905090565b5f80610cae3361170e565b50905080600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010154610cfd919061266b565b91505090565b5f600754905090565b610d146115da565b8060038190555050565b5f600a54905090565b5f80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015414159050919050565b610d7a611ffc565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060a00160405290815f82015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050919050565b610e026115da565b600260015403610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061237a565b60405180910390fd5b6002600181905550610e5982826118a5565b600180819055505050565b610e6c6115da565b610e755f611cf6565b565b610e7f6115da565b80600a8190555050565b5f600260019054906101000a900460ff16159050808015610ebb5750600160025f9054906101000a900460ff1660ff16105b80610ee95750610eca30611db7565b158015610ee85750600160025f9054906101000a900460ff1660ff16145b5b610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906128fc565b60405180910390fd5b600160025f6101000a81548160ff021916908360ff1602179055508015610f65576001600260016101000a81548160ff0219169083151502179055505b610f768a8a8a8a8a8a8a8a8a611dd9565b8015610fcf575f600260016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610fc69190612968565b60405180910390a15b50505050505050505050565b600a81565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600754600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110669190612307565b602060405180830381865afa158015611081573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a591906123ac565b6110af919061273c565b905090565b5f600854905090565b600260015403611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061237a565b60405180910390fd5b600260018190555061111481336118a5565b6001808190555050565b61271081565b600260015403611169576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111609061237a565b60405180910390fd5b6002600181905550600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015480600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161120e9190612307565b602060405180830381865afa158015611229573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124d91906123ac565b101561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612447565b60405180910390fd5b61129733611658565b5f600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015490505f811161131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906129cb565b60405180910390fd5b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161137a92919061276f565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba919061251d565b6113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906127e0565b60405180910390fd5b5f600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001018190555080600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206004015f82825461148d919061266b565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e826040516114da919061203e565b60405180910390a2505060018081905550565b5f600454905090565b6114fe6115da565b600b5f9054906101000a900460ff1615600b5f6101000a81548160ff021916908315150217905550565b5f600b5f9054906101000a900460ff16905090565b5f600c54905090565b5f600554905090565b5f600954905090565b6115606115da565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612a59565b60405180910390fd5b6115d781611cf6565b50565b6115e2611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611600610fe0565b73ffffffffffffffffffffffffffffffffffffffff1614611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612ac1565b60405180910390fd5b565b5f806116638361170e565b9150915081600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015f8282546116b6919061266b565b9250508190555080600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060030181905550505050565b5f42905090565b5f805f80600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206003015490505f61175e611707565b9050600954600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600201546117ae919061266b565b81111561180657600954600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060020154611803919061266b565b90505b5f8282611813919061273c565b90506127106301e13380600c54600d5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01548461186b919061269e565b611875919061269e565b61187f919061270c565b611889919061270c565b84611894919061266b565b935083829550955050505050915091565b600b5f9054906101000a900460ff16156118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90612b29565b60405180910390fd5b5f6118fd611707565b90506006548111611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90612bb7565b60405180910390fd5b6005548110611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90612c1f565b60405180910390fd5b60045483600754611998919061266b565b11156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090612cad565b60405180910390fd5b5f8311611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290612d3b565b60405180910390fd5b600354831015611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790612def565b60405180910390fd5b5f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015414611ab457611aaf82611658565b611b13565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060030181905550600160085f828254611b0b919061266b565b925050819055505b82600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f828254611b61919061266b565b9250508190555080600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600201819055508260075f828254611bbe919061266b565b92505081905550600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401611c2493929190612e0d565b6020604051808303815f875af1158015611c40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c64919061251d565b611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a90612eb2565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a84604051611ce9919061203e565b60405180910390a2505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600260019054906101000a900460ff16611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90612f40565b60405180910390fd5b612710600c541115611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690612fce565b60405180910390fd5b5f8211611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea89061305c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f16906130ea565b60405180910390fd5b828410611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890613178565b60405180910390fd5b611f6a89611cf6565b87600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600c81905550856003819055508460048190555083600681905550826005819055506201518082611fdd919061269e565b60098190555080600a81905550505050505050505050565b5f33905090565b6040518060a001604052805f81526020015f81526020015f81526020015f81526020015f81525090565b5f819050919050565b61203881612026565b82525050565b5f6020820190506120515f83018461202f565b92915050565b5f80fd5b61206481612026565b811461206e575f80fd5b50565b5f8135905061207f8161205b565b92915050565b5f6020828403121561209a57612099612057565b5b5f6120a784828501612071565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120d9826120b0565b9050919050565b6120e9816120cf565b81146120f3575f80fd5b50565b5f81359050612104816120e0565b92915050565b5f6020828403121561211f5761211e612057565b5b5f61212c848285016120f6565b91505092915050565b5f8115159050919050565b61214981612135565b82525050565b5f6020820190506121625f830184612140565b92915050565b61217181612026565b82525050565b60a082015f82015161218b5f850182612168565b50602082015161219e6020850182612168565b5060408201516121b16040850182612168565b5060608201516121c46060850182612168565b5060808201516121d76080850182612168565b50505050565b5f60a0820190506121f05f830184612177565b92915050565b5f806040838503121561220c5761220b612057565b5b5f61221985828601612071565b925050602061222a858286016120f6565b9150509250929050565b5f805f805f805f805f6101208a8c03121561225257612251612057565b5b5f61225f8c828d016120f6565b99505060206122708c828d016120f6565b98505060406122818c828d01612071565b97505060606122928c828d01612071565b96505060806122a38c828d01612071565b95505060a06122b48c828d01612071565b94505060c06122c58c828d01612071565b93505060e06122d68c828d01612071565b9250506101006122e88c828d01612071565b9150509295985092959850929598565b612301816120cf565b82525050565b5f60208201905061231a5f8301846122f8565b92915050565b5f82825260208201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612364601f83612320565b915061236f82612330565b602082019050919050565b5f6020820190508181035f83015261239181612358565b9050919050565b5f815190506123a68161205b565b92915050565b5f602082840312156123c1576123c0612057565b5b5f6123ce84828501612398565b91505092915050565b7f546f6b656e5374616b696e673a20696e73756666696369656e742066756e64735f8201527f20696e2074686520747265617375727900000000000000000000000000000000602082015250565b5f612431603083612320565b915061243c826123d7565b604082019050919050565b5f6020820190508181035f83015261245e81612425565b9050919050565b7f546f6b656e5374616b696e673a20616d6f756e742073686f756c64206265206e5f8201527f6f6e2d7a65726f00000000000000000000000000000000000000000000000000602082015250565b5f6124bf602783612320565b91506124ca82612465565b604082019050919050565b5f6020820190508181035f8301526124ec816124b3565b9050919050565b6124fc81612135565b8114612506575f80fd5b50565b5f81519050612517816124f3565b92915050565b5f6020828403121561253257612531612057565b5b5f61253f84828501612509565b91505092915050565b7f546f6b656e5374616b696e673a206e6f742061207374616b65686f6c646572005f82015250565b5f61257c601f83612320565b915061258782612548565b602082019050919050565b5f6020820190508181035f8301526125a981612570565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f756768207374616b6520745f8201527f6f20756e7374616b650000000000000000000000000000000000000000000000602082015250565b5f61260a602983612320565b9150612615826125b0565b604082019050919050565b5f6020820190508181035f830152612637816125fe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61267582612026565b915061268083612026565b92508282019050808211156126985761269761263e565b5b92915050565b5f6126a882612026565b91506126b383612026565b92508282026126c181612026565b915082820484148315176126d8576126d761263e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61271682612026565b915061272183612026565b925082612731576127306126df565b5b828204905092915050565b5f61274682612026565b915061275183612026565b92508282039050818111156127695761276861263e565b5b92915050565b5f6040820190506127825f8301856122f8565b61278f602083018461202f565b9392505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e736665725f82015250565b5f6127ca602083612320565b91506127d582612796565b602082019050919050565b5f6020820190508181035f8301526127f7816127be565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f75676820776974686472615f8201527f7761626c6520746f6b656e730000000000000000000000000000000000000000602082015250565b5f612858602c83612320565b9150612863826127fe565b604082019050919050565b5f6020820190508181035f8301526128858161284c565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f6128e6602e83612320565b91506128f18261288c565b604082019050919050565b5f6020820190508181035f830152612913816128da565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f819050919050565b5f61295261294d6129488461291a565b61292f565b612923565b9050919050565b61296281612938565b82525050565b5f60208201905061297b5f830184612959565b92915050565b7f546f6b656e5374616b696e673a206e6f2072657761726420746f20636c61696d5f82015250565b5f6129b5602083612320565b91506129c082612981565b602082019050919050565b5f6020820190508181035f8301526129e2816129a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612a43602683612320565b9150612a4e826129e9565b604082019050919050565b5f6020820190508181035f830152612a7081612a37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612aab602083612320565b9150612ab682612a77565b602082019050919050565b5f6020820190508181035f830152612ad881612a9f565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e6720697320706175736564005f82015250565b5f612b13601f83612320565b9150612b1e82612adf565b602082019050919050565b5f6020820190508181035f830152612b4081612b07565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e67206e6f74207374617274655f8201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b5f612ba1602583612320565b9150612bac82612b47565b604082019050919050565b5f6020820190508181035f830152612bce81612b95565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e6720656e64656400000000005f82015250565b5f612c09601b83612320565b9150612c1482612bd5565b602082019050919050565b5f6020820190508181035f830152612c3681612bfd565b9050919050565b7f546f6b656e5374616b696e673a206d6178207374616b696e6720746f6b656e205f8201527f6c696d6974207265616368656400000000000000000000000000000000000000602082015250565b5f612c97602d83612320565b9150612ca282612c3d565b604082019050919050565b5f6020820190508181035f830152612cc481612c8b565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d757374205f8201527f6265206e6f6e2d7a65726f000000000000000000000000000000000000000000602082015250565b5f612d25602b83612320565b9150612d3082612ccb565b604082019050919050565b5f6020820190508181035f830152612d5281612d19565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d757374205f8201527f67726561746572207468616e206d696e696d756d20616d6f756e7420616c6c6f60208201527f7765640000000000000000000000000000000000000000000000000000000000604082015250565b5f612dd9604383612320565b9150612de482612d59565b606082019050919050565b5f6020820190508181035f830152612e0681612dcd565b9050919050565b5f606082019050612e205f8301866122f8565b612e2d60208301856122f8565b612e3a604083018461202f565b949350505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e736665725f8201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b5f612e9c602783612320565b9150612ea782612e42565b604082019050919050565b5f6020820190508181035f830152612ec981612e90565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f612f2a602b83612320565b9150612f3582612ed0565b604082019050919050565b5f6020820190508181035f830152612f5781612f1e565b9050919050565b7f546f6b656e5374616b696e673a2061707920726174652073686f756c642062655f8201527f206c657373207468616e20313030303000000000000000000000000000000000602082015250565b5f612fb8603083612320565b9150612fc382612f5e565b604082019050919050565b5f6020820190508181035f830152612fe581612fac565b9050919050565b7f546f6b656e5374616b696e673a207374616b652064617973206d7573742062655f8201527f206e6f6e2d7a65726f0000000000000000000000000000000000000000000000602082015250565b5f613046602983612320565b915061305182612fec565b604082019050919050565b5f6020820190508181035f8301526130738161303a565b9050919050565b7f546f6b656e5374616b696e673a20746f6b656e20616464726573732063616e6e5f8201527f6f74206265203020616464726573730000000000000000000000000000000000602082015250565b5f6130d4602f83612320565b91506130df8261307a565b604082019050919050565b5f6020820190508181035f830152613101816130c8565b9050919050565b7f546f6b656e5374616b696e673a2073746172742064617465206d7573742062655f8201527f206c657373207468616e20656e64206461746500000000000000000000000000602082015250565b5f613162603383612320565b915061316d82613108565b604082019050919050565b5f6020820190508181035f83015261318f81613156565b905091905056fea26469706673582212208a5c27a3bf0cf26a9f1de6ea688a28bed6fe65205b097d6bb58babf4116a803764736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x10 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH3 0x31 PUSH3 0x25 PUSH3 0x3E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x45 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP PUSH3 0x106 JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 DUP1 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 PUSH2 0x31CC DUP1 PUSH3 0x114 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1D7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x845738CB GT PUSH2 0x102 JUMPI DUP1 PUSH4 0xB88A802F GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD2CBF7AD GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD2CBF7AD EQ PUSH2 0x4BD JUMPI DUP1 PUSH4 0xF0116B74 EQ PUSH2 0x4DB JUMPI DUP1 PUSH4 0xF18CCE76 EQ PUSH2 0x4F9 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x517 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0xB88A802F EQ PUSH2 0x46D JUMPI DUP1 PUSH4 0xBB8FEBC6 EQ PUSH2 0x477 JUMPI DUP1 PUSH4 0xC5D62B18 EQ PUSH2 0x495 JUMPI DUP1 PUSH4 0xCAB9B8FB EQ PUSH2 0x49F JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x90BE10CC GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x90BE10CC EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0x9BE572F6 EQ PUSH2 0x415 JUMPI DUP1 PUSH4 0xA694FC3A EQ PUSH2 0x433 JUMPI DUP1 PUSH4 0xB3CD4254 EQ PUSH2 0x44F JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x845738CB EQ PUSH2 0x39F JUMPI DUP1 PUSH4 0x8585D138 EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3D9 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x51D18598 GT PUSH2 0x17A JUMPI DUP1 PUSH4 0x6F77926B GT PUSH2 0x149 JUMPI DUP1 PUSH4 0x6F77926B EQ PUSH2 0x32D JUMPI DUP1 PUSH4 0x70607F5D EQ PUSH2 0x35D JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x379 JUMPI DUP1 PUSH4 0x7BB9769D EQ PUSH2 0x383 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x51D18598 EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0x55F0FE42 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0x5E39CD75 EQ PUSH2 0x2DF JUMPI DUP1 PUSH4 0x63512159 EQ PUSH2 0x2FD JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x2E1A7D4D GT PUSH2 0x1B6 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x3E093572 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x42A23945 EQ PUSH2 0x269 JUMPI DUP1 PUSH4 0x4D55B178 EQ PUSH2 0x287 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH3 0x8E3252 EQ PUSH2 0x1DB JUMPI DUP1 PUSH4 0xC4CA4A6 EQ PUSH2 0x1F9 JUMPI DUP1 PUSH4 0x2E17DE78 EQ PUSH2 0x215 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x1E3 PUSH2 0x533 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F0 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x213 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20E SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0x53C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22A SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0x54E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x246 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xADC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xC88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x271 PUSH2 0xC9A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27E SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28F PUSH2 0xCA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29C SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AD PUSH2 0xD03 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2E7 PUSH2 0xD1E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F4 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x317 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x312 SWAP2 SWAP1 PUSH2 0x210A JUMP JUMPDEST PUSH2 0xD27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x324 SWAP2 SWAP1 PUSH2 0x214F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x347 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x342 SWAP2 SWAP1 PUSH2 0x210A JUMP JUMPDEST PUSH2 0xD72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x354 SWAP2 SWAP1 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x377 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x372 SWAP2 SWAP1 PUSH2 0x21F6 JUMP JUMPDEST PUSH2 0xDFA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x381 PUSH2 0xE64 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x39D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x398 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xE77 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x2234 JUMP JUMPDEST PUSH2 0xE89 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C3 PUSH2 0xFDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D0 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E1 PUSH2 0xFE0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EE SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3FF PUSH2 0x1007 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40C SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x41D PUSH2 0x10B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x42A SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x448 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0x10BD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x457 PUSH2 0x111E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x464 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x475 PUSH2 0x1124 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x47F PUSH2 0x14ED JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x48C SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x49D PUSH2 0x14F6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4A7 PUSH2 0x1528 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B4 SWAP2 SWAP1 PUSH2 0x214F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C5 PUSH2 0x153D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D2 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4E3 PUSH2 0x1546 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4F0 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x501 PUSH2 0x154F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x531 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x52C SWAP2 SWAP1 PUSH2 0x210A JUMP JUMPDEST PUSH2 0x1558 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH1 0x6 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x544 PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0x593 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x58A SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F8 SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x613 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x637 SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST LT ISZERO PUSH2 0x678 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x66F SWAP1 PUSH2 0x2447 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 CALLER SWAP1 POP PUSH0 DUP4 SUB PUSH2 0x6BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6B5 SWAP1 PUSH2 0x24D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x63512159 DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6F7 SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x712 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x736 SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x775 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x76C SWAP1 PUSH2 0x2592 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD LT ISZERO PUSH2 0x7F7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EE SWAP1 PUSH2 0x2620 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x800 DUP2 PUSH2 0x1658 JUMP JUMPDEST PUSH0 PUSH1 0x9 SLOAD PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x84F SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST PUSH2 0x857 PUSH2 0x1707 JUMP JUMPDEST GT PUSH2 0x8C8 JUMPI PUSH2 0x2710 PUSH1 0xA SLOAD DUP6 PUSH2 0x86D SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH2 0x877 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST SWAP1 POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x547C747D3878B7637A9D040B5479A58C43382AAC8E5AA9A30A053C1A0CFFB4F2 DUP3 PUSH1 0x40 MLOAD PUSH2 0x8BF SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST PUSH0 DUP2 DUP6 PUSH2 0x8D5 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP1 POP DUP5 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x925 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x7 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x93D SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD SUB PUSH2 0x9A4 JUMPI PUSH1 0x1 PUSH1 0x8 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x99C SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA01 SWAP3 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA1D JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xA41 SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0xA80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA77 SWAP1 PUSH2 0x27E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xB24546D975E2628748EFC9ACED80665E0FAD66272033E5C0EA25FD3AFAC99795 DUP7 PUSH1 0x40 MLOAD PUSH2 0xAC6 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xAE4 PUSH2 0x15DA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0xB29 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB20 SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x90BE10CC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB7B JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xB9F SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST LT ISZERO PUSH2 0xBE0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD7 SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3D SWAP3 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xC59 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xC7D SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xC90 PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0x5 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x3 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0xCAE CALLER PUSH2 0x170E JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0xCFD SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xD14 PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0x3 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD7A PUSH2 0x1FFC JUMP JUMPDEST PUSH1 0xD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE02 PUSH2 0x15DA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0xE47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE3E SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0xE59 DUP3 DUP3 PUSH2 0x18A5 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0xE6C PUSH2 0x15DA JUMP JUMPDEST PUSH2 0xE75 PUSH0 PUSH2 0x1CF6 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xE7F PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0xA DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xEBB JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0xEE9 JUMPI POP PUSH2 0xECA ADDRESS PUSH2 0x1DB7 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xEE8 JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0xF28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF1F SWAP1 PUSH2 0x28FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0xF65 JUMPI PUSH1 0x1 PUSH1 0x2 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0xF76 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x1DD9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFCF JUMPI PUSH0 PUSH1 0x2 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 0xFC6 SWAP2 SWAP1 PUSH2 0x2968 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA DUP2 JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 SLOAD PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1066 SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1081 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x10A5 SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST PUSH2 0x10AF SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x8 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0x1102 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10F9 SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0x1114 DUP2 CALLER PUSH2 0x18A5 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2710 DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0x1169 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1160 SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD DUP1 PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x120E SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1229 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x124D SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST LT ISZERO PUSH2 0x128E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1285 SWAP1 PUSH2 0x2447 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1297 CALLER PUSH2 0x1658 JUMP JUMPDEST PUSH0 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP PUSH0 DUP2 GT PUSH2 0x131D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1314 SWAP1 PUSH2 0x29CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x137A SWAP3 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1396 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x13BA SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x13F9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F0 SWAP1 PUSH2 0x27E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x148D SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xBA8DE60C3403EC381D1D484652EA1980E3C3E56359195C92525BFF4CE47AD98E DUP3 PUSH1 0x40 MLOAD PUSH2 0x14DA SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH1 0x4 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x14FE PUSH2 0x15DA JUMP JUMPDEST PUSH1 0xB PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH1 0xB PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH1 0xB PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0xC SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x5 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x9 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1560 PUSH2 0x15DA JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x15CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15C5 SWAP1 PUSH2 0x2A59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15D7 DUP2 PUSH2 0x1CF6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x15E2 PUSH2 0x1FF5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1600 PUSH2 0xFE0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1656 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x164D SWAP1 PUSH2 0x2AC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x1663 DUP4 PUSH2 0x170E JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x16B6 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xD PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH2 0x175E PUSH2 0x1707 JUMP JUMPDEST SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0xD PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x17AE SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x1806 JUMPI PUSH1 0x9 SLOAD PUSH1 0xD PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x1803 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP3 DUP3 PUSH2 0x1813 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP1 POP PUSH2 0x2710 PUSH4 0x1E13380 PUSH1 0xC SLOAD PUSH1 0xD PUSH0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD DUP5 PUSH2 0x186B SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH2 0x1875 SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH2 0x187F SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST PUSH2 0x1889 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST DUP5 PUSH2 0x1894 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP4 POP DUP4 DUP3 SWAP6 POP SWAP6 POP POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0xB PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x18F4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18EB SWAP1 PUSH2 0x2B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x18FD PUSH2 0x1707 JUMP JUMPDEST SWAP1 POP PUSH1 0x6 SLOAD DUP2 GT PUSH2 0x1943 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193A SWAP1 PUSH2 0x2BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 SLOAD DUP2 LT PUSH2 0x1987 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x197E SWAP1 PUSH2 0x2C1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 SLOAD DUP4 PUSH1 0x7 SLOAD PUSH2 0x1998 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST GT ISZERO PUSH2 0x19D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19D0 SWAP1 PUSH2 0x2CAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 GT PUSH2 0x1A1B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A12 SWAP1 PUSH2 0x2D3B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 SLOAD DUP4 LT ISZERO PUSH2 0x1A60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A57 SWAP1 PUSH2 0x2DEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD EQ PUSH2 0x1AB4 JUMPI PUSH2 0x1AAF DUP3 PUSH2 0x1658 JUMP JUMPDEST PUSH2 0x1B13 JUMP JUMPDEST DUP1 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x8 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1B0B SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP3 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1B61 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x7 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1BBE SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C24 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2E0D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C40 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1C64 SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x1CA3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C9A SWAP1 PUSH2 0x2EB2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xEBEDB8B3C678666E7F36970BC8F57ABF6D8FA2E828C0DA91EA5B75BF68ED101A DUP5 PUSH1 0x40 MLOAD PUSH2 0x1CE9 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 DUP1 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 PUSH0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1E28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E1F SWAP1 PUSH2 0x2F40 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2710 PUSH1 0xC SLOAD GT ISZERO PUSH2 0x1E6F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E66 SWAP1 PUSH2 0x2FCE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 GT PUSH2 0x1EB1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EA8 SWAP1 PUSH2 0x305C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1F1F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F16 SWAP1 PUSH2 0x30EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 DUP5 LT PUSH2 0x1F61 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F58 SWAP1 PUSH2 0x3178 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1F6A DUP10 PUSH2 0x1CF6 JUMP JUMPDEST DUP8 PUSH1 0xB PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP7 PUSH1 0xC DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x3 DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x4 DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x6 DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 DUP2 SWAP1 SSTORE POP PUSH3 0x15180 DUP3 PUSH2 0x1FDD SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xA DUP2 SWAP1 SSTORE POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2038 DUP2 PUSH2 0x2026 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2051 PUSH0 DUP4 ADD DUP5 PUSH2 0x202F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2064 DUP2 PUSH2 0x2026 JUMP JUMPDEST DUP2 EQ PUSH2 0x206E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x207F DUP2 PUSH2 0x205B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x209A JUMPI PUSH2 0x2099 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x20A7 DUP5 DUP3 DUP6 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x20D9 DUP3 PUSH2 0x20B0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x20E9 DUP2 PUSH2 0x20CF JUMP JUMPDEST DUP2 EQ PUSH2 0x20F3 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2104 DUP2 PUSH2 0x20E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x211F JUMPI PUSH2 0x211E PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x212C DUP5 DUP3 DUP6 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2149 DUP2 PUSH2 0x2135 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2162 PUSH0 DUP4 ADD DUP5 PUSH2 0x2140 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2171 DUP2 PUSH2 0x2026 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x218B PUSH0 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x219E PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x21B1 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x21C4 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x21D7 PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x21F0 PUSH0 DUP4 ADD DUP5 PUSH2 0x2177 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x220C JUMPI PUSH2 0x220B PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x2219 DUP6 DUP3 DUP7 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x222A DUP6 DUP3 DUP7 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH2 0x120 DUP11 DUP13 SUB SLT ISZERO PUSH2 0x2252 JUMPI PUSH2 0x2251 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x225F DUP13 DUP3 DUP14 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP10 POP POP PUSH1 0x20 PUSH2 0x2270 DUP13 DUP3 DUP14 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x40 PUSH2 0x2281 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 PUSH2 0x2292 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x80 PUSH2 0x22A3 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP6 POP POP PUSH1 0xA0 PUSH2 0x22B4 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xC0 PUSH2 0x22C5 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xE0 PUSH2 0x22D6 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x100 PUSH2 0x22E8 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH2 0x2301 DUP2 PUSH2 0x20CF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x231A PUSH0 DUP4 ADD DUP5 PUSH2 0x22F8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2364 PUSH1 0x1F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x236F DUP3 PUSH2 0x2330 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2391 DUP2 PUSH2 0x2358 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x23A6 DUP2 PUSH2 0x205B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C1 JUMPI PUSH2 0x23C0 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x23CE DUP5 DUP3 DUP6 ADD PUSH2 0x2398 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20696E73756666696369656E742066756E6473 PUSH0 DUP3 ADD MSTORE PUSH32 0x20696E2074686520747265617375727900000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2431 PUSH1 0x30 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x243C DUP3 PUSH2 0x23D7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x245E DUP2 PUSH2 0x2425 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20616D6F756E742073686F756C64206265206E PUSH0 DUP3 ADD MSTORE PUSH32 0x6F6E2D7A65726F00000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x24BF PUSH1 0x27 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x24CA DUP3 PUSH2 0x2465 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x24EC DUP2 PUSH2 0x24B3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24FC DUP2 PUSH2 0x2135 JUMP JUMPDEST DUP2 EQ PUSH2 0x2506 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x2517 DUP2 PUSH2 0x24F3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2532 JUMPI PUSH2 0x2531 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x253F DUP5 DUP3 DUP6 ADD PUSH2 0x2509 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F742061207374616B65686F6C64657200 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x257C PUSH1 0x1F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2587 DUP3 PUSH2 0x2548 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x25A9 DUP2 PUSH2 0x2570 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F756768207374616B652074 PUSH0 DUP3 ADD MSTORE PUSH32 0x6F20756E7374616B650000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x260A PUSH1 0x29 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2615 DUP3 PUSH2 0x25B0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2637 DUP2 PUSH2 0x25FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x2675 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x2680 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x2698 JUMPI PUSH2 0x2697 PUSH2 0x263E JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x26A8 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x26B3 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x26C1 DUP2 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x26D8 JUMPI PUSH2 0x26D7 PUSH2 0x263E JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x2716 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x2721 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2731 JUMPI PUSH2 0x2730 PUSH2 0x26DF JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2746 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x2751 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2768 PUSH2 0x263E JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2782 PUSH0 DUP4 ADD DUP6 PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x278F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x202F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x27CA PUSH1 0x20 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x27D5 DUP3 PUSH2 0x2796 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x27F7 DUP2 PUSH2 0x27BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F7567682077697468647261 PUSH0 DUP3 ADD MSTORE PUSH32 0x7761626C6520746F6B656E730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2858 PUSH1 0x2C DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2863 DUP3 PUSH2 0x27FE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2885 DUP2 PUSH2 0x284C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x28E6 PUSH1 0x2E DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x28F1 DUP3 PUSH2 0x288C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2913 DUP2 PUSH2 0x28DA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2952 PUSH2 0x294D PUSH2 0x2948 DUP5 PUSH2 0x291A JUMP JUMPDEST PUSH2 0x292F JUMP JUMPDEST PUSH2 0x2923 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2962 DUP2 PUSH2 0x2938 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x297B PUSH0 DUP4 ADD DUP5 PUSH2 0x2959 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F2072657761726420746F20636C61696D PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x29B5 PUSH1 0x20 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x29C0 DUP3 PUSH2 0x2981 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x29E2 DUP2 PUSH2 0x29A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2A43 PUSH1 0x26 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A4E DUP3 PUSH2 0x29E9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2A70 DUP2 PUSH2 0x2A37 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2AAB PUSH1 0x20 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2AB6 DUP3 PUSH2 0x2A77 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2AD8 DUP2 PUSH2 0x2A9F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E672069732070617573656400 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2B13 PUSH1 0x1F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B1E DUP3 PUSH2 0x2ADF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2B40 DUP2 PUSH2 0x2B07 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E67206E6F7420737461727465 PUSH0 DUP3 ADD MSTORE PUSH32 0x6420796574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2BA1 PUSH1 0x25 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BAC DUP3 PUSH2 0x2B47 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2BCE DUP2 PUSH2 0x2B95 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E6720656E6465640000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2C09 PUSH1 0x1B DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C14 DUP3 PUSH2 0x2BD5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2C36 DUP2 PUSH2 0x2BFD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206D6178207374616B696E6720746F6B656E20 PUSH0 DUP3 ADD MSTORE PUSH32 0x6C696D6974207265616368656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2C97 PUSH1 0x2D DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2CA2 DUP3 PUSH2 0x2C3D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2CC4 DUP2 PUSH2 0x2C8B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH0 DUP3 ADD MSTORE PUSH32 0x6265206E6F6E2D7A65726F000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2D25 PUSH1 0x2B DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D30 DUP3 PUSH2 0x2CCB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2D52 DUP2 PUSH2 0x2D19 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH0 DUP3 ADD MSTORE PUSH32 0x67726561746572207468616E206D696E696D756D20616D6F756E7420616C6C6F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x7765640000000000000000000000000000000000000000000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2DD9 PUSH1 0x43 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2DE4 DUP3 PUSH2 0x2D59 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2E06 DUP2 PUSH2 0x2DCD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x2E20 PUSH0 DUP4 ADD DUP7 PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x2E2D PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x2E3A PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x202F JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH0 DUP3 ADD MSTORE PUSH32 0x20746F6B656E7300000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2E9C PUSH1 0x27 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2EA7 DUP3 PUSH2 0x2E42 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2EC9 DUP2 PUSH2 0x2E90 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2F2A PUSH1 0x2B DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F35 DUP3 PUSH2 0x2ED0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2F57 DUP2 PUSH2 0x2F1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2061707920726174652073686F756C64206265 PUSH0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20313030303000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2FB8 PUSH1 0x30 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FC3 DUP3 PUSH2 0x2F5E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2FE5 DUP2 PUSH2 0x2FAC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B652064617973206D757374206265 PUSH0 DUP3 ADD MSTORE PUSH32 0x206E6F6E2D7A65726F0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3046 PUSH1 0x29 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x3051 DUP3 PUSH2 0x2FEC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3073 DUP2 PUSH2 0x303A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20746F6B656E20616464726573732063616E6E PUSH0 DUP3 ADD MSTORE PUSH32 0x6F74206265203020616464726573730000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x30D4 PUSH1 0x2F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x30DF DUP3 PUSH2 0x307A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3101 DUP2 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2073746172742064617465206D757374206265 PUSH0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20656E64206461746500000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3162 PUSH1 0x33 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x316D DUP3 PUSH2 0x3108 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x318F DUP2 PUSH2 0x3156 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 TLOAD 0x27 LOG3 0xBF 0xC CALLCODE PUSH11 0x9F1DE6EA688A28BED6FE65 KECCAK256 JUMPDEST MULMOD PUSH30 0x6BB58BABF4116A803764736F6C6343000818003300000000000000000000 ",
"sourceMap": "23671:14036:0:-:0;;;;;;;;;;;;;18982:32;19001:12;:10;;;:12;;:::i;:::-;18982:18;;;:32;;:::i;:::-;16142:1;16253:7;:22;;;;23671:14036;;17812:98;17865:7;17892:10;17885:17;;17812:98;:::o;20528:191::-;20602:16;20621:6;;;;;;;;;;;20602:25;;20647:8;20638:6;;:17;;;;;;;;;;;;;;;;;;20702:8;20671:40;;20692:8;20671:40;;;;;;;;;;;;20591:128;20528:191;:::o;23671:14036::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@APY_RATE_CHANGE_THRESHOLD_737": {
"entryPoint": 4059,
"id": 737,
"parameterSlots": 0,
"returnSlots": 0
},
"@PERCENTAGE_DENOMINATOR_734": {
"entryPoint": 4382,
"id": 734,
"parameterSlots": 0,
"returnSlots": 0
},
"@__TokenStaking_init_unchained_916": {
"entryPoint": 7641,
"id": 916,
"parameterSlots": 9,
"returnSlots": 0
},
"@_calculateRewards_1539": {
"entryPoint": 5720,
"id": 1539,
"parameterSlots": 1,
"returnSlots": 0
},
"@_checkOwner_556": {
"entryPoint": 5594,
"id": 556,
"parameterSlots": 0,
"returnSlots": 0
},
"@_getUserEstimatedRewards_1611": {
"entryPoint": 5902,
"id": 1611,
"parameterSlots": 1,
"returnSlots": 2
},
"@_msgSender_493": {
"entryPoint": 8181,
"id": 493,
"parameterSlots": 0,
"returnSlots": 1
},
"@_stakeTokens_1322": {
"entryPoint": 6309,
"id": 1322,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_613": {
"entryPoint": 7414,
"id": 613,
"parameterSlots": 1,
"returnSlots": 0
},
"@claimReward_1510": {
"entryPoint": 4388,
"id": 1510,
"parameterSlots": 0,
"returnSlots": 0
},
"@getAPY_1006": {
"entryPoint": 5437,
"id": 1006,
"parameterSlots": 0,
"returnSlots": 1
},
"@getCurrentTime_1620": {
"entryPoint": 5895,
"id": 1620,
"parameterSlots": 0,
"returnSlots": 1
},
"@getEarlyUnstakeFeePercentage_988": {
"entryPoint": 3358,
"id": 988,
"parameterSlots": 0,
"returnSlots": 1
},
"@getMaxStakingTokenLimit_934": {
"entryPoint": 5357,
"id": 934,
"parameterSlots": 0,
"returnSlots": 1
},
"@getMinimumStakingAmount_925": {
"entryPoint": 3226,
"id": 925,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakeDays_979": {
"entryPoint": 5455,
"id": 979,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakeEndDate_952": {
"entryPoint": 5446,
"id": 952,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakeStartDate_943": {
"entryPoint": 1331,
"id": 943,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakingStatus_997": {
"entryPoint": 5416,
"id": 997,
"parameterSlots": 0,
"returnSlots": 1
},
"@getTotalStakedTokens_961": {
"entryPoint": 3331,
"id": 961,
"parameterSlots": 0,
"returnSlots": 1
},
"@getTotalUsers_970": {
"entryPoint": 4276,
"id": 970,
"parameterSlots": 0,
"returnSlots": 1
},
"@getUserEstimatedRewards_1028": {
"entryPoint": 3235,
"id": 1028,
"parameterSlots": 0,
"returnSlots": 1
},
"@getUser_1061": {
"entryPoint": 3442,
"id": 1061,
"parameterSlots": 1,
"returnSlots": 1
},
"@getWithdrawableAmount_1047": {
"entryPoint": 4103,
"id": 1047,
"parameterSlots": 0,
"returnSlots": 1
},
"@initialize_823": {
"entryPoint": 3721,
"id": 823,
"parameterSlots": 9,
"returnSlots": 0
},
"@isContract_17": {
"entryPoint": 7607,
"id": 17,
"parameterSlots": 1,
"returnSlots": 1
},
"@isStakeHolder_1077": {
"entryPoint": 3367,
"id": 1077,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_542": {
"entryPoint": 4064,
"id": 542,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_570": {
"entryPoint": 3684,
"id": 570,
"parameterSlots": 0,
"returnSlots": 0
},
"@stakeForUser_1147": {
"entryPoint": 3578,
"id": 1147,
"parameterSlots": 2,
"returnSlots": 0
},
"@stake_1203": {
"entryPoint": 4285,
"id": 1203,
"parameterSlots": 1,
"returnSlots": 0
},
"@toggleStakingStatus_1159": {
"entryPoint": 5366,
"id": 1159,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_593": {
"entryPoint": 5464,
"id": 593,
"parameterSlots": 1,
"returnSlots": 0
},
"@unstake_1442": {
"entryPoint": 1358,
"id": 1442,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateEarlyUnstakeFeePercentage_1129": {
"entryPoint": 3703,
"id": 1129,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateMaximumStakingAmount_1103": {
"entryPoint": 1340,
"id": 1103,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateMinimumStakingAmount_1090": {
"entryPoint": 3340,
"id": 1090,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateStakingEndDate_1116": {
"entryPoint": 3208,
"id": 1116,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdraw_1188": {
"entryPoint": 2780,
"id": 1188,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 8438,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 9481,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 8305,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 9112,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 8458,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_uint256": {
"entryPoint": 8756,
"id": null,
"parameterSlots": 2,
"returnSlots": 9
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 9501,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 8325,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 9132,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address": {
"entryPoint": 8694,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 8952,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 8512,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack": {
"entryPoint": 10585,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11403,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10807,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10316,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12630,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11261,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9584,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11725,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10458,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10174,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12346,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10911,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9395,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11157,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11015,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12204,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12488,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9253,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12062,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9726,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11545,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9048,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11920,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack": {
"entryPoint": 8567,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 8552,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 8239,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 8967,
"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": 11789,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 10095,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 8527,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed": {
"entryPoint": 10600,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10841,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10350,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12664,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11295,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9618,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11759,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10492,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10208,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12380,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10945,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9429,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11191,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11049,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12238,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10699,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9287,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12096,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9760,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11954,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_User_$709_memory_ptr__to_t_struct$_User_$709_memory_ptr__fromStack_reversed": {
"entryPoint": 8669,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 8254,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 8992,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 9835,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 9996,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 9886,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 10044,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 8399,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 8501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_rational_1_by_1": {
"entryPoint": 10522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 8368,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 8230,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 10531,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_rational_1_by_1_to_t_uint8": {
"entryPoint": 10552,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 10543,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 9790,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9951,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8279,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464": {
"entryPoint": 11325,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 10729,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7": {
"entryPoint": 10238,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f": {
"entryPoint": 12552,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec": {
"entryPoint": 11221,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4": {
"entryPoint": 9544,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd": {
"entryPoint": 11609,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759": {
"entryPoint": 10380,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b": {
"entryPoint": 10134,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f": {
"entryPoint": 12268,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 10871,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf": {
"entryPoint": 9317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce": {
"entryPoint": 11079,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d": {
"entryPoint": 10975,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d": {
"entryPoint": 12126,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4": {
"entryPoint": 10625,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0": {
"entryPoint": 12410,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0": {
"entryPoint": 9175,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b": {
"entryPoint": 11984,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4": {
"entryPoint": 9648,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78": {
"entryPoint": 11467,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619": {
"entryPoint": 9008,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb": {
"entryPoint": 11842,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 8416,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9459,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 8283,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:34288:1",
"nodeType": "YulBlock",
"src": "0:34288:1",
"statements": [
{
"body": {
"nativeSrc": "52:32:1",
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nativeSrc": "62:16:1",
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nativeSrc": "73:5:1",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:1",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "7:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:1",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:1",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nativeSrc": "155:53:1",
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "172:3:1",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "195:5:1",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "177:17:1",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nativeSrc": "177:24:1",
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "165:6:1",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "90:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "143:5:1",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "150:3:1",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nativeSrc": "312:124:1",
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nativeSrc": "322:26:1",
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "334:9:1",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nativeSrc": "345:2:1",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "330:3:1",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nativeSrc": "330:18:1",
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "322:4:1",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "402:6:1",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "415:9:1",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nativeSrc": "426:1:1",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "411:3:1",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nativeSrc": "411:17:1",
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "358:43:1",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "214:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "284:9:1",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "296:6:1",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "307:4:1",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nativeSrc": "482:35:1",
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nativeSrc": "492:19:1",
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "508:2:1",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "502:5:1",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nativeSrc": "502:9:1",
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "492:6:1",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "442:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "475:6:1",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nativeSrc": "612:28:1",
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "629:1:1",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "632:1:1",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "622:6:1",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "523:117:1",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nativeSrc": "735:28:1",
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "752:1:1",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "755:1:1",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "745:6:1",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "646:117:1",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nativeSrc": "812:79:1",
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nativeSrc": "869:16:1",
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "878:1:1",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "881:1:1",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "871:6:1",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "835:5:1",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "860:5:1",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "842:17:1",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nativeSrc": "842:24:1",
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "832:2:1",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nativeSrc": "832:35:1",
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "825:6:1",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nativeSrc": "825:43:1",
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nativeSrc": "822:63:1",
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "769:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "805:5:1",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nativeSrc": "949:87:1",
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nativeSrc": "959:29:1",
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "981:6:1",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "968:12:1",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nativeSrc": "968:20:1",
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "959:5:1",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1024:5:1",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "997:26:1",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "897:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "927:6:1",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "935:3:1",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "943:5:1",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nativeSrc": "1108:263:1",
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nativeSrc": "1154:83:1",
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1156:77:1",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1129:7:1",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nativeSrc": "1138:9:1",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1125:3:1",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nativeSrc": "1125:23:1",
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nativeSrc": "1150:2:1",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1121:3:1",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nativeSrc": "1121:32:1",
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nativeSrc": "1118:119:1",
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nativeSrc": "1247:117:1",
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nativeSrc": "1262:15:1",
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nativeSrc": "1276:1:1",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1266:6:1",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1291:63:1",
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1326:9:1",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1322:3:1",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nativeSrc": "1322:22:1",
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1346:7:1",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "1301:20:1",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nativeSrc": "1301:53:1",
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1291:6:1",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "1042:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1078:9:1",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1089:7:1",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1101:6:1",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nativeSrc": "1422:81:1",
"nodeType": "YulBlock",
"src": "1422:81:1",
"statements": [
{
"nativeSrc": "1432:65:1",
"nodeType": "YulAssignment",
"src": "1432:65:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1447:5:1",
"nodeType": "YulIdentifier",
"src": "1447:5:1"
},
{
"kind": "number",
"nativeSrc": "1454:42:1",
"nodeType": "YulLiteral",
"src": "1454:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1443:3:1",
"nodeType": "YulIdentifier",
"src": "1443:3:1"
},
"nativeSrc": "1443:54:1",
"nodeType": "YulFunctionCall",
"src": "1443:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1432:7:1",
"nodeType": "YulIdentifier",
"src": "1432:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "1377:126:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1404:5:1",
"nodeType": "YulTypedName",
"src": "1404:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1414:7:1",
"nodeType": "YulTypedName",
"src": "1414:7:1",
"type": ""
}
],
"src": "1377:126:1"
},
{
"body": {
"nativeSrc": "1554:51:1",
"nodeType": "YulBlock",
"src": "1554:51:1",
"statements": [
{
"nativeSrc": "1564:35:1",
"nodeType": "YulAssignment",
"src": "1564:35:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1593:5:1",
"nodeType": "YulIdentifier",
"src": "1593:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1575:17:1",
"nodeType": "YulIdentifier",
"src": "1575:17:1"
},
"nativeSrc": "1575:24:1",
"nodeType": "YulFunctionCall",
"src": "1575:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1564:7:1",
"nodeType": "YulIdentifier",
"src": "1564:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1509:96:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1536:5:1",
"nodeType": "YulTypedName",
"src": "1536:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1546:7:1",
"nodeType": "YulTypedName",
"src": "1546:7:1",
"type": ""
}
],
"src": "1509:96:1"
},
{
"body": {
"nativeSrc": "1654:79:1",
"nodeType": "YulBlock",
"src": "1654:79:1",
"statements": [
{
"body": {
"nativeSrc": "1711:16:1",
"nodeType": "YulBlock",
"src": "1711:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1720:1:1",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1723:1:1",
"nodeType": "YulLiteral",
"src": "1723:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1713:6:1",
"nodeType": "YulIdentifier",
"src": "1713:6:1"
},
"nativeSrc": "1713:12:1",
"nodeType": "YulFunctionCall",
"src": "1713:12:1"
},
"nativeSrc": "1713:12:1",
"nodeType": "YulExpressionStatement",
"src": "1713:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1677:5:1",
"nodeType": "YulIdentifier",
"src": "1677:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1702:5:1",
"nodeType": "YulIdentifier",
"src": "1702:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1684:17:1",
"nodeType": "YulIdentifier",
"src": "1684:17:1"
},
"nativeSrc": "1684:24:1",
"nodeType": "YulFunctionCall",
"src": "1684:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1674:2:1",
"nodeType": "YulIdentifier",
"src": "1674:2:1"
},
"nativeSrc": "1674:35:1",
"nodeType": "YulFunctionCall",
"src": "1674:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1667:6:1",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nativeSrc": "1667:43:1",
"nodeType": "YulFunctionCall",
"src": "1667:43:1"
},
"nativeSrc": "1664:63:1",
"nodeType": "YulIf",
"src": "1664:63:1"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "1611:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1647:5:1",
"nodeType": "YulTypedName",
"src": "1647:5:1",
"type": ""
}
],
"src": "1611:122:1"
},
{
"body": {
"nativeSrc": "1791:87:1",
"nodeType": "YulBlock",
"src": "1791:87:1",
"statements": [
{
"nativeSrc": "1801:29:1",
"nodeType": "YulAssignment",
"src": "1801:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "1823:6:1",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "1810:12:1",
"nodeType": "YulIdentifier",
"src": "1810:12:1"
},
"nativeSrc": "1810:20:1",
"nodeType": "YulFunctionCall",
"src": "1810:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1801:5:1",
"nodeType": "YulIdentifier",
"src": "1801:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1866:5:1",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "1839:26:1",
"nodeType": "YulIdentifier",
"src": "1839:26:1"
},
"nativeSrc": "1839:33:1",
"nodeType": "YulFunctionCall",
"src": "1839:33:1"
},
"nativeSrc": "1839:33:1",
"nodeType": "YulExpressionStatement",
"src": "1839:33:1"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "1739:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1769:6:1",
"nodeType": "YulTypedName",
"src": "1769:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "1777:3:1",
"nodeType": "YulTypedName",
"src": "1777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1785:5:1",
"nodeType": "YulTypedName",
"src": "1785:5:1",
"type": ""
}
],
"src": "1739:139:1"
},
{
"body": {
"nativeSrc": "1950:263:1",
"nodeType": "YulBlock",
"src": "1950:263:1",
"statements": [
{
"body": {
"nativeSrc": "1996:83:1",
"nodeType": "YulBlock",
"src": "1996:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1998:77:1",
"nodeType": "YulIdentifier",
"src": "1998:77:1"
},
"nativeSrc": "1998:79:1",
"nodeType": "YulFunctionCall",
"src": "1998:79:1"
},
"nativeSrc": "1998:79:1",
"nodeType": "YulExpressionStatement",
"src": "1998:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1971:7:1",
"nodeType": "YulIdentifier",
"src": "1971:7:1"
},
{
"name": "headStart",
"nativeSrc": "1980:9:1",
"nodeType": "YulIdentifier",
"src": "1980:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1967:3:1",
"nodeType": "YulIdentifier",
"src": "1967:3:1"
},
"nativeSrc": "1967:23:1",
"nodeType": "YulFunctionCall",
"src": "1967:23:1"
},
{
"kind": "number",
"nativeSrc": "1992:2:1",
"nodeType": "YulLiteral",
"src": "1992:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1963:3:1",
"nodeType": "YulIdentifier",
"src": "1963:3:1"
},
"nativeSrc": "1963:32:1",
"nodeType": "YulFunctionCall",
"src": "1963:32:1"
},
"nativeSrc": "1960:119:1",
"nodeType": "YulIf",
"src": "1960:119:1"
},
{
"nativeSrc": "2089:117:1",
"nodeType": "YulBlock",
"src": "2089:117:1",
"statements": [
{
"nativeSrc": "2104:15:1",
"nodeType": "YulVariableDeclaration",
"src": "2104:15:1",
"value": {
"kind": "number",
"nativeSrc": "2118:1:1",
"nodeType": "YulLiteral",
"src": "2118:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2108:6:1",
"nodeType": "YulTypedName",
"src": "2108:6:1",
"type": ""
}
]
},
{
"nativeSrc": "2133:63:1",
"nodeType": "YulAssignment",
"src": "2133:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2168:9:1",
"nodeType": "YulIdentifier",
"src": "2168:9:1"
},
{
"name": "offset",
"nativeSrc": "2179:6:1",
"nodeType": "YulIdentifier",
"src": "2179:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2164:3:1",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
"nativeSrc": "2164:22:1",
"nodeType": "YulFunctionCall",
"src": "2164:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "2188:7:1",
"nodeType": "YulIdentifier",
"src": "2188:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "2143:20:1",
"nodeType": "YulIdentifier",
"src": "2143:20:1"
},
"nativeSrc": "2143:53:1",
"nodeType": "YulFunctionCall",
"src": "2143:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2133:6:1",
"nodeType": "YulIdentifier",
"src": "2133:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "1884:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1920:9:1",
"nodeType": "YulTypedName",
"src": "1920:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1931:7:1",
"nodeType": "YulTypedName",
"src": "1931:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1943:6:1",
"nodeType": "YulTypedName",
"src": "1943:6:1",
"type": ""
}
],
"src": "1884:329:1"
},
{
"body": {
"nativeSrc": "2261:48:1",
"nodeType": "YulBlock",
"src": "2261:48:1",
"statements": [
{
"nativeSrc": "2271:32:1",
"nodeType": "YulAssignment",
"src": "2271:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2296:5:1",
"nodeType": "YulIdentifier",
"src": "2296:5:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2289:6:1",
"nodeType": "YulIdentifier",
"src": "2289:6:1"
},
"nativeSrc": "2289:13:1",
"nodeType": "YulFunctionCall",
"src": "2289:13:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2282:6:1",
"nodeType": "YulIdentifier",
"src": "2282:6:1"
},
"nativeSrc": "2282:21:1",
"nodeType": "YulFunctionCall",
"src": "2282:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2271:7:1",
"nodeType": "YulIdentifier",
"src": "2271:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "2219:90:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2243:5:1",
"nodeType": "YulTypedName",
"src": "2243:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2253:7:1",
"nodeType": "YulTypedName",
"src": "2253:7:1",
"type": ""
}
],
"src": "2219:90:1"
},
{
"body": {
"nativeSrc": "2374:50:1",
"nodeType": "YulBlock",
"src": "2374:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2391:3:1",
"nodeType": "YulIdentifier",
"src": "2391:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2411:5:1",
"nodeType": "YulIdentifier",
"src": "2411:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "2396:14:1",
"nodeType": "YulIdentifier",
"src": "2396:14:1"
},
"nativeSrc": "2396:21:1",
"nodeType": "YulFunctionCall",
"src": "2396:21:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2384:6:1",
"nodeType": "YulIdentifier",
"src": "2384:6:1"
},
"nativeSrc": "2384:34:1",
"nodeType": "YulFunctionCall",
"src": "2384:34:1"
},
"nativeSrc": "2384:34:1",
"nodeType": "YulExpressionStatement",
"src": "2384:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "2315:109:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2362:5:1",
"nodeType": "YulTypedName",
"src": "2362:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2369:3:1",
"nodeType": "YulTypedName",
"src": "2369:3:1",
"type": ""
}
],
"src": "2315:109:1"
},
{
"body": {
"nativeSrc": "2522:118:1",
"nodeType": "YulBlock",
"src": "2522:118:1",
"statements": [
{
"nativeSrc": "2532:26:1",
"nodeType": "YulAssignment",
"src": "2532:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2544:9:1",
"nodeType": "YulIdentifier",
"src": "2544:9:1"
},
{
"kind": "number",
"nativeSrc": "2555:2:1",
"nodeType": "YulLiteral",
"src": "2555:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2540:3:1",
"nodeType": "YulIdentifier",
"src": "2540:3:1"
},
"nativeSrc": "2540:18:1",
"nodeType": "YulFunctionCall",
"src": "2540:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2532:4:1",
"nodeType": "YulIdentifier",
"src": "2532:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "2606:6:1",
"nodeType": "YulIdentifier",
"src": "2606:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2619:9:1",
"nodeType": "YulIdentifier",
"src": "2619:9:1"
},
{
"kind": "number",
"nativeSrc": "2630:1:1",
"nodeType": "YulLiteral",
"src": "2630:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2615:3:1",
"nodeType": "YulIdentifier",
"src": "2615:3:1"
},
"nativeSrc": "2615:17:1",
"nodeType": "YulFunctionCall",
"src": "2615:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "2568:37:1",
"nodeType": "YulIdentifier",
"src": "2568:37:1"
},
"nativeSrc": "2568:65:1",
"nodeType": "YulFunctionCall",
"src": "2568:65:1"
},
"nativeSrc": "2568:65:1",
"nodeType": "YulExpressionStatement",
"src": "2568:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nativeSrc": "2430:210:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2494:9:1",
"nodeType": "YulTypedName",
"src": "2494:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "2506:6:1",
"nodeType": "YulTypedName",
"src": "2506:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2517:4:1",
"nodeType": "YulTypedName",
"src": "2517:4:1",
"type": ""
}
],
"src": "2430:210:1"
},
{
"body": {
"nativeSrc": "2701:53:1",
"nodeType": "YulBlock",
"src": "2701:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2718:3:1",
"nodeType": "YulIdentifier",
"src": "2718:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2741:5:1",
"nodeType": "YulIdentifier",
"src": "2741:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2723:17:1",
"nodeType": "YulIdentifier",
"src": "2723:17:1"
},
"nativeSrc": "2723:24:1",
"nodeType": "YulFunctionCall",
"src": "2723:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2711:6:1",
"nodeType": "YulIdentifier",
"src": "2711:6:1"
},
"nativeSrc": "2711:37:1",
"nodeType": "YulFunctionCall",
"src": "2711:37:1"
},
"nativeSrc": "2711:37:1",
"nodeType": "YulExpressionStatement",
"src": "2711:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "2646:108:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2689:5:1",
"nodeType": "YulTypedName",
"src": "2689:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2696:3:1",
"nodeType": "YulTypedName",
"src": "2696:3:1",
"type": ""
}
],
"src": "2646:108:1"
},
{
"body": {
"nativeSrc": "2928:973:1",
"nodeType": "YulBlock",
"src": "2928:973:1",
"statements": [
{
"nativeSrc": "2938:26:1",
"nodeType": "YulVariableDeclaration",
"src": "2938:26:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2954:3:1",
"nodeType": "YulIdentifier",
"src": "2954:3:1"
},
{
"kind": "number",
"nativeSrc": "2959:4:1",
"nodeType": "YulLiteral",
"src": "2959:4:1",
"type": "",
"value": "0xa0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2950:3:1",
"nodeType": "YulIdentifier",
"src": "2950:3:1"
},
"nativeSrc": "2950:14:1",
"nodeType": "YulFunctionCall",
"src": "2950:14:1"
},
"variables": [
{
"name": "tail",
"nativeSrc": "2942:4:1",
"nodeType": "YulTypedName",
"src": "2942:4:1",
"type": ""
}
]
},
{
"nativeSrc": "2974:171:1",
"nodeType": "YulBlock",
"src": "2974:171:1",
"statements": [
{
"nativeSrc": "3016:43:1",
"nodeType": "YulVariableDeclaration",
"src": "3016:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3046:5:1",
"nodeType": "YulIdentifier",
"src": "3046:5:1"
},
{
"kind": "number",
"nativeSrc": "3053:4:1",
"nodeType": "YulLiteral",
"src": "3053:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3042:3:1",
"nodeType": "YulIdentifier",
"src": "3042:3:1"
},
"nativeSrc": "3042:16:1",
"nodeType": "YulFunctionCall",
"src": "3042:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3036:5:1",
"nodeType": "YulIdentifier",
"src": "3036:5:1"
},
"nativeSrc": "3036:23:1",
"nodeType": "YulFunctionCall",
"src": "3036:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "3020:12:1",
"nodeType": "YulTypedName",
"src": "3020:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "3106:12:1",
"nodeType": "YulIdentifier",
"src": "3106:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "3124:3:1",
"nodeType": "YulIdentifier",
"src": "3124:3:1"
},
{
"kind": "number",
"nativeSrc": "3129:4:1",
"nodeType": "YulLiteral",
"src": "3129:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3120:3:1",
"nodeType": "YulIdentifier",
"src": "3120:3:1"
},
"nativeSrc": "3120:14:1",
"nodeType": "YulFunctionCall",
"src": "3120:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "3072:33:1",
"nodeType": "YulIdentifier",
"src": "3072:33:1"
},
"nativeSrc": "3072:63:1",
"nodeType": "YulFunctionCall",
"src": "3072:63:1"
},
"nativeSrc": "3072:63:1",
"nodeType": "YulExpressionStatement",
"src": "3072:63:1"
}
]
},
{
"nativeSrc": "3155:172:1",
"nodeType": "YulBlock",
"src": "3155:172:1",
"statements": [
{
"nativeSrc": "3198:43:1",
"nodeType": "YulVariableDeclaration",
"src": "3198:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3228:5:1",
"nodeType": "YulIdentifier",
"src": "3228:5:1"
},
{
"kind": "number",
"nativeSrc": "3235:4:1",
"nodeType": "YulLiteral",
"src": "3235:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3224:3:1",
"nodeType": "YulIdentifier",
"src": "3224:3:1"
},
"nativeSrc": "3224:16:1",
"nodeType": "YulFunctionCall",
"src": "3224:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3218:5:1",
"nodeType": "YulIdentifier",
"src": "3218:5:1"
},
"nativeSrc": "3218:23:1",
"nodeType": "YulFunctionCall",
"src": "3218:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "3202:12:1",
"nodeType": "YulTypedName",
"src": "3202:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "3288:12:1",
"nodeType": "YulIdentifier",
"src": "3288:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "3306:3:1",
"nodeType": "YulIdentifier",
"src": "3306:3:1"
},
{
"kind": "number",
"nativeSrc": "3311:4:1",
"nodeType": "YulLiteral",
"src": "3311:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3302:3:1",
"nodeType": "YulIdentifier",
"src": "3302:3:1"
},
"nativeSrc": "3302:14:1",
"nodeType": "YulFunctionCall",
"src": "3302:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "3254:33:1",
"nodeType": "YulIdentifier",
"src": "3254:33:1"
},
"nativeSrc": "3254:63:1",
"nodeType": "YulFunctionCall",
"src": "3254:63:1"
},
"nativeSrc": "3254:63:1",
"nodeType": "YulExpressionStatement",
"src": "3254:63:1"
}
]
},
{
"nativeSrc": "3337:173:1",
"nodeType": "YulBlock",
"src": "3337:173:1",
"statements": [
{
"nativeSrc": "3381:43:1",
"nodeType": "YulVariableDeclaration",
"src": "3381:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3411:5:1",
"nodeType": "YulIdentifier",
"src": "3411:5:1"
},
{
"kind": "number",
"nativeSrc": "3418:4:1",
"nodeType": "YulLiteral",
"src": "3418:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3407:3:1",
"nodeType": "YulIdentifier",
"src": "3407:3:1"
},
"nativeSrc": "3407:16:1",
"nodeType": "YulFunctionCall",
"src": "3407:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3401:5:1",
"nodeType": "YulIdentifier",
"src": "3401:5:1"
},
"nativeSrc": "3401:23:1",
"nodeType": "YulFunctionCall",
"src": "3401:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "3385:12:1",
"nodeType": "YulTypedName",
"src": "3385:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "3471:12:1",
"nodeType": "YulIdentifier",
"src": "3471:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "3489:3:1",
"nodeType": "YulIdentifier",
"src": "3489:3:1"
},
{
"kind": "number",
"nativeSrc": "3494:4:1",
"nodeType": "YulLiteral",
"src": "3494:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3485:3:1",
"nodeType": "YulIdentifier",
"src": "3485:3:1"
},
"nativeSrc": "3485:14:1",
"nodeType": "YulFunctionCall",
"src": "3485:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "3437:33:1",
"nodeType": "YulIdentifier",
"src": "3437:33:1"
},
"nativeSrc": "3437:63:1",
"nodeType": "YulFunctionCall",
"src": "3437:63:1"
},
"nativeSrc": "3437:63:1",
"nodeType": "YulExpressionStatement",
"src": "3437:63:1"
}
]
},
{
"nativeSrc": "3520:185:1",
"nodeType": "YulBlock",
"src": "3520:185:1",
"statements": [
{
"nativeSrc": "3576:43:1",
"nodeType": "YulVariableDeclaration",
"src": "3576:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3606:5:1",
"nodeType": "YulIdentifier",
"src": "3606:5:1"
},
{
"kind": "number",
"nativeSrc": "3613:4:1",
"nodeType": "YulLiteral",
"src": "3613:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3602:3:1",
"nodeType": "YulIdentifier",
"src": "3602:3:1"
},
"nativeSrc": "3602:16:1",
"nodeType": "YulFunctionCall",
"src": "3602:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3596:5:1",
"nodeType": "YulIdentifier",
"src": "3596:5:1"
},
"nativeSrc": "3596:23:1",
"nodeType": "YulFunctionCall",
"src": "3596:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "3580:12:1",
"nodeType": "YulTypedName",
"src": "3580:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "3666:12:1",
"nodeType": "YulIdentifier",
"src": "3666:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "3684:3:1",
"nodeType": "YulIdentifier",
"src": "3684:3:1"
},
{
"kind": "number",
"nativeSrc": "3689:4:1",
"nodeType": "YulLiteral",
"src": "3689:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3680:3:1",
"nodeType": "YulIdentifier",
"src": "3680:3:1"
},
"nativeSrc": "3680:14:1",
"nodeType": "YulFunctionCall",
"src": "3680:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "3632:33:1",
"nodeType": "YulIdentifier",
"src": "3632:33:1"
},
"nativeSrc": "3632:63:1",
"nodeType": "YulFunctionCall",
"src": "3632:63:1"
},
"nativeSrc": "3632:63:1",
"nodeType": "YulExpressionStatement",
"src": "3632:63:1"
}
]
},
{
"nativeSrc": "3715:179:1",
"nodeType": "YulBlock",
"src": "3715:179:1",
"statements": [
{
"nativeSrc": "3765:43:1",
"nodeType": "YulVariableDeclaration",
"src": "3765:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3795:5:1",
"nodeType": "YulIdentifier",
"src": "3795:5:1"
},
{
"kind": "number",
"nativeSrc": "3802:4:1",
"nodeType": "YulLiteral",
"src": "3802:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3791:3:1",
"nodeType": "YulIdentifier",
"src": "3791:3:1"
},
"nativeSrc": "3791:16:1",
"nodeType": "YulFunctionCall",
"src": "3791:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3785:5:1",
"nodeType": "YulIdentifier",
"src": "3785:5:1"
},
"nativeSrc": "3785:23:1",
"nodeType": "YulFunctionCall",
"src": "3785:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "3769:12:1",
"nodeType": "YulTypedName",
"src": "3769:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "3855:12:1",
"nodeType": "YulIdentifier",
"src": "3855:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "3873:3:1",
"nodeType": "YulIdentifier",
"src": "3873:3:1"
},
{
"kind": "number",
"nativeSrc": "3878:4:1",
"nodeType": "YulLiteral",
"src": "3878:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3869:3:1",
"nodeType": "YulIdentifier",
"src": "3869:3:1"
},
"nativeSrc": "3869:14:1",
"nodeType": "YulFunctionCall",
"src": "3869:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "3821:33:1",
"nodeType": "YulIdentifier",
"src": "3821:33:1"
},
"nativeSrc": "3821:63:1",
"nodeType": "YulFunctionCall",
"src": "3821:63:1"
},
"nativeSrc": "3821:63:1",
"nodeType": "YulExpressionStatement",
"src": "3821:63:1"
}
]
}
]
},
"name": "abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack",
"nativeSrc": "2820:1081:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2915:5:1",
"nodeType": "YulTypedName",
"src": "2915:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2922:3:1",
"nodeType": "YulTypedName",
"src": "2922:3:1",
"type": ""
}
],
"src": "2820:1081:1"
},
{
"body": {
"nativeSrc": "4047:167:1",
"nodeType": "YulBlock",
"src": "4047:167:1",
"statements": [
{
"nativeSrc": "4057:27:1",
"nodeType": "YulAssignment",
"src": "4057:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "4069:9:1",
"nodeType": "YulIdentifier",
"src": "4069:9:1"
},
{
"kind": "number",
"nativeSrc": "4080:3:1",
"nodeType": "YulLiteral",
"src": "4080:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4065:3:1",
"nodeType": "YulIdentifier",
"src": "4065:3:1"
},
"nativeSrc": "4065:19:1",
"nodeType": "YulFunctionCall",
"src": "4065:19:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4057:4:1",
"nodeType": "YulIdentifier",
"src": "4057:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4180:6:1",
"nodeType": "YulIdentifier",
"src": "4180:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4193:9:1",
"nodeType": "YulIdentifier",
"src": "4193:9:1"
},
{
"kind": "number",
"nativeSrc": "4204:1:1",
"nodeType": "YulLiteral",
"src": "4204:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4189:3:1",
"nodeType": "YulIdentifier",
"src": "4189:3:1"
},
"nativeSrc": "4189:17:1",
"nodeType": "YulFunctionCall",
"src": "4189:17:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack",
"nativeSrc": "4094:85:1",
"nodeType": "YulIdentifier",
"src": "4094:85:1"
},
"nativeSrc": "4094:113:1",
"nodeType": "YulFunctionCall",
"src": "4094:113:1"
},
"nativeSrc": "4094:113:1",
"nodeType": "YulExpressionStatement",
"src": "4094:113:1"
}
]
},
"name": "abi_encode_tuple_t_struct$_User_$709_memory_ptr__to_t_struct$_User_$709_memory_ptr__fromStack_reversed",
"nativeSrc": "3907:307:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4019:9:1",
"nodeType": "YulTypedName",
"src": "4019:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "4031:6:1",
"nodeType": "YulTypedName",
"src": "4031:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4042:4:1",
"nodeType": "YulTypedName",
"src": "4042:4:1",
"type": ""
}
],
"src": "3907:307:1"
},
{
"body": {
"nativeSrc": "4303:391:1",
"nodeType": "YulBlock",
"src": "4303:391:1",
"statements": [
{
"body": {
"nativeSrc": "4349:83:1",
"nodeType": "YulBlock",
"src": "4349:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4351:77:1",
"nodeType": "YulIdentifier",
"src": "4351:77:1"
},
"nativeSrc": "4351:79:1",
"nodeType": "YulFunctionCall",
"src": "4351:79:1"
},
"nativeSrc": "4351:79:1",
"nodeType": "YulExpressionStatement",
"src": "4351:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4324:7:1",
"nodeType": "YulIdentifier",
"src": "4324:7:1"
},
{
"name": "headStart",
"nativeSrc": "4333:9:1",
"nodeType": "YulIdentifier",
"src": "4333:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4320:3:1",
"nodeType": "YulIdentifier",
"src": "4320:3:1"
},
"nativeSrc": "4320:23:1",
"nodeType": "YulFunctionCall",
"src": "4320:23:1"
},
{
"kind": "number",
"nativeSrc": "4345:2:1",
"nodeType": "YulLiteral",
"src": "4345:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4316:3:1",
"nodeType": "YulIdentifier",
"src": "4316:3:1"
},
"nativeSrc": "4316:32:1",
"nodeType": "YulFunctionCall",
"src": "4316:32:1"
},
"nativeSrc": "4313:119:1",
"nodeType": "YulIf",
"src": "4313:119:1"
},
{
"nativeSrc": "4442:117:1",
"nodeType": "YulBlock",
"src": "4442:117:1",
"statements": [
{
"nativeSrc": "4457:15:1",
"nodeType": "YulVariableDeclaration",
"src": "4457:15:1",
"value": {
"kind": "number",
"nativeSrc": "4471:1:1",
"nodeType": "YulLiteral",
"src": "4471:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4461:6:1",
"nodeType": "YulTypedName",
"src": "4461:6:1",
"type": ""
}
]
},
{
"nativeSrc": "4486:63:1",
"nodeType": "YulAssignment",
"src": "4486:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4521:9:1",
"nodeType": "YulIdentifier",
"src": "4521:9:1"
},
{
"name": "offset",
"nativeSrc": "4532:6:1",
"nodeType": "YulIdentifier",
"src": "4532:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4517:3:1",
"nodeType": "YulIdentifier",
"src": "4517:3:1"
},
"nativeSrc": "4517:22:1",
"nodeType": "YulFunctionCall",
"src": "4517:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4541:7:1",
"nodeType": "YulIdentifier",
"src": "4541:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4496:20:1",
"nodeType": "YulIdentifier",
"src": "4496:20:1"
},
"nativeSrc": "4496:53:1",
"nodeType": "YulFunctionCall",
"src": "4496:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4486:6:1",
"nodeType": "YulIdentifier",
"src": "4486:6:1"
}
]
}
]
},
{
"nativeSrc": "4569:118:1",
"nodeType": "YulBlock",
"src": "4569:118:1",
"statements": [
{
"nativeSrc": "4584:16:1",
"nodeType": "YulVariableDeclaration",
"src": "4584:16:1",
"value": {
"kind": "number",
"nativeSrc": "4598:2:1",
"nodeType": "YulLiteral",
"src": "4598:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4588:6:1",
"nodeType": "YulTypedName",
"src": "4588:6:1",
"type": ""
}
]
},
{
"nativeSrc": "4614:63:1",
"nodeType": "YulAssignment",
"src": "4614:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4649:9:1",
"nodeType": "YulIdentifier",
"src": "4649:9:1"
},
{
"name": "offset",
"nativeSrc": "4660:6:1",
"nodeType": "YulIdentifier",
"src": "4660:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4645:3:1",
"nodeType": "YulIdentifier",
"src": "4645:3:1"
},
"nativeSrc": "4645:22:1",
"nodeType": "YulFunctionCall",
"src": "4645:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4669:7:1",
"nodeType": "YulIdentifier",
"src": "4669:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "4624:20:1",
"nodeType": "YulIdentifier",
"src": "4624:20:1"
},
"nativeSrc": "4624:53:1",
"nodeType": "YulFunctionCall",
"src": "4624:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4614:6:1",
"nodeType": "YulIdentifier",
"src": "4614:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address",
"nativeSrc": "4220:474:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4265:9:1",
"nodeType": "YulTypedName",
"src": "4265:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4276:7:1",
"nodeType": "YulTypedName",
"src": "4276:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4288:6:1",
"nodeType": "YulTypedName",
"src": "4288:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "4296:6:1",
"nodeType": "YulTypedName",
"src": "4296:6:1",
"type": ""
}
],
"src": "4220:474:1"
},
{
"body": {
"nativeSrc": "4902:1293:1",
"nodeType": "YulBlock",
"src": "4902:1293:1",
"statements": [
{
"body": {
"nativeSrc": "4949:83:1",
"nodeType": "YulBlock",
"src": "4949:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4951:77:1",
"nodeType": "YulIdentifier",
"src": "4951:77:1"
},
"nativeSrc": "4951:79:1",
"nodeType": "YulFunctionCall",
"src": "4951:79:1"
},
"nativeSrc": "4951:79:1",
"nodeType": "YulExpressionStatement",
"src": "4951:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4923:7:1",
"nodeType": "YulIdentifier",
"src": "4923:7:1"
},
{
"name": "headStart",
"nativeSrc": "4932:9:1",
"nodeType": "YulIdentifier",
"src": "4932:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4919:3:1",
"nodeType": "YulIdentifier",
"src": "4919:3:1"
},
"nativeSrc": "4919:23:1",
"nodeType": "YulFunctionCall",
"src": "4919:23:1"
},
{
"kind": "number",
"nativeSrc": "4944:3:1",
"nodeType": "YulLiteral",
"src": "4944:3:1",
"type": "",
"value": "288"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4915:3:1",
"nodeType": "YulIdentifier",
"src": "4915:3:1"
},
"nativeSrc": "4915:33:1",
"nodeType": "YulFunctionCall",
"src": "4915:33:1"
},
"nativeSrc": "4912:120:1",
"nodeType": "YulIf",
"src": "4912:120:1"
},
{
"nativeSrc": "5042:117:1",
"nodeType": "YulBlock",
"src": "5042:117:1",
"statements": [
{
"nativeSrc": "5057:15:1",
"nodeType": "YulVariableDeclaration",
"src": "5057:15:1",
"value": {
"kind": "number",
"nativeSrc": "5071:1:1",
"nodeType": "YulLiteral",
"src": "5071:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5061:6:1",
"nodeType": "YulTypedName",
"src": "5061:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5086:63:1",
"nodeType": "YulAssignment",
"src": "5086:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5121:9:1",
"nodeType": "YulIdentifier",
"src": "5121:9:1"
},
{
"name": "offset",
"nativeSrc": "5132:6:1",
"nodeType": "YulIdentifier",
"src": "5132:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5117:3:1",
"nodeType": "YulIdentifier",
"src": "5117:3:1"
},
"nativeSrc": "5117:22:1",
"nodeType": "YulFunctionCall",
"src": "5117:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5141:7:1",
"nodeType": "YulIdentifier",
"src": "5141:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5096:20:1",
"nodeType": "YulIdentifier",
"src": "5096:20:1"
},
"nativeSrc": "5096:53:1",
"nodeType": "YulFunctionCall",
"src": "5096:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "5086:6:1",
"nodeType": "YulIdentifier",
"src": "5086:6:1"
}
]
}
]
},
{
"nativeSrc": "5169:118:1",
"nodeType": "YulBlock",
"src": "5169:118:1",
"statements": [
{
"nativeSrc": "5184:16:1",
"nodeType": "YulVariableDeclaration",
"src": "5184:16:1",
"value": {
"kind": "number",
"nativeSrc": "5198:2:1",
"nodeType": "YulLiteral",
"src": "5198:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5188:6:1",
"nodeType": "YulTypedName",
"src": "5188:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5214:63:1",
"nodeType": "YulAssignment",
"src": "5214:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5249:9:1",
"nodeType": "YulIdentifier",
"src": "5249:9:1"
},
{
"name": "offset",
"nativeSrc": "5260:6:1",
"nodeType": "YulIdentifier",
"src": "5260:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5245:3:1",
"nodeType": "YulIdentifier",
"src": "5245:3:1"
},
"nativeSrc": "5245:22:1",
"nodeType": "YulFunctionCall",
"src": "5245:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5269:7:1",
"nodeType": "YulIdentifier",
"src": "5269:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5224:20:1",
"nodeType": "YulIdentifier",
"src": "5224:20:1"
},
"nativeSrc": "5224:53:1",
"nodeType": "YulFunctionCall",
"src": "5224:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "5214:6:1",
"nodeType": "YulIdentifier",
"src": "5214:6:1"
}
]
}
]
},
{
"nativeSrc": "5297:118:1",
"nodeType": "YulBlock",
"src": "5297:118:1",
"statements": [
{
"nativeSrc": "5312:16:1",
"nodeType": "YulVariableDeclaration",
"src": "5312:16:1",
"value": {
"kind": "number",
"nativeSrc": "5326:2:1",
"nodeType": "YulLiteral",
"src": "5326:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5316:6:1",
"nodeType": "YulTypedName",
"src": "5316:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5342:63:1",
"nodeType": "YulAssignment",
"src": "5342:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5377:9:1",
"nodeType": "YulIdentifier",
"src": "5377:9:1"
},
{
"name": "offset",
"nativeSrc": "5388:6:1",
"nodeType": "YulIdentifier",
"src": "5388:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5373:3:1",
"nodeType": "YulIdentifier",
"src": "5373:3:1"
},
"nativeSrc": "5373:22:1",
"nodeType": "YulFunctionCall",
"src": "5373:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5397:7:1",
"nodeType": "YulIdentifier",
"src": "5397:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5352:20:1",
"nodeType": "YulIdentifier",
"src": "5352:20:1"
},
"nativeSrc": "5352:53:1",
"nodeType": "YulFunctionCall",
"src": "5352:53:1"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "5342:6:1",
"nodeType": "YulIdentifier",
"src": "5342:6:1"
}
]
}
]
},
{
"nativeSrc": "5425:118:1",
"nodeType": "YulBlock",
"src": "5425:118:1",
"statements": [
{
"nativeSrc": "5440:16:1",
"nodeType": "YulVariableDeclaration",
"src": "5440:16:1",
"value": {
"kind": "number",
"nativeSrc": "5454:2:1",
"nodeType": "YulLiteral",
"src": "5454:2:1",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5444:6:1",
"nodeType": "YulTypedName",
"src": "5444:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5470:63:1",
"nodeType": "YulAssignment",
"src": "5470:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5505:9:1",
"nodeType": "YulIdentifier",
"src": "5505:9:1"
},
{
"name": "offset",
"nativeSrc": "5516:6:1",
"nodeType": "YulIdentifier",
"src": "5516:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5501:3:1",
"nodeType": "YulIdentifier",
"src": "5501:3:1"
},
"nativeSrc": "5501:22:1",
"nodeType": "YulFunctionCall",
"src": "5501:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5525:7:1",
"nodeType": "YulIdentifier",
"src": "5525:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5480:20:1",
"nodeType": "YulIdentifier",
"src": "5480:20:1"
},
"nativeSrc": "5480:53:1",
"nodeType": "YulFunctionCall",
"src": "5480:53:1"
},
"variableNames": [
{
"name": "value3",
"nativeSrc": "5470:6:1",
"nodeType": "YulIdentifier",
"src": "5470:6:1"
}
]
}
]
},
{
"nativeSrc": "5553:119:1",
"nodeType": "YulBlock",
"src": "5553:119:1",
"statements": [
{
"nativeSrc": "5568:17:1",
"nodeType": "YulVariableDeclaration",
"src": "5568:17:1",
"value": {
"kind": "number",
"nativeSrc": "5582:3:1",
"nodeType": "YulLiteral",
"src": "5582:3:1",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5572:6:1",
"nodeType": "YulTypedName",
"src": "5572:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5599:63:1",
"nodeType": "YulAssignment",
"src": "5599:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5634:9:1",
"nodeType": "YulIdentifier",
"src": "5634:9:1"
},
{
"name": "offset",
"nativeSrc": "5645:6:1",
"nodeType": "YulIdentifier",
"src": "5645:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5630:3:1",
"nodeType": "YulIdentifier",
"src": "5630:3:1"
},
"nativeSrc": "5630:22:1",
"nodeType": "YulFunctionCall",
"src": "5630:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5654:7:1",
"nodeType": "YulIdentifier",
"src": "5654:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5609:20:1",
"nodeType": "YulIdentifier",
"src": "5609:20:1"
},
"nativeSrc": "5609:53:1",
"nodeType": "YulFunctionCall",
"src": "5609:53:1"
},
"variableNames": [
{
"name": "value4",
"nativeSrc": "5599:6:1",
"nodeType": "YulIdentifier",
"src": "5599:6:1"
}
]
}
]
},
{
"nativeSrc": "5682:119:1",
"nodeType": "YulBlock",
"src": "5682:119:1",
"statements": [
{
"nativeSrc": "5697:17:1",
"nodeType": "YulVariableDeclaration",
"src": "5697:17:1",
"value": {
"kind": "number",
"nativeSrc": "5711:3:1",
"nodeType": "YulLiteral",
"src": "5711:3:1",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5701:6:1",
"nodeType": "YulTypedName",
"src": "5701:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5728:63:1",
"nodeType": "YulAssignment",
"src": "5728:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5763:9:1",
"nodeType": "YulIdentifier",
"src": "5763:9:1"
},
{
"name": "offset",
"nativeSrc": "5774:6:1",
"nodeType": "YulIdentifier",
"src": "5774:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5759:3:1",
"nodeType": "YulIdentifier",
"src": "5759:3:1"
},
"nativeSrc": "5759:22:1",
"nodeType": "YulFunctionCall",
"src": "5759:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5783:7:1",
"nodeType": "YulIdentifier",
"src": "5783:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5738:20:1",
"nodeType": "YulIdentifier",
"src": "5738:20:1"
},
"nativeSrc": "5738:53:1",
"nodeType": "YulFunctionCall",
"src": "5738:53:1"
},
"variableNames": [
{
"name": "value5",
"nativeSrc": "5728:6:1",
"nodeType": "YulIdentifier",
"src": "5728:6:1"
}
]
}
]
},
{
"nativeSrc": "5811:119:1",
"nodeType": "YulBlock",
"src": "5811:119:1",
"statements": [
{
"nativeSrc": "5826:17:1",
"nodeType": "YulVariableDeclaration",
"src": "5826:17:1",
"value": {
"kind": "number",
"nativeSrc": "5840:3:1",
"nodeType": "YulLiteral",
"src": "5840:3:1",
"type": "",
"value": "192"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5830:6:1",
"nodeType": "YulTypedName",
"src": "5830:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5857:63:1",
"nodeType": "YulAssignment",
"src": "5857:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5892:9:1",
"nodeType": "YulIdentifier",
"src": "5892:9:1"
},
{
"name": "offset",
"nativeSrc": "5903:6:1",
"nodeType": "YulIdentifier",
"src": "5903:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5888:3:1",
"nodeType": "YulIdentifier",
"src": "5888:3:1"
},
"nativeSrc": "5888:22:1",
"nodeType": "YulFunctionCall",
"src": "5888:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "5912:7:1",
"nodeType": "YulIdentifier",
"src": "5912:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5867:20:1",
"nodeType": "YulIdentifier",
"src": "5867:20:1"
},
"nativeSrc": "5867:53:1",
"nodeType": "YulFunctionCall",
"src": "5867:53:1"
},
"variableNames": [
{
"name": "value6",
"nativeSrc": "5857:6:1",
"nodeType": "YulIdentifier",
"src": "5857:6:1"
}
]
}
]
},
{
"nativeSrc": "5940:119:1",
"nodeType": "YulBlock",
"src": "5940:119:1",
"statements": [
{
"nativeSrc": "5955:17:1",
"nodeType": "YulVariableDeclaration",
"src": "5955:17:1",
"value": {
"kind": "number",
"nativeSrc": "5969:3:1",
"nodeType": "YulLiteral",
"src": "5969:3:1",
"type": "",
"value": "224"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5959:6:1",
"nodeType": "YulTypedName",
"src": "5959:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5986:63:1",
"nodeType": "YulAssignment",
"src": "5986:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6021:9:1",
"nodeType": "YulIdentifier",
"src": "6021:9:1"
},
{
"name": "offset",
"nativeSrc": "6032:6:1",
"nodeType": "YulIdentifier",
"src": "6032:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6017:3:1",
"nodeType": "YulIdentifier",
"src": "6017:3:1"
},
"nativeSrc": "6017:22:1",
"nodeType": "YulFunctionCall",
"src": "6017:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "6041:7:1",
"nodeType": "YulIdentifier",
"src": "6041:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5996:20:1",
"nodeType": "YulIdentifier",
"src": "5996:20:1"
},
"nativeSrc": "5996:53:1",
"nodeType": "YulFunctionCall",
"src": "5996:53:1"
},
"variableNames": [
{
"name": "value7",
"nativeSrc": "5986:6:1",
"nodeType": "YulIdentifier",
"src": "5986:6:1"
}
]
}
]
},
{
"nativeSrc": "6069:119:1",
"nodeType": "YulBlock",
"src": "6069:119:1",
"statements": [
{
"nativeSrc": "6084:17:1",
"nodeType": "YulVariableDeclaration",
"src": "6084:17:1",
"value": {
"kind": "number",
"nativeSrc": "6098:3:1",
"nodeType": "YulLiteral",
"src": "6098:3:1",
"type": "",
"value": "256"
},
"variables": [
{
"name": "offset",
"nativeSrc": "6088:6:1",
"nodeType": "YulTypedName",
"src": "6088:6:1",
"type": ""
}
]
},
{
"nativeSrc": "6115:63:1",
"nodeType": "YulAssignment",
"src": "6115:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6150:9:1",
"nodeType": "YulIdentifier",
"src": "6150:9:1"
},
{
"name": "offset",
"nativeSrc": "6161:6:1",
"nodeType": "YulIdentifier",
"src": "6161:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6146:3:1",
"nodeType": "YulIdentifier",
"src": "6146:3:1"
},
"nativeSrc": "6146:22:1",
"nodeType": "YulFunctionCall",
"src": "6146:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "6170:7:1",
"nodeType": "YulIdentifier",
"src": "6170:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "6125:20:1",
"nodeType": "YulIdentifier",
"src": "6125:20:1"
},
"nativeSrc": "6125:53:1",
"nodeType": "YulFunctionCall",
"src": "6125:53:1"
},
"variableNames": [
{
"name": "value8",
"nativeSrc": "6115:6:1",
"nodeType": "YulIdentifier",
"src": "6115:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_uint256",
"nativeSrc": "4700:1495:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4808:9:1",
"nodeType": "YulTypedName",
"src": "4808:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4819:7:1",
"nodeType": "YulTypedName",
"src": "4819:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4831:6:1",
"nodeType": "YulTypedName",
"src": "4831:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "4839:6:1",
"nodeType": "YulTypedName",
"src": "4839:6:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "4847:6:1",
"nodeType": "YulTypedName",
"src": "4847:6:1",
"type": ""
},
{
"name": "value3",
"nativeSrc": "4855:6:1",
"nodeType": "YulTypedName",
"src": "4855:6:1",
"type": ""
},
{
"name": "value4",
"nativeSrc": "4863:6:1",
"nodeType": "YulTypedName",
"src": "4863:6:1",
"type": ""
},
{
"name": "value5",
"nativeSrc": "4871:6:1",
"nodeType": "YulTypedName",
"src": "4871:6:1",
"type": ""
},
{
"name": "value6",
"nativeSrc": "4879:6:1",
"nodeType": "YulTypedName",
"src": "4879:6:1",
"type": ""
},
{
"name": "value7",
"nativeSrc": "4887:6:1",
"nodeType": "YulTypedName",
"src": "4887:6:1",
"type": ""
},
{
"name": "value8",
"nativeSrc": "4895:6:1",
"nodeType": "YulTypedName",
"src": "4895:6:1",
"type": ""
}
],
"src": "4700:1495:1"
},
{
"body": {
"nativeSrc": "6266:53:1",
"nodeType": "YulBlock",
"src": "6266:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6283:3:1",
"nodeType": "YulIdentifier",
"src": "6283:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6306:5:1",
"nodeType": "YulIdentifier",
"src": "6306:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "6288:17:1",
"nodeType": "YulIdentifier",
"src": "6288:17:1"
},
"nativeSrc": "6288:24:1",
"nodeType": "YulFunctionCall",
"src": "6288:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6276:6:1",
"nodeType": "YulIdentifier",
"src": "6276:6:1"
},
"nativeSrc": "6276:37:1",
"nodeType": "YulFunctionCall",
"src": "6276:37:1"
},
"nativeSrc": "6276:37:1",
"nodeType": "YulExpressionStatement",
"src": "6276:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "6201:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6254:5:1",
"nodeType": "YulTypedName",
"src": "6254:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "6261:3:1",
"nodeType": "YulTypedName",
"src": "6261:3:1",
"type": ""
}
],
"src": "6201:118:1"
},
{
"body": {
"nativeSrc": "6423:124:1",
"nodeType": "YulBlock",
"src": "6423:124:1",
"statements": [
{
"nativeSrc": "6433:26:1",
"nodeType": "YulAssignment",
"src": "6433:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6445:9:1",
"nodeType": "YulIdentifier",
"src": "6445:9:1"
},
{
"kind": "number",
"nativeSrc": "6456:2:1",
"nodeType": "YulLiteral",
"src": "6456:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6441:3:1",
"nodeType": "YulIdentifier",
"src": "6441:3:1"
},
"nativeSrc": "6441:18:1",
"nodeType": "YulFunctionCall",
"src": "6441:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6433:4:1",
"nodeType": "YulIdentifier",
"src": "6433:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6513:6:1",
"nodeType": "YulIdentifier",
"src": "6513:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6526:9:1",
"nodeType": "YulIdentifier",
"src": "6526:9:1"
},
{
"kind": "number",
"nativeSrc": "6537:1:1",
"nodeType": "YulLiteral",
"src": "6537:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6522:3:1",
"nodeType": "YulIdentifier",
"src": "6522:3:1"
},
"nativeSrc": "6522:17:1",
"nodeType": "YulFunctionCall",
"src": "6522:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "6469:43:1",
"nodeType": "YulIdentifier",
"src": "6469:43:1"
},
"nativeSrc": "6469:71:1",
"nodeType": "YulFunctionCall",
"src": "6469:71:1"
},
"nativeSrc": "6469:71:1",
"nodeType": "YulExpressionStatement",
"src": "6469:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "6325:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6395:9:1",
"nodeType": "YulTypedName",
"src": "6395:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6407:6:1",
"nodeType": "YulTypedName",
"src": "6407:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6418:4:1",
"nodeType": "YulTypedName",
"src": "6418:4:1",
"type": ""
}
],
"src": "6325:222:1"
},
{
"body": {
"nativeSrc": "6649:73:1",
"nodeType": "YulBlock",
"src": "6649:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6666:3:1",
"nodeType": "YulIdentifier",
"src": "6666:3:1"
},
{
"name": "length",
"nativeSrc": "6671:6:1",
"nodeType": "YulIdentifier",
"src": "6671:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6659:6:1",
"nodeType": "YulIdentifier",
"src": "6659:6:1"
},
"nativeSrc": "6659:19:1",
"nodeType": "YulFunctionCall",
"src": "6659:19:1"
},
"nativeSrc": "6659:19:1",
"nodeType": "YulExpressionStatement",
"src": "6659:19:1"
},
{
"nativeSrc": "6687:29:1",
"nodeType": "YulAssignment",
"src": "6687:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6706:3:1",
"nodeType": "YulIdentifier",
"src": "6706:3:1"
},
{
"kind": "number",
"nativeSrc": "6711:4:1",
"nodeType": "YulLiteral",
"src": "6711:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6702:3:1",
"nodeType": "YulIdentifier",
"src": "6702:3:1"
},
"nativeSrc": "6702:14:1",
"nodeType": "YulFunctionCall",
"src": "6702:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "6687:11:1",
"nodeType": "YulIdentifier",
"src": "6687:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "6553:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "6621:3:1",
"nodeType": "YulTypedName",
"src": "6621:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "6626:6:1",
"nodeType": "YulTypedName",
"src": "6626:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "6637:11:1",
"nodeType": "YulTypedName",
"src": "6637:11:1",
"type": ""
}
],
"src": "6553:169:1"
},
{
"body": {
"nativeSrc": "6834:75:1",
"nodeType": "YulBlock",
"src": "6834:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "6856:6:1",
"nodeType": "YulIdentifier",
"src": "6856:6:1"
},
{
"kind": "number",
"nativeSrc": "6864:1:1",
"nodeType": "YulLiteral",
"src": "6864:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6852:3:1",
"nodeType": "YulIdentifier",
"src": "6852:3:1"
},
"nativeSrc": "6852:14:1",
"nodeType": "YulFunctionCall",
"src": "6852:14:1"
},
{
"hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
"kind": "string",
"nativeSrc": "6868:33:1",
"nodeType": "YulLiteral",
"src": "6868:33:1",
"type": "",
"value": "ReentrancyGuard: reentrant call"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6845:6:1",
"nodeType": "YulIdentifier",
"src": "6845:6:1"
},
"nativeSrc": "6845:57:1",
"nodeType": "YulFunctionCall",
"src": "6845:57:1"
},
"nativeSrc": "6845:57:1",
"nodeType": "YulExpressionStatement",
"src": "6845:57:1"
}
]
},
"name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
"nativeSrc": "6728:181:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "6826:6:1",
"nodeType": "YulTypedName",
"src": "6826:6:1",
"type": ""
}
],
"src": "6728:181:1"
},
{
"body": {
"nativeSrc": "7061:220:1",
"nodeType": "YulBlock",
"src": "7061:220:1",
"statements": [
{
"nativeSrc": "7071:74:1",
"nodeType": "YulAssignment",
"src": "7071:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7137:3:1",
"nodeType": "YulIdentifier",
"src": "7137:3:1"
},
{
"kind": "number",
"nativeSrc": "7142:2:1",
"nodeType": "YulLiteral",
"src": "7142:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7078:58:1",
"nodeType": "YulIdentifier",
"src": "7078:58:1"
},
"nativeSrc": "7078:67:1",
"nodeType": "YulFunctionCall",
"src": "7078:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7071:3:1",
"nodeType": "YulIdentifier",
"src": "7071:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7243:3:1",
"nodeType": "YulIdentifier",
"src": "7243:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
"nativeSrc": "7154:88:1",
"nodeType": "YulIdentifier",
"src": "7154:88:1"
},
"nativeSrc": "7154:93:1",
"nodeType": "YulFunctionCall",
"src": "7154:93:1"
},
"nativeSrc": "7154:93:1",
"nodeType": "YulExpressionStatement",
"src": "7154:93:1"
},
{
"nativeSrc": "7256:19:1",
"nodeType": "YulAssignment",
"src": "7256:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7267:3:1",
"nodeType": "YulIdentifier",
"src": "7267:3:1"
},
{
"kind": "number",
"nativeSrc": "7272:2:1",
"nodeType": "YulLiteral",
"src": "7272:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7263:3:1",
"nodeType": "YulIdentifier",
"src": "7263:3:1"
},
"nativeSrc": "7263:12:1",
"nodeType": "YulFunctionCall",
"src": "7263:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7256:3:1",
"nodeType": "YulIdentifier",
"src": "7256:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6915:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7049:3:1",
"nodeType": "YulTypedName",
"src": "7049:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7057:3:1",
"nodeType": "YulTypedName",
"src": "7057:3:1",
"type": ""
}
],
"src": "6915:366:1"
},
{
"body": {
"nativeSrc": "7458:248:1",
"nodeType": "YulBlock",
"src": "7458:248:1",
"statements": [
{
"nativeSrc": "7468:26:1",
"nodeType": "YulAssignment",
"src": "7468:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7480:9:1",
"nodeType": "YulIdentifier",
"src": "7480:9:1"
},
{
"kind": "number",
"nativeSrc": "7491:2:1",
"nodeType": "YulLiteral",
"src": "7491:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7476:3:1",
"nodeType": "YulIdentifier",
"src": "7476:3:1"
},
"nativeSrc": "7476:18:1",
"nodeType": "YulFunctionCall",
"src": "7476:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7468:4:1",
"nodeType": "YulIdentifier",
"src": "7468:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7515:9:1",
"nodeType": "YulIdentifier",
"src": "7515:9:1"
},
{
"kind": "number",
"nativeSrc": "7526:1:1",
"nodeType": "YulLiteral",
"src": "7526:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7511:3:1",
"nodeType": "YulIdentifier",
"src": "7511:3:1"
},
"nativeSrc": "7511:17:1",
"nodeType": "YulFunctionCall",
"src": "7511:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "7534:4:1",
"nodeType": "YulIdentifier",
"src": "7534:4:1"
},
{
"name": "headStart",
"nativeSrc": "7540:9:1",
"nodeType": "YulIdentifier",
"src": "7540:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7530:3:1",
"nodeType": "YulIdentifier",
"src": "7530:3:1"
},
"nativeSrc": "7530:20:1",
"nodeType": "YulFunctionCall",
"src": "7530:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7504:6:1",
"nodeType": "YulIdentifier",
"src": "7504:6:1"
},
"nativeSrc": "7504:47:1",
"nodeType": "YulFunctionCall",
"src": "7504:47:1"
},
"nativeSrc": "7504:47:1",
"nodeType": "YulExpressionStatement",
"src": "7504:47:1"
},
{
"nativeSrc": "7560:139:1",
"nodeType": "YulAssignment",
"src": "7560:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "7694:4:1",
"nodeType": "YulIdentifier",
"src": "7694:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7568:124:1",
"nodeType": "YulIdentifier",
"src": "7568:124:1"
},
"nativeSrc": "7568:131:1",
"nodeType": "YulFunctionCall",
"src": "7568:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7560:4:1",
"nodeType": "YulIdentifier",
"src": "7560:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "7287:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7438:9:1",
"nodeType": "YulTypedName",
"src": "7438:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7453:4:1",
"nodeType": "YulTypedName",
"src": "7453:4:1",
"type": ""
}
],
"src": "7287:419:1"
},
{
"body": {
"nativeSrc": "7775:80:1",
"nodeType": "YulBlock",
"src": "7775:80:1",
"statements": [
{
"nativeSrc": "7785:22:1",
"nodeType": "YulAssignment",
"src": "7785:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "7800:6:1",
"nodeType": "YulIdentifier",
"src": "7800:6:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "7794:5:1",
"nodeType": "YulIdentifier",
"src": "7794:5:1"
},
"nativeSrc": "7794:13:1",
"nodeType": "YulFunctionCall",
"src": "7794:13:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "7785:5:1",
"nodeType": "YulIdentifier",
"src": "7785:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "7843:5:1",
"nodeType": "YulIdentifier",
"src": "7843:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "7816:26:1",
"nodeType": "YulIdentifier",
"src": "7816:26:1"
},
"nativeSrc": "7816:33:1",
"nodeType": "YulFunctionCall",
"src": "7816:33:1"
},
"nativeSrc": "7816:33:1",
"nodeType": "YulExpressionStatement",
"src": "7816:33:1"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nativeSrc": "7712:143:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "7753:6:1",
"nodeType": "YulTypedName",
"src": "7753:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "7761:3:1",
"nodeType": "YulTypedName",
"src": "7761:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "7769:5:1",
"nodeType": "YulTypedName",
"src": "7769:5:1",
"type": ""
}
],
"src": "7712:143:1"
},
{
"body": {
"nativeSrc": "7938:274:1",
"nodeType": "YulBlock",
"src": "7938:274:1",
"statements": [
{
"body": {
"nativeSrc": "7984:83:1",
"nodeType": "YulBlock",
"src": "7984:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "7986:77:1",
"nodeType": "YulIdentifier",
"src": "7986:77:1"
},
"nativeSrc": "7986:79:1",
"nodeType": "YulFunctionCall",
"src": "7986:79:1"
},
"nativeSrc": "7986:79:1",
"nodeType": "YulExpressionStatement",
"src": "7986:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "7959:7:1",
"nodeType": "YulIdentifier",
"src": "7959:7:1"
},
{
"name": "headStart",
"nativeSrc": "7968:9:1",
"nodeType": "YulIdentifier",
"src": "7968:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7955:3:1",
"nodeType": "YulIdentifier",
"src": "7955:3:1"
},
"nativeSrc": "7955:23:1",
"nodeType": "YulFunctionCall",
"src": "7955:23:1"
},
{
"kind": "number",
"nativeSrc": "7980:2:1",
"nodeType": "YulLiteral",
"src": "7980:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "7951:3:1",
"nodeType": "YulIdentifier",
"src": "7951:3:1"
},
"nativeSrc": "7951:32:1",
"nodeType": "YulFunctionCall",
"src": "7951:32:1"
},
"nativeSrc": "7948:119:1",
"nodeType": "YulIf",
"src": "7948:119:1"
},
{
"nativeSrc": "8077:128:1",
"nodeType": "YulBlock",
"src": "8077:128:1",
"statements": [
{
"nativeSrc": "8092:15:1",
"nodeType": "YulVariableDeclaration",
"src": "8092:15:1",
"value": {
"kind": "number",
"nativeSrc": "8106:1:1",
"nodeType": "YulLiteral",
"src": "8106:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "8096:6:1",
"nodeType": "YulTypedName",
"src": "8096:6:1",
"type": ""
}
]
},
{
"nativeSrc": "8121:74:1",
"nodeType": "YulAssignment",
"src": "8121:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8167:9:1",
"nodeType": "YulIdentifier",
"src": "8167:9:1"
},
{
"name": "offset",
"nativeSrc": "8178:6:1",
"nodeType": "YulIdentifier",
"src": "8178:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8163:3:1",
"nodeType": "YulIdentifier",
"src": "8163:3:1"
},
"nativeSrc": "8163:22:1",
"nodeType": "YulFunctionCall",
"src": "8163:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "8187:7:1",
"nodeType": "YulIdentifier",
"src": "8187:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nativeSrc": "8131:31:1",
"nodeType": "YulIdentifier",
"src": "8131:31:1"
},
"nativeSrc": "8131:64:1",
"nodeType": "YulFunctionCall",
"src": "8131:64:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "8121:6:1",
"nodeType": "YulIdentifier",
"src": "8121:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nativeSrc": "7861:351:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7908:9:1",
"nodeType": "YulTypedName",
"src": "7908:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "7919:7:1",
"nodeType": "YulTypedName",
"src": "7919:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "7931:6:1",
"nodeType": "YulTypedName",
"src": "7931:6:1",
"type": ""
}
],
"src": "7861:351:1"
},
{
"body": {
"nativeSrc": "8324:129:1",
"nodeType": "YulBlock",
"src": "8324:129:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8346:6:1",
"nodeType": "YulIdentifier",
"src": "8346:6:1"
},
{
"kind": "number",
"nativeSrc": "8354:1:1",
"nodeType": "YulLiteral",
"src": "8354:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8342:3:1",
"nodeType": "YulIdentifier",
"src": "8342:3:1"
},
"nativeSrc": "8342:14:1",
"nodeType": "YulFunctionCall",
"src": "8342:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a20696e73756666696369656e742066756e6473",
"kind": "string",
"nativeSrc": "8358:34:1",
"nodeType": "YulLiteral",
"src": "8358:34:1",
"type": "",
"value": "TokenStaking: insufficient funds"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8335:6:1",
"nodeType": "YulIdentifier",
"src": "8335:6:1"
},
"nativeSrc": "8335:58:1",
"nodeType": "YulFunctionCall",
"src": "8335:58:1"
},
"nativeSrc": "8335:58:1",
"nodeType": "YulExpressionStatement",
"src": "8335:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8414:6:1",
"nodeType": "YulIdentifier",
"src": "8414:6:1"
},
{
"kind": "number",
"nativeSrc": "8422:2:1",
"nodeType": "YulLiteral",
"src": "8422:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8410:3:1",
"nodeType": "YulIdentifier",
"src": "8410:3:1"
},
"nativeSrc": "8410:15:1",
"nodeType": "YulFunctionCall",
"src": "8410:15:1"
},
{
"hexValue": "20696e20746865207472656173757279",
"kind": "string",
"nativeSrc": "8427:18:1",
"nodeType": "YulLiteral",
"src": "8427:18:1",
"type": "",
"value": " in the treasury"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8403:6:1",
"nodeType": "YulIdentifier",
"src": "8403:6:1"
},
"nativeSrc": "8403:43:1",
"nodeType": "YulFunctionCall",
"src": "8403:43:1"
},
"nativeSrc": "8403:43:1",
"nodeType": "YulExpressionStatement",
"src": "8403:43:1"
}
]
},
"name": "store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0",
"nativeSrc": "8218:235:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "8316:6:1",
"nodeType": "YulTypedName",
"src": "8316:6:1",
"type": ""
}
],
"src": "8218:235:1"
},
{
"body": {
"nativeSrc": "8605:220:1",
"nodeType": "YulBlock",
"src": "8605:220:1",
"statements": [
{
"nativeSrc": "8615:74:1",
"nodeType": "YulAssignment",
"src": "8615:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8681:3:1",
"nodeType": "YulIdentifier",
"src": "8681:3:1"
},
{
"kind": "number",
"nativeSrc": "8686:2:1",
"nodeType": "YulLiteral",
"src": "8686:2:1",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "8622:58:1",
"nodeType": "YulIdentifier",
"src": "8622:58:1"
},
"nativeSrc": "8622:67:1",
"nodeType": "YulFunctionCall",
"src": "8622:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8615:3:1",
"nodeType": "YulIdentifier",
"src": "8615:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8787:3:1",
"nodeType": "YulIdentifier",
"src": "8787:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0",
"nativeSrc": "8698:88:1",
"nodeType": "YulIdentifier",
"src": "8698:88:1"
},
"nativeSrc": "8698:93:1",
"nodeType": "YulFunctionCall",
"src": "8698:93:1"
},
"nativeSrc": "8698:93:1",
"nodeType": "YulExpressionStatement",
"src": "8698:93:1"
},
{
"nativeSrc": "8800:19:1",
"nodeType": "YulAssignment",
"src": "8800:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8811:3:1",
"nodeType": "YulIdentifier",
"src": "8811:3:1"
},
{
"kind": "number",
"nativeSrc": "8816:2:1",
"nodeType": "YulLiteral",
"src": "8816:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8807:3:1",
"nodeType": "YulIdentifier",
"src": "8807:3:1"
},
"nativeSrc": "8807:12:1",
"nodeType": "YulFunctionCall",
"src": "8807:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8800:3:1",
"nodeType": "YulIdentifier",
"src": "8800:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8459:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8593:3:1",
"nodeType": "YulTypedName",
"src": "8593:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8601:3:1",
"nodeType": "YulTypedName",
"src": "8601:3:1",
"type": ""
}
],
"src": "8459:366:1"
},
{
"body": {
"nativeSrc": "9002:248:1",
"nodeType": "YulBlock",
"src": "9002:248:1",
"statements": [
{
"nativeSrc": "9012:26:1",
"nodeType": "YulAssignment",
"src": "9012:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9024:9:1",
"nodeType": "YulIdentifier",
"src": "9024:9:1"
},
{
"kind": "number",
"nativeSrc": "9035:2:1",
"nodeType": "YulLiteral",
"src": "9035:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9020:3:1",
"nodeType": "YulIdentifier",
"src": "9020:3:1"
},
"nativeSrc": "9020:18:1",
"nodeType": "YulFunctionCall",
"src": "9020:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9012:4:1",
"nodeType": "YulIdentifier",
"src": "9012:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9059:9:1",
"nodeType": "YulIdentifier",
"src": "9059:9:1"
},
{
"kind": "number",
"nativeSrc": "9070:1:1",
"nodeType": "YulLiteral",
"src": "9070:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9055:3:1",
"nodeType": "YulIdentifier",
"src": "9055:3:1"
},
"nativeSrc": "9055:17:1",
"nodeType": "YulFunctionCall",
"src": "9055:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9078:4:1",
"nodeType": "YulIdentifier",
"src": "9078:4:1"
},
{
"name": "headStart",
"nativeSrc": "9084:9:1",
"nodeType": "YulIdentifier",
"src": "9084:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9074:3:1",
"nodeType": "YulIdentifier",
"src": "9074:3:1"
},
"nativeSrc": "9074:20:1",
"nodeType": "YulFunctionCall",
"src": "9074:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9048:6:1",
"nodeType": "YulIdentifier",
"src": "9048:6:1"
},
"nativeSrc": "9048:47:1",
"nodeType": "YulFunctionCall",
"src": "9048:47:1"
},
"nativeSrc": "9048:47:1",
"nodeType": "YulExpressionStatement",
"src": "9048:47:1"
},
{
"nativeSrc": "9104:139:1",
"nodeType": "YulAssignment",
"src": "9104:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "9238:4:1",
"nodeType": "YulIdentifier",
"src": "9238:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9112:124:1",
"nodeType": "YulIdentifier",
"src": "9112:124:1"
},
"nativeSrc": "9112:131:1",
"nodeType": "YulFunctionCall",
"src": "9112:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9104:4:1",
"nodeType": "YulIdentifier",
"src": "9104:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "8831:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "8982:9:1",
"nodeType": "YulTypedName",
"src": "8982:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "8997:4:1",
"nodeType": "YulTypedName",
"src": "8997:4:1",
"type": ""
}
],
"src": "8831:419:1"
},
{
"body": {
"nativeSrc": "9362:120:1",
"nodeType": "YulBlock",
"src": "9362:120:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9384:6:1",
"nodeType": "YulIdentifier",
"src": "9384:6:1"
},
{
"kind": "number",
"nativeSrc": "9392:1:1",
"nodeType": "YulLiteral",
"src": "9392:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9380:3:1",
"nodeType": "YulIdentifier",
"src": "9380:3:1"
},
"nativeSrc": "9380:14:1",
"nodeType": "YulFunctionCall",
"src": "9380:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a20616d6f756e742073686f756c64206265206e",
"kind": "string",
"nativeSrc": "9396:34:1",
"nodeType": "YulLiteral",
"src": "9396:34:1",
"type": "",
"value": "TokenStaking: amount should be n"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9373:6:1",
"nodeType": "YulIdentifier",
"src": "9373:6:1"
},
"nativeSrc": "9373:58:1",
"nodeType": "YulFunctionCall",
"src": "9373:58:1"
},
"nativeSrc": "9373:58:1",
"nodeType": "YulExpressionStatement",
"src": "9373:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9452:6:1",
"nodeType": "YulIdentifier",
"src": "9452:6:1"
},
{
"kind": "number",
"nativeSrc": "9460:2:1",
"nodeType": "YulLiteral",
"src": "9460:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9448:3:1",
"nodeType": "YulIdentifier",
"src": "9448:3:1"
},
"nativeSrc": "9448:15:1",
"nodeType": "YulFunctionCall",
"src": "9448:15:1"
},
{
"hexValue": "6f6e2d7a65726f",
"kind": "string",
"nativeSrc": "9465:9:1",
"nodeType": "YulLiteral",
"src": "9465:9:1",
"type": "",
"value": "on-zero"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9441:6:1",
"nodeType": "YulIdentifier",
"src": "9441:6:1"
},
"nativeSrc": "9441:34:1",
"nodeType": "YulFunctionCall",
"src": "9441:34:1"
},
"nativeSrc": "9441:34:1",
"nodeType": "YulExpressionStatement",
"src": "9441:34:1"
}
]
},
"name": "store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf",
"nativeSrc": "9256:226:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "9354:6:1",
"nodeType": "YulTypedName",
"src": "9354:6:1",
"type": ""
}
],
"src": "9256:226:1"
},
{
"body": {
"nativeSrc": "9634:220:1",
"nodeType": "YulBlock",
"src": "9634:220:1",
"statements": [
{
"nativeSrc": "9644:74:1",
"nodeType": "YulAssignment",
"src": "9644:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9710:3:1",
"nodeType": "YulIdentifier",
"src": "9710:3:1"
},
{
"kind": "number",
"nativeSrc": "9715:2:1",
"nodeType": "YulLiteral",
"src": "9715:2:1",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "9651:58:1",
"nodeType": "YulIdentifier",
"src": "9651:58:1"
},
"nativeSrc": "9651:67:1",
"nodeType": "YulFunctionCall",
"src": "9651:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "9644:3:1",
"nodeType": "YulIdentifier",
"src": "9644:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9816:3:1",
"nodeType": "YulIdentifier",
"src": "9816:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf",
"nativeSrc": "9727:88:1",
"nodeType": "YulIdentifier",
"src": "9727:88:1"
},
"nativeSrc": "9727:93:1",
"nodeType": "YulFunctionCall",
"src": "9727:93:1"
},
"nativeSrc": "9727:93:1",
"nodeType": "YulExpressionStatement",
"src": "9727:93:1"
},
{
"nativeSrc": "9829:19:1",
"nodeType": "YulAssignment",
"src": "9829:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9840:3:1",
"nodeType": "YulIdentifier",
"src": "9840:3:1"
},
{
"kind": "number",
"nativeSrc": "9845:2:1",
"nodeType": "YulLiteral",
"src": "9845:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9836:3:1",
"nodeType": "YulIdentifier",
"src": "9836:3:1"
},
"nativeSrc": "9836:12:1",
"nodeType": "YulFunctionCall",
"src": "9836:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9829:3:1",
"nodeType": "YulIdentifier",
"src": "9829:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9488:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "9622:3:1",
"nodeType": "YulTypedName",
"src": "9622:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "9630:3:1",
"nodeType": "YulTypedName",
"src": "9630:3:1",
"type": ""
}
],
"src": "9488:366:1"
},
{
"body": {
"nativeSrc": "10031:248:1",
"nodeType": "YulBlock",
"src": "10031:248:1",
"statements": [
{
"nativeSrc": "10041:26:1",
"nodeType": "YulAssignment",
"src": "10041:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10053:9:1",
"nodeType": "YulIdentifier",
"src": "10053:9:1"
},
{
"kind": "number",
"nativeSrc": "10064:2:1",
"nodeType": "YulLiteral",
"src": "10064:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10049:3:1",
"nodeType": "YulIdentifier",
"src": "10049:3:1"
},
"nativeSrc": "10049:18:1",
"nodeType": "YulFunctionCall",
"src": "10049:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10041:4:1",
"nodeType": "YulIdentifier",
"src": "10041:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10088:9:1",
"nodeType": "YulIdentifier",
"src": "10088:9:1"
},
{
"kind": "number",
"nativeSrc": "10099:1:1",
"nodeType": "YulLiteral",
"src": "10099:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10084:3:1",
"nodeType": "YulIdentifier",
"src": "10084:3:1"
},
"nativeSrc": "10084:17:1",
"nodeType": "YulFunctionCall",
"src": "10084:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10107:4:1",
"nodeType": "YulIdentifier",
"src": "10107:4:1"
},
{
"name": "headStart",
"nativeSrc": "10113:9:1",
"nodeType": "YulIdentifier",
"src": "10113:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10103:3:1",
"nodeType": "YulIdentifier",
"src": "10103:3:1"
},
"nativeSrc": "10103:20:1",
"nodeType": "YulFunctionCall",
"src": "10103:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10077:6:1",
"nodeType": "YulIdentifier",
"src": "10077:6:1"
},
"nativeSrc": "10077:47:1",
"nodeType": "YulFunctionCall",
"src": "10077:47:1"
},
"nativeSrc": "10077:47:1",
"nodeType": "YulExpressionStatement",
"src": "10077:47:1"
},
{
"nativeSrc": "10133:139:1",
"nodeType": "YulAssignment",
"src": "10133:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10267:4:1",
"nodeType": "YulIdentifier",
"src": "10267:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10141:124:1",
"nodeType": "YulIdentifier",
"src": "10141:124:1"
},
"nativeSrc": "10141:131:1",
"nodeType": "YulFunctionCall",
"src": "10141:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10133:4:1",
"nodeType": "YulIdentifier",
"src": "10133:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "9860:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10011:9:1",
"nodeType": "YulTypedName",
"src": "10011:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10026:4:1",
"nodeType": "YulTypedName",
"src": "10026:4:1",
"type": ""
}
],
"src": "9860:419:1"
},
{
"body": {
"nativeSrc": "10325:76:1",
"nodeType": "YulBlock",
"src": "10325:76:1",
"statements": [
{
"body": {
"nativeSrc": "10379:16:1",
"nodeType": "YulBlock",
"src": "10379:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "10388:1:1",
"nodeType": "YulLiteral",
"src": "10388:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "10391:1:1",
"nodeType": "YulLiteral",
"src": "10391:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "10381:6:1",
"nodeType": "YulIdentifier",
"src": "10381:6:1"
},
"nativeSrc": "10381:12:1",
"nodeType": "YulFunctionCall",
"src": "10381:12:1"
},
"nativeSrc": "10381:12:1",
"nodeType": "YulExpressionStatement",
"src": "10381:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "10348:5:1",
"nodeType": "YulIdentifier",
"src": "10348:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "10370:5:1",
"nodeType": "YulIdentifier",
"src": "10370:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "10355:14:1",
"nodeType": "YulIdentifier",
"src": "10355:14:1"
},
"nativeSrc": "10355:21:1",
"nodeType": "YulFunctionCall",
"src": "10355:21:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "10345:2:1",
"nodeType": "YulIdentifier",
"src": "10345:2:1"
},
"nativeSrc": "10345:32:1",
"nodeType": "YulFunctionCall",
"src": "10345:32:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "10338:6:1",
"nodeType": "YulIdentifier",
"src": "10338:6:1"
},
"nativeSrc": "10338:40:1",
"nodeType": "YulFunctionCall",
"src": "10338:40:1"
},
"nativeSrc": "10335:60:1",
"nodeType": "YulIf",
"src": "10335:60:1"
}
]
},
"name": "validator_revert_t_bool",
"nativeSrc": "10285:116:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "10318:5:1",
"nodeType": "YulTypedName",
"src": "10318:5:1",
"type": ""
}
],
"src": "10285:116:1"
},
{
"body": {
"nativeSrc": "10467:77:1",
"nodeType": "YulBlock",
"src": "10467:77:1",
"statements": [
{
"nativeSrc": "10477:22:1",
"nodeType": "YulAssignment",
"src": "10477:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "10492:6:1",
"nodeType": "YulIdentifier",
"src": "10492:6:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10486:5:1",
"nodeType": "YulIdentifier",
"src": "10486:5:1"
},
"nativeSrc": "10486:13:1",
"nodeType": "YulFunctionCall",
"src": "10486:13:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "10477:5:1",
"nodeType": "YulIdentifier",
"src": "10477:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "10532:5:1",
"nodeType": "YulIdentifier",
"src": "10532:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nativeSrc": "10508:23:1",
"nodeType": "YulIdentifier",
"src": "10508:23:1"
},
"nativeSrc": "10508:30:1",
"nodeType": "YulFunctionCall",
"src": "10508:30:1"
},
"nativeSrc": "10508:30:1",
"nodeType": "YulExpressionStatement",
"src": "10508:30:1"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nativeSrc": "10407:137:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "10445:6:1",
"nodeType": "YulTypedName",
"src": "10445:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "10453:3:1",
"nodeType": "YulTypedName",
"src": "10453:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "10461:5:1",
"nodeType": "YulTypedName",
"src": "10461:5:1",
"type": ""
}
],
"src": "10407:137:1"
},
{
"body": {
"nativeSrc": "10624:271:1",
"nodeType": "YulBlock",
"src": "10624:271:1",
"statements": [
{
"body": {
"nativeSrc": "10670:83:1",
"nodeType": "YulBlock",
"src": "10670:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "10672:77:1",
"nodeType": "YulIdentifier",
"src": "10672:77:1"
},
"nativeSrc": "10672:79:1",
"nodeType": "YulFunctionCall",
"src": "10672:79:1"
},
"nativeSrc": "10672:79:1",
"nodeType": "YulExpressionStatement",
"src": "10672:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "10645:7:1",
"nodeType": "YulIdentifier",
"src": "10645:7:1"
},
{
"name": "headStart",
"nativeSrc": "10654:9:1",
"nodeType": "YulIdentifier",
"src": "10654:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10641:3:1",
"nodeType": "YulIdentifier",
"src": "10641:3:1"
},
"nativeSrc": "10641:23:1",
"nodeType": "YulFunctionCall",
"src": "10641:23:1"
},
{
"kind": "number",
"nativeSrc": "10666:2:1",
"nodeType": "YulLiteral",
"src": "10666:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "10637:3:1",
"nodeType": "YulIdentifier",
"src": "10637:3:1"
},
"nativeSrc": "10637:32:1",
"nodeType": "YulFunctionCall",
"src": "10637:32:1"
},
"nativeSrc": "10634:119:1",
"nodeType": "YulIf",
"src": "10634:119:1"
},
{
"nativeSrc": "10763:125:1",
"nodeType": "YulBlock",
"src": "10763:125:1",
"statements": [
{
"nativeSrc": "10778:15:1",
"nodeType": "YulVariableDeclaration",
"src": "10778:15:1",
"value": {
"kind": "number",
"nativeSrc": "10792:1:1",
"nodeType": "YulLiteral",
"src": "10792:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10782:6:1",
"nodeType": "YulTypedName",
"src": "10782:6:1",
"type": ""
}
]
},
{
"nativeSrc": "10807:71:1",
"nodeType": "YulAssignment",
"src": "10807:71:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10850:9:1",
"nodeType": "YulIdentifier",
"src": "10850:9:1"
},
{
"name": "offset",
"nativeSrc": "10861:6:1",
"nodeType": "YulIdentifier",
"src": "10861:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10846:3:1",
"nodeType": "YulIdentifier",
"src": "10846:3:1"
},
"nativeSrc": "10846:22:1",
"nodeType": "YulFunctionCall",
"src": "10846:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "10870:7:1",
"nodeType": "YulIdentifier",
"src": "10870:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nativeSrc": "10817:28:1",
"nodeType": "YulIdentifier",
"src": "10817:28:1"
},
"nativeSrc": "10817:61:1",
"nodeType": "YulFunctionCall",
"src": "10817:61:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "10807:6:1",
"nodeType": "YulIdentifier",
"src": "10807:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nativeSrc": "10550:345:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10594:9:1",
"nodeType": "YulTypedName",
"src": "10594:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "10605:7:1",
"nodeType": "YulTypedName",
"src": "10605:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "10617:6:1",
"nodeType": "YulTypedName",
"src": "10617:6:1",
"type": ""
}
],
"src": "10550:345:1"
},
{
"body": {
"nativeSrc": "11007:75:1",
"nodeType": "YulBlock",
"src": "11007:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "11029:6:1",
"nodeType": "YulIdentifier",
"src": "11029:6:1"
},
{
"kind": "number",
"nativeSrc": "11037:1:1",
"nodeType": "YulLiteral",
"src": "11037:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11025:3:1",
"nodeType": "YulIdentifier",
"src": "11025:3:1"
},
"nativeSrc": "11025:14:1",
"nodeType": "YulFunctionCall",
"src": "11025:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f742061207374616b65686f6c646572",
"kind": "string",
"nativeSrc": "11041:33:1",
"nodeType": "YulLiteral",
"src": "11041:33:1",
"type": "",
"value": "TokenStaking: not a stakeholder"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11018:6:1",
"nodeType": "YulIdentifier",
"src": "11018:6:1"
},
"nativeSrc": "11018:57:1",
"nodeType": "YulFunctionCall",
"src": "11018:57:1"
},
"nativeSrc": "11018:57:1",
"nodeType": "YulExpressionStatement",
"src": "11018:57:1"
}
]
},
"name": "store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4",
"nativeSrc": "10901:181:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10999:6:1",
"nodeType": "YulTypedName",
"src": "10999:6:1",
"type": ""
}
],
"src": "10901:181:1"
},
{
"body": {
"nativeSrc": "11234:220:1",
"nodeType": "YulBlock",
"src": "11234:220:1",
"statements": [
{
"nativeSrc": "11244:74:1",
"nodeType": "YulAssignment",
"src": "11244:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11310:3:1",
"nodeType": "YulIdentifier",
"src": "11310:3:1"
},
{
"kind": "number",
"nativeSrc": "11315:2:1",
"nodeType": "YulLiteral",
"src": "11315:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11251:58:1",
"nodeType": "YulIdentifier",
"src": "11251:58:1"
},
"nativeSrc": "11251:67:1",
"nodeType": "YulFunctionCall",
"src": "11251:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11244:3:1",
"nodeType": "YulIdentifier",
"src": "11244:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11416:3:1",
"nodeType": "YulIdentifier",
"src": "11416:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4",
"nativeSrc": "11327:88:1",
"nodeType": "YulIdentifier",
"src": "11327:88:1"
},
"nativeSrc": "11327:93:1",
"nodeType": "YulFunctionCall",
"src": "11327:93:1"
},
"nativeSrc": "11327:93:1",
"nodeType": "YulExpressionStatement",
"src": "11327:93:1"
},
{
"nativeSrc": "11429:19:1",
"nodeType": "YulAssignment",
"src": "11429:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11440:3:1",
"nodeType": "YulIdentifier",
"src": "11440:3:1"
},
{
"kind": "number",
"nativeSrc": "11445:2:1",
"nodeType": "YulLiteral",
"src": "11445:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11436:3:1",
"nodeType": "YulIdentifier",
"src": "11436:3:1"
},
"nativeSrc": "11436:12:1",
"nodeType": "YulFunctionCall",
"src": "11436:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11429:3:1",
"nodeType": "YulIdentifier",
"src": "11429:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11088:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11222:3:1",
"nodeType": "YulTypedName",
"src": "11222:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11230:3:1",
"nodeType": "YulTypedName",
"src": "11230:3:1",
"type": ""
}
],
"src": "11088:366:1"
},
{
"body": {
"nativeSrc": "11631:248:1",
"nodeType": "YulBlock",
"src": "11631:248:1",
"statements": [
{
"nativeSrc": "11641:26:1",
"nodeType": "YulAssignment",
"src": "11641:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "11653:9:1",
"nodeType": "YulIdentifier",
"src": "11653:9:1"
},
{
"kind": "number",
"nativeSrc": "11664:2:1",
"nodeType": "YulLiteral",
"src": "11664:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11649:3:1",
"nodeType": "YulIdentifier",
"src": "11649:3:1"
},
"nativeSrc": "11649:18:1",
"nodeType": "YulFunctionCall",
"src": "11649:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11641:4:1",
"nodeType": "YulIdentifier",
"src": "11641:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11688:9:1",
"nodeType": "YulIdentifier",
"src": "11688:9:1"
},
{
"kind": "number",
"nativeSrc": "11699:1:1",
"nodeType": "YulLiteral",
"src": "11699:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11684:3:1",
"nodeType": "YulIdentifier",
"src": "11684:3:1"
},
"nativeSrc": "11684:17:1",
"nodeType": "YulFunctionCall",
"src": "11684:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "11707:4:1",
"nodeType": "YulIdentifier",
"src": "11707:4:1"
},
{
"name": "headStart",
"nativeSrc": "11713:9:1",
"nodeType": "YulIdentifier",
"src": "11713:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "11703:3:1",
"nodeType": "YulIdentifier",
"src": "11703:3:1"
},
"nativeSrc": "11703:20:1",
"nodeType": "YulFunctionCall",
"src": "11703:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11677:6:1",
"nodeType": "YulIdentifier",
"src": "11677:6:1"
},
"nativeSrc": "11677:47:1",
"nodeType": "YulFunctionCall",
"src": "11677:47:1"
},
"nativeSrc": "11677:47:1",
"nodeType": "YulExpressionStatement",
"src": "11677:47:1"
},
{
"nativeSrc": "11733:139:1",
"nodeType": "YulAssignment",
"src": "11733:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "11867:4:1",
"nodeType": "YulIdentifier",
"src": "11867:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11741:124:1",
"nodeType": "YulIdentifier",
"src": "11741:124:1"
},
"nativeSrc": "11741:131:1",
"nodeType": "YulFunctionCall",
"src": "11741:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11733:4:1",
"nodeType": "YulIdentifier",
"src": "11733:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "11460:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11611:9:1",
"nodeType": "YulTypedName",
"src": "11611:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "11626:4:1",
"nodeType": "YulTypedName",
"src": "11626:4:1",
"type": ""
}
],
"src": "11460:419:1"
},
{
"body": {
"nativeSrc": "11991:122:1",
"nodeType": "YulBlock",
"src": "11991:122:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "12013:6:1",
"nodeType": "YulIdentifier",
"src": "12013:6:1"
},
{
"kind": "number",
"nativeSrc": "12021:1:1",
"nodeType": "YulLiteral",
"src": "12021:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12009:3:1",
"nodeType": "YulIdentifier",
"src": "12009:3:1"
},
"nativeSrc": "12009:14:1",
"nodeType": "YulFunctionCall",
"src": "12009:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f7420656e6f756768207374616b652074",
"kind": "string",
"nativeSrc": "12025:34:1",
"nodeType": "YulLiteral",
"src": "12025:34:1",
"type": "",
"value": "TokenStaking: not enough stake t"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12002:6:1",
"nodeType": "YulIdentifier",
"src": "12002:6:1"
},
"nativeSrc": "12002:58:1",
"nodeType": "YulFunctionCall",
"src": "12002:58:1"
},
"nativeSrc": "12002:58:1",
"nodeType": "YulExpressionStatement",
"src": "12002:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "12081:6:1",
"nodeType": "YulIdentifier",
"src": "12081:6:1"
},
{
"kind": "number",
"nativeSrc": "12089:2:1",
"nodeType": "YulLiteral",
"src": "12089:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12077:3:1",
"nodeType": "YulIdentifier",
"src": "12077:3:1"
},
"nativeSrc": "12077:15:1",
"nodeType": "YulFunctionCall",
"src": "12077:15:1"
},
{
"hexValue": "6f20756e7374616b65",
"kind": "string",
"nativeSrc": "12094:11:1",
"nodeType": "YulLiteral",
"src": "12094:11:1",
"type": "",
"value": "o unstake"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12070:6:1",
"nodeType": "YulIdentifier",
"src": "12070:6:1"
},
"nativeSrc": "12070:36:1",
"nodeType": "YulFunctionCall",
"src": "12070:36:1"
},
"nativeSrc": "12070:36:1",
"nodeType": "YulExpressionStatement",
"src": "12070:36:1"
}
]
},
"name": "store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4",
"nativeSrc": "11885:228:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "11983:6:1",
"nodeType": "YulTypedName",
"src": "11983:6:1",
"type": ""
}
],
"src": "11885:228:1"
},
{
"body": {
"nativeSrc": "12265:220:1",
"nodeType": "YulBlock",
"src": "12265:220:1",
"statements": [
{
"nativeSrc": "12275:74:1",
"nodeType": "YulAssignment",
"src": "12275:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12341:3:1",
"nodeType": "YulIdentifier",
"src": "12341:3:1"
},
{
"kind": "number",
"nativeSrc": "12346:2:1",
"nodeType": "YulLiteral",
"src": "12346:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "12282:58:1",
"nodeType": "YulIdentifier",
"src": "12282:58:1"
},
"nativeSrc": "12282:67:1",
"nodeType": "YulFunctionCall",
"src": "12282:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "12275:3:1",
"nodeType": "YulIdentifier",
"src": "12275:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12447:3:1",
"nodeType": "YulIdentifier",
"src": "12447:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4",
"nativeSrc": "12358:88:1",
"nodeType": "YulIdentifier",
"src": "12358:88:1"
},
"nativeSrc": "12358:93:1",
"nodeType": "YulFunctionCall",
"src": "12358:93:1"
},
"nativeSrc": "12358:93:1",
"nodeType": "YulExpressionStatement",
"src": "12358:93:1"
},
{
"nativeSrc": "12460:19:1",
"nodeType": "YulAssignment",
"src": "12460:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12471:3:1",
"nodeType": "YulIdentifier",
"src": "12471:3:1"
},
{
"kind": "number",
"nativeSrc": "12476:2:1",
"nodeType": "YulLiteral",
"src": "12476:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12467:3:1",
"nodeType": "YulIdentifier",
"src": "12467:3:1"
},
"nativeSrc": "12467:12:1",
"nodeType": "YulFunctionCall",
"src": "12467:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "12460:3:1",
"nodeType": "YulIdentifier",
"src": "12460:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12119:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "12253:3:1",
"nodeType": "YulTypedName",
"src": "12253:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "12261:3:1",
"nodeType": "YulTypedName",
"src": "12261:3:1",
"type": ""
}
],
"src": "12119:366:1"
},
{
"body": {
"nativeSrc": "12662:248:1",
"nodeType": "YulBlock",
"src": "12662:248:1",
"statements": [
{
"nativeSrc": "12672:26:1",
"nodeType": "YulAssignment",
"src": "12672:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12684:9:1",
"nodeType": "YulIdentifier",
"src": "12684:9:1"
},
{
"kind": "number",
"nativeSrc": "12695:2:1",
"nodeType": "YulLiteral",
"src": "12695:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12680:3:1",
"nodeType": "YulIdentifier",
"src": "12680:3:1"
},
"nativeSrc": "12680:18:1",
"nodeType": "YulFunctionCall",
"src": "12680:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12672:4:1",
"nodeType": "YulIdentifier",
"src": "12672:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12719:9:1",
"nodeType": "YulIdentifier",
"src": "12719:9:1"
},
{
"kind": "number",
"nativeSrc": "12730:1:1",
"nodeType": "YulLiteral",
"src": "12730:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12715:3:1",
"nodeType": "YulIdentifier",
"src": "12715:3:1"
},
"nativeSrc": "12715:17:1",
"nodeType": "YulFunctionCall",
"src": "12715:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12738:4:1",
"nodeType": "YulIdentifier",
"src": "12738:4:1"
},
{
"name": "headStart",
"nativeSrc": "12744:9:1",
"nodeType": "YulIdentifier",
"src": "12744:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12734:3:1",
"nodeType": "YulIdentifier",
"src": "12734:3:1"
},
"nativeSrc": "12734:20:1",
"nodeType": "YulFunctionCall",
"src": "12734:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12708:6:1",
"nodeType": "YulIdentifier",
"src": "12708:6:1"
},
"nativeSrc": "12708:47:1",
"nodeType": "YulFunctionCall",
"src": "12708:47:1"
},
"nativeSrc": "12708:47:1",
"nodeType": "YulExpressionStatement",
"src": "12708:47:1"
},
{
"nativeSrc": "12764:139:1",
"nodeType": "YulAssignment",
"src": "12764:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "12898:4:1",
"nodeType": "YulIdentifier",
"src": "12898:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12772:124:1",
"nodeType": "YulIdentifier",
"src": "12772:124:1"
},
"nativeSrc": "12772:131:1",
"nodeType": "YulFunctionCall",
"src": "12772:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12764:4:1",
"nodeType": "YulIdentifier",
"src": "12764:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "12491:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "12642:9:1",
"nodeType": "YulTypedName",
"src": "12642:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12657:4:1",
"nodeType": "YulTypedName",
"src": "12657:4:1",
"type": ""
}
],
"src": "12491:419:1"
},
{
"body": {
"nativeSrc": "12944:152:1",
"nodeType": "YulBlock",
"src": "12944:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "12961:1:1",
"nodeType": "YulLiteral",
"src": "12961:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "12964:77:1",
"nodeType": "YulLiteral",
"src": "12964:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12954:6:1",
"nodeType": "YulIdentifier",
"src": "12954:6:1"
},
"nativeSrc": "12954:88:1",
"nodeType": "YulFunctionCall",
"src": "12954:88:1"
},
"nativeSrc": "12954:88:1",
"nodeType": "YulExpressionStatement",
"src": "12954:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13058:1:1",
"nodeType": "YulLiteral",
"src": "13058:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13061:4:1",
"nodeType": "YulLiteral",
"src": "13061:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13051:6:1",
"nodeType": "YulIdentifier",
"src": "13051:6:1"
},
"nativeSrc": "13051:15:1",
"nodeType": "YulFunctionCall",
"src": "13051:15:1"
},
"nativeSrc": "13051:15:1",
"nodeType": "YulExpressionStatement",
"src": "13051:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13082:1:1",
"nodeType": "YulLiteral",
"src": "13082:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13085:4:1",
"nodeType": "YulLiteral",
"src": "13085:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13075:6:1",
"nodeType": "YulIdentifier",
"src": "13075:6:1"
},
"nativeSrc": "13075:15:1",
"nodeType": "YulFunctionCall",
"src": "13075:15:1"
},
"nativeSrc": "13075:15:1",
"nodeType": "YulExpressionStatement",
"src": "13075:15:1"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "12916:180:1",
"nodeType": "YulFunctionDefinition",
"src": "12916:180:1"
},
{
"body": {
"nativeSrc": "13146:147:1",
"nodeType": "YulBlock",
"src": "13146:147:1",
"statements": [
{
"nativeSrc": "13156:25:1",
"nodeType": "YulAssignment",
"src": "13156:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13179:1:1",
"nodeType": "YulIdentifier",
"src": "13179:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13161:17:1",
"nodeType": "YulIdentifier",
"src": "13161:17:1"
},
"nativeSrc": "13161:20:1",
"nodeType": "YulFunctionCall",
"src": "13161:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "13156:1:1",
"nodeType": "YulIdentifier",
"src": "13156:1:1"
}
]
},
{
"nativeSrc": "13190:25:1",
"nodeType": "YulAssignment",
"src": "13190:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "13213:1:1",
"nodeType": "YulIdentifier",
"src": "13213:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13195:17:1",
"nodeType": "YulIdentifier",
"src": "13195:17:1"
},
"nativeSrc": "13195:20:1",
"nodeType": "YulFunctionCall",
"src": "13195:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "13190:1:1",
"nodeType": "YulIdentifier",
"src": "13190:1:1"
}
]
},
{
"nativeSrc": "13224:16:1",
"nodeType": "YulAssignment",
"src": "13224:16:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13235:1:1",
"nodeType": "YulIdentifier",
"src": "13235:1:1"
},
{
"name": "y",
"nativeSrc": "13238:1:1",
"nodeType": "YulIdentifier",
"src": "13238:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13231:3:1",
"nodeType": "YulIdentifier",
"src": "13231:3:1"
},
"nativeSrc": "13231:9:1",
"nodeType": "YulFunctionCall",
"src": "13231:9:1"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "13224:3:1",
"nodeType": "YulIdentifier",
"src": "13224:3:1"
}
]
},
{
"body": {
"nativeSrc": "13264:22:1",
"nodeType": "YulBlock",
"src": "13264:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "13266:16:1",
"nodeType": "YulIdentifier",
"src": "13266:16:1"
},
"nativeSrc": "13266:18:1",
"nodeType": "YulFunctionCall",
"src": "13266:18:1"
},
"nativeSrc": "13266:18:1",
"nodeType": "YulExpressionStatement",
"src": "13266:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "13256:1:1",
"nodeType": "YulIdentifier",
"src": "13256:1:1"
},
{
"name": "sum",
"nativeSrc": "13259:3:1",
"nodeType": "YulIdentifier",
"src": "13259:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "13253:2:1",
"nodeType": "YulIdentifier",
"src": "13253:2:1"
},
"nativeSrc": "13253:10:1",
"nodeType": "YulFunctionCall",
"src": "13253:10:1"
},
"nativeSrc": "13250:36:1",
"nodeType": "YulIf",
"src": "13250:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "13102:191:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "13133:1:1",
"nodeType": "YulTypedName",
"src": "13133:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "13136:1:1",
"nodeType": "YulTypedName",
"src": "13136:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "13142:3:1",
"nodeType": "YulTypedName",
"src": "13142:3:1",
"type": ""
}
],
"src": "13102:191:1"
},
{
"body": {
"nativeSrc": "13347:362:1",
"nodeType": "YulBlock",
"src": "13347:362:1",
"statements": [
{
"nativeSrc": "13357:25:1",
"nodeType": "YulAssignment",
"src": "13357:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13380:1:1",
"nodeType": "YulIdentifier",
"src": "13380:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13362:17:1",
"nodeType": "YulIdentifier",
"src": "13362:17:1"
},
"nativeSrc": "13362:20:1",
"nodeType": "YulFunctionCall",
"src": "13362:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "13357:1:1",
"nodeType": "YulIdentifier",
"src": "13357:1:1"
}
]
},
{
"nativeSrc": "13391:25:1",
"nodeType": "YulAssignment",
"src": "13391:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "13414:1:1",
"nodeType": "YulIdentifier",
"src": "13414:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13396:17:1",
"nodeType": "YulIdentifier",
"src": "13396:17:1"
},
"nativeSrc": "13396:20:1",
"nodeType": "YulFunctionCall",
"src": "13396:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "13391:1:1",
"nodeType": "YulIdentifier",
"src": "13391:1:1"
}
]
},
{
"nativeSrc": "13425:28:1",
"nodeType": "YulVariableDeclaration",
"src": "13425:28:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13448:1:1",
"nodeType": "YulIdentifier",
"src": "13448:1:1"
},
{
"name": "y",
"nativeSrc": "13451:1:1",
"nodeType": "YulIdentifier",
"src": "13451:1:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "13444:3:1",
"nodeType": "YulIdentifier",
"src": "13444:3:1"
},
"nativeSrc": "13444:9:1",
"nodeType": "YulFunctionCall",
"src": "13444:9:1"
},
"variables": [
{
"name": "product_raw",
"nativeSrc": "13429:11:1",
"nodeType": "YulTypedName",
"src": "13429:11:1",
"type": ""
}
]
},
{
"nativeSrc": "13462:41:1",
"nodeType": "YulAssignment",
"src": "13462:41:1",
"value": {
"arguments": [
{
"name": "product_raw",
"nativeSrc": "13491:11:1",
"nodeType": "YulIdentifier",
"src": "13491:11:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13473:17:1",
"nodeType": "YulIdentifier",
"src": "13473:17:1"
},
"nativeSrc": "13473:30:1",
"nodeType": "YulFunctionCall",
"src": "13473:30:1"
},
"variableNames": [
{
"name": "product",
"nativeSrc": "13462:7:1",
"nodeType": "YulIdentifier",
"src": "13462:7:1"
}
]
},
{
"body": {
"nativeSrc": "13680:22:1",
"nodeType": "YulBlock",
"src": "13680:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "13682:16:1",
"nodeType": "YulIdentifier",
"src": "13682:16:1"
},
"nativeSrc": "13682:18:1",
"nodeType": "YulFunctionCall",
"src": "13682:18:1"
},
"nativeSrc": "13682:18:1",
"nodeType": "YulExpressionStatement",
"src": "13682:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nativeSrc": "13613:1:1",
"nodeType": "YulIdentifier",
"src": "13613:1:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "13606:6:1",
"nodeType": "YulIdentifier",
"src": "13606:6:1"
},
"nativeSrc": "13606:9:1",
"nodeType": "YulFunctionCall",
"src": "13606:9:1"
},
{
"arguments": [
{
"name": "y",
"nativeSrc": "13636:1:1",
"nodeType": "YulIdentifier",
"src": "13636:1:1"
},
{
"arguments": [
{
"name": "product",
"nativeSrc": "13643:7:1",
"nodeType": "YulIdentifier",
"src": "13643:7:1"
},
{
"name": "x",
"nativeSrc": "13652:1:1",
"nodeType": "YulIdentifier",
"src": "13652:1:1"
}
],
"functionName": {
"name": "div",
"nativeSrc": "13639:3:1",
"nodeType": "YulIdentifier",
"src": "13639:3:1"
},
"nativeSrc": "13639:15:1",
"nodeType": "YulFunctionCall",
"src": "13639:15:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "13633:2:1",
"nodeType": "YulIdentifier",
"src": "13633:2:1"
},
"nativeSrc": "13633:22:1",
"nodeType": "YulFunctionCall",
"src": "13633:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "13586:2:1",
"nodeType": "YulIdentifier",
"src": "13586:2:1"
},
"nativeSrc": "13586:83:1",
"nodeType": "YulFunctionCall",
"src": "13586:83:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "13566:6:1",
"nodeType": "YulIdentifier",
"src": "13566:6:1"
},
"nativeSrc": "13566:113:1",
"nodeType": "YulFunctionCall",
"src": "13566:113:1"
},
"nativeSrc": "13563:139:1",
"nodeType": "YulIf",
"src": "13563:139:1"
}
]
},
"name": "checked_mul_t_uint256",
"nativeSrc": "13299:410:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "13330:1:1",
"nodeType": "YulTypedName",
"src": "13330:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "13333:1:1",
"nodeType": "YulTypedName",
"src": "13333:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nativeSrc": "13339:7:1",
"nodeType": "YulTypedName",
"src": "13339:7:1",
"type": ""
}
],
"src": "13299:410:1"
},
{
"body": {
"nativeSrc": "13743:152:1",
"nodeType": "YulBlock",
"src": "13743:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13760:1:1",
"nodeType": "YulLiteral",
"src": "13760:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13763:77:1",
"nodeType": "YulLiteral",
"src": "13763:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13753:6:1",
"nodeType": "YulIdentifier",
"src": "13753:6:1"
},
"nativeSrc": "13753:88:1",
"nodeType": "YulFunctionCall",
"src": "13753:88:1"
},
"nativeSrc": "13753:88:1",
"nodeType": "YulExpressionStatement",
"src": "13753:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13857:1:1",
"nodeType": "YulLiteral",
"src": "13857:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13860:4:1",
"nodeType": "YulLiteral",
"src": "13860:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13850:6:1",
"nodeType": "YulIdentifier",
"src": "13850:6:1"
},
"nativeSrc": "13850:15:1",
"nodeType": "YulFunctionCall",
"src": "13850:15:1"
},
"nativeSrc": "13850:15:1",
"nodeType": "YulExpressionStatement",
"src": "13850:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13881:1:1",
"nodeType": "YulLiteral",
"src": "13881:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13884:4:1",
"nodeType": "YulLiteral",
"src": "13884:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13874:6:1",
"nodeType": "YulIdentifier",
"src": "13874:6:1"
},
"nativeSrc": "13874:15:1",
"nodeType": "YulFunctionCall",
"src": "13874:15:1"
},
"nativeSrc": "13874:15:1",
"nodeType": "YulExpressionStatement",
"src": "13874:15:1"
}
]
},
"name": "panic_error_0x12",
"nativeSrc": "13715:180:1",
"nodeType": "YulFunctionDefinition",
"src": "13715:180:1"
},
{
"body": {
"nativeSrc": "13943:143:1",
"nodeType": "YulBlock",
"src": "13943:143:1",
"statements": [
{
"nativeSrc": "13953:25:1",
"nodeType": "YulAssignment",
"src": "13953:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13976:1:1",
"nodeType": "YulIdentifier",
"src": "13976:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13958:17:1",
"nodeType": "YulIdentifier",
"src": "13958:17:1"
},
"nativeSrc": "13958:20:1",
"nodeType": "YulFunctionCall",
"src": "13958:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "13953:1:1",
"nodeType": "YulIdentifier",
"src": "13953:1:1"
}
]
},
{
"nativeSrc": "13987:25:1",
"nodeType": "YulAssignment",
"src": "13987:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "14010:1:1",
"nodeType": "YulIdentifier",
"src": "14010:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13992:17:1",
"nodeType": "YulIdentifier",
"src": "13992:17:1"
},
"nativeSrc": "13992:20:1",
"nodeType": "YulFunctionCall",
"src": "13992:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "13987:1:1",
"nodeType": "YulIdentifier",
"src": "13987:1:1"
}
]
},
{
"body": {
"nativeSrc": "14034:22:1",
"nodeType": "YulBlock",
"src": "14034:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nativeSrc": "14036:16:1",
"nodeType": "YulIdentifier",
"src": "14036:16:1"
},
"nativeSrc": "14036:18:1",
"nodeType": "YulFunctionCall",
"src": "14036:18:1"
},
"nativeSrc": "14036:18:1",
"nodeType": "YulExpressionStatement",
"src": "14036:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nativeSrc": "14031:1:1",
"nodeType": "YulIdentifier",
"src": "14031:1:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "14024:6:1",
"nodeType": "YulIdentifier",
"src": "14024:6:1"
},
"nativeSrc": "14024:9:1",
"nodeType": "YulFunctionCall",
"src": "14024:9:1"
},
"nativeSrc": "14021:35:1",
"nodeType": "YulIf",
"src": "14021:35:1"
},
{
"nativeSrc": "14066:14:1",
"nodeType": "YulAssignment",
"src": "14066:14:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14075:1:1",
"nodeType": "YulIdentifier",
"src": "14075:1:1"
},
{
"name": "y",
"nativeSrc": "14078:1:1",
"nodeType": "YulIdentifier",
"src": "14078:1:1"
}
],
"functionName": {
"name": "div",
"nativeSrc": "14071:3:1",
"nodeType": "YulIdentifier",
"src": "14071:3:1"
},
"nativeSrc": "14071:9:1",
"nodeType": "YulFunctionCall",
"src": "14071:9:1"
},
"variableNames": [
{
"name": "r",
"nativeSrc": "14066:1:1",
"nodeType": "YulIdentifier",
"src": "14066:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nativeSrc": "13901:185:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "13932:1:1",
"nodeType": "YulTypedName",
"src": "13932:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "13935:1:1",
"nodeType": "YulTypedName",
"src": "13935:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nativeSrc": "13941:1:1",
"nodeType": "YulTypedName",
"src": "13941:1:1",
"type": ""
}
],
"src": "13901:185:1"
},
{
"body": {
"nativeSrc": "14137:149:1",
"nodeType": "YulBlock",
"src": "14137:149:1",
"statements": [
{
"nativeSrc": "14147:25:1",
"nodeType": "YulAssignment",
"src": "14147:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14170:1:1",
"nodeType": "YulIdentifier",
"src": "14170:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14152:17:1",
"nodeType": "YulIdentifier",
"src": "14152:17:1"
},
"nativeSrc": "14152:20:1",
"nodeType": "YulFunctionCall",
"src": "14152:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "14147:1:1",
"nodeType": "YulIdentifier",
"src": "14147:1:1"
}
]
},
{
"nativeSrc": "14181:25:1",
"nodeType": "YulAssignment",
"src": "14181:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "14204:1:1",
"nodeType": "YulIdentifier",
"src": "14204:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14186:17:1",
"nodeType": "YulIdentifier",
"src": "14186:17:1"
},
"nativeSrc": "14186:20:1",
"nodeType": "YulFunctionCall",
"src": "14186:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "14181:1:1",
"nodeType": "YulIdentifier",
"src": "14181:1:1"
}
]
},
{
"nativeSrc": "14215:17:1",
"nodeType": "YulAssignment",
"src": "14215:17:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14227:1:1",
"nodeType": "YulIdentifier",
"src": "14227:1:1"
},
{
"name": "y",
"nativeSrc": "14230:1:1",
"nodeType": "YulIdentifier",
"src": "14230:1:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "14223:3:1",
"nodeType": "YulIdentifier",
"src": "14223:3:1"
},
"nativeSrc": "14223:9:1",
"nodeType": "YulFunctionCall",
"src": "14223:9:1"
},
"variableNames": [
{
"name": "diff",
"nativeSrc": "14215:4:1",
"nodeType": "YulIdentifier",
"src": "14215:4:1"
}
]
},
{
"body": {
"nativeSrc": "14257:22:1",
"nodeType": "YulBlock",
"src": "14257:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "14259:16:1",
"nodeType": "YulIdentifier",
"src": "14259:16:1"
},
"nativeSrc": "14259:18:1",
"nodeType": "YulFunctionCall",
"src": "14259:18:1"
},
"nativeSrc": "14259:18:1",
"nodeType": "YulExpressionStatement",
"src": "14259:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nativeSrc": "14248:4:1",
"nodeType": "YulIdentifier",
"src": "14248:4:1"
},
{
"name": "x",
"nativeSrc": "14254:1:1",
"nodeType": "YulIdentifier",
"src": "14254:1:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "14245:2:1",
"nodeType": "YulIdentifier",
"src": "14245:2:1"
},
"nativeSrc": "14245:11:1",
"nodeType": "YulFunctionCall",
"src": "14245:11:1"
},
"nativeSrc": "14242:37:1",
"nodeType": "YulIf",
"src": "14242:37:1"
}
]
},
"name": "checked_sub_t_uint256",
"nativeSrc": "14092:194:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "14123:1:1",
"nodeType": "YulTypedName",
"src": "14123:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "14126:1:1",
"nodeType": "YulTypedName",
"src": "14126:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nativeSrc": "14132:4:1",
"nodeType": "YulTypedName",
"src": "14132:4:1",
"type": ""
}
],
"src": "14092:194:1"
},
{
"body": {
"nativeSrc": "14418:206:1",
"nodeType": "YulBlock",
"src": "14418:206:1",
"statements": [
{
"nativeSrc": "14428:26:1",
"nodeType": "YulAssignment",
"src": "14428:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14440:9:1",
"nodeType": "YulIdentifier",
"src": "14440:9:1"
},
{
"kind": "number",
"nativeSrc": "14451:2:1",
"nodeType": "YulLiteral",
"src": "14451:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14436:3:1",
"nodeType": "YulIdentifier",
"src": "14436:3:1"
},
"nativeSrc": "14436:18:1",
"nodeType": "YulFunctionCall",
"src": "14436:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14428:4:1",
"nodeType": "YulIdentifier",
"src": "14428:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "14508:6:1",
"nodeType": "YulIdentifier",
"src": "14508:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14521:9:1",
"nodeType": "YulIdentifier",
"src": "14521:9:1"
},
{
"kind": "number",
"nativeSrc": "14532:1:1",
"nodeType": "YulLiteral",
"src": "14532:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14517:3:1",
"nodeType": "YulIdentifier",
"src": "14517:3:1"
},
"nativeSrc": "14517:17:1",
"nodeType": "YulFunctionCall",
"src": "14517:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "14464:43:1",
"nodeType": "YulIdentifier",
"src": "14464:43:1"
},
"nativeSrc": "14464:71:1",
"nodeType": "YulFunctionCall",
"src": "14464:71:1"
},
"nativeSrc": "14464:71:1",
"nodeType": "YulExpressionStatement",
"src": "14464:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "14589:6:1",
"nodeType": "YulIdentifier",
"src": "14589:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14602:9:1",
"nodeType": "YulIdentifier",
"src": "14602:9:1"
},
{
"kind": "number",
"nativeSrc": "14613:2:1",
"nodeType": "YulLiteral",
"src": "14613:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14598:3:1",
"nodeType": "YulIdentifier",
"src": "14598:3:1"
},
"nativeSrc": "14598:18:1",
"nodeType": "YulFunctionCall",
"src": "14598:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "14545:43:1",
"nodeType": "YulIdentifier",
"src": "14545:43:1"
},
"nativeSrc": "14545:72:1",
"nodeType": "YulFunctionCall",
"src": "14545:72:1"
},
"nativeSrc": "14545:72:1",
"nodeType": "YulExpressionStatement",
"src": "14545:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nativeSrc": "14292:332:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14382:9:1",
"nodeType": "YulTypedName",
"src": "14382:9:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "14394:6:1",
"nodeType": "YulTypedName",
"src": "14394:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "14402:6:1",
"nodeType": "YulTypedName",
"src": "14402:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14413:4:1",
"nodeType": "YulTypedName",
"src": "14413:4:1",
"type": ""
}
],
"src": "14292:332:1"
},
{
"body": {
"nativeSrc": "14736:76:1",
"nodeType": "YulBlock",
"src": "14736:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "14758:6:1",
"nodeType": "YulIdentifier",
"src": "14758:6:1"
},
{
"kind": "number",
"nativeSrc": "14766:1:1",
"nodeType": "YulLiteral",
"src": "14766:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14754:3:1",
"nodeType": "YulIdentifier",
"src": "14754:3:1"
},
"nativeSrc": "14754:14:1",
"nodeType": "YulFunctionCall",
"src": "14754:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206661696c656420746f207472616e73666572",
"kind": "string",
"nativeSrc": "14770:34:1",
"nodeType": "YulLiteral",
"src": "14770:34:1",
"type": "",
"value": "TokenStaking: failed to transfer"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14747:6:1",
"nodeType": "YulIdentifier",
"src": "14747:6:1"
},
"nativeSrc": "14747:58:1",
"nodeType": "YulFunctionCall",
"src": "14747:58:1"
},
"nativeSrc": "14747:58:1",
"nodeType": "YulExpressionStatement",
"src": "14747:58:1"
}
]
},
"name": "store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b",
"nativeSrc": "14630:182:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "14728:6:1",
"nodeType": "YulTypedName",
"src": "14728:6:1",
"type": ""
}
],
"src": "14630:182:1"
},
{
"body": {
"nativeSrc": "14964:220:1",
"nodeType": "YulBlock",
"src": "14964:220:1",
"statements": [
{
"nativeSrc": "14974:74:1",
"nodeType": "YulAssignment",
"src": "14974:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "15040:3:1",
"nodeType": "YulIdentifier",
"src": "15040:3:1"
},
{
"kind": "number",
"nativeSrc": "15045:2:1",
"nodeType": "YulLiteral",
"src": "15045:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "14981:58:1",
"nodeType": "YulIdentifier",
"src": "14981:58:1"
},
"nativeSrc": "14981:67:1",
"nodeType": "YulFunctionCall",
"src": "14981:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "14974:3:1",
"nodeType": "YulIdentifier",
"src": "14974:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "15146:3:1",
"nodeType": "YulIdentifier",
"src": "15146:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b",
"nativeSrc": "15057:88:1",
"nodeType": "YulIdentifier",
"src": "15057:88:1"
},
"nativeSrc": "15057:93:1",
"nodeType": "YulFunctionCall",
"src": "15057:93:1"
},
"nativeSrc": "15057:93:1",
"nodeType": "YulExpressionStatement",
"src": "15057:93:1"
},
{
"nativeSrc": "15159:19:1",
"nodeType": "YulAssignment",
"src": "15159:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "15170:3:1",
"nodeType": "YulIdentifier",
"src": "15170:3:1"
},
{
"kind": "number",
"nativeSrc": "15175:2:1",
"nodeType": "YulLiteral",
"src": "15175:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15166:3:1",
"nodeType": "YulIdentifier",
"src": "15166:3:1"
},
"nativeSrc": "15166:12:1",
"nodeType": "YulFunctionCall",
"src": "15166:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "15159:3:1",
"nodeType": "YulIdentifier",
"src": "15159:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "14818:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "14952:3:1",
"nodeType": "YulTypedName",
"src": "14952:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "14960:3:1",
"nodeType": "YulTypedName",
"src": "14960:3:1",
"type": ""
}
],
"src": "14818:366:1"
},
{
"body": {
"nativeSrc": "15361:248:1",
"nodeType": "YulBlock",
"src": "15361:248:1",
"statements": [
{
"nativeSrc": "15371:26:1",
"nodeType": "YulAssignment",
"src": "15371:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "15383:9:1",
"nodeType": "YulIdentifier",
"src": "15383:9:1"
},
{
"kind": "number",
"nativeSrc": "15394:2:1",
"nodeType": "YulLiteral",
"src": "15394:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15379:3:1",
"nodeType": "YulIdentifier",
"src": "15379:3:1"
},
"nativeSrc": "15379:18:1",
"nodeType": "YulFunctionCall",
"src": "15379:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "15371:4:1",
"nodeType": "YulIdentifier",
"src": "15371:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "15418:9:1",
"nodeType": "YulIdentifier",
"src": "15418:9:1"
},
{
"kind": "number",
"nativeSrc": "15429:1:1",
"nodeType": "YulLiteral",
"src": "15429:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15414:3:1",
"nodeType": "YulIdentifier",
"src": "15414:3:1"
},
"nativeSrc": "15414:17:1",
"nodeType": "YulFunctionCall",
"src": "15414:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "15437:4:1",
"nodeType": "YulIdentifier",
"src": "15437:4:1"
},
{
"name": "headStart",
"nativeSrc": "15443:9:1",
"nodeType": "YulIdentifier",
"src": "15443:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "15433:3:1",
"nodeType": "YulIdentifier",
"src": "15433:3:1"
},
"nativeSrc": "15433:20:1",
"nodeType": "YulFunctionCall",
"src": "15433:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15407:6:1",
"nodeType": "YulIdentifier",
"src": "15407:6:1"
},
"nativeSrc": "15407:47:1",
"nodeType": "YulFunctionCall",
"src": "15407:47:1"
},
"nativeSrc": "15407:47:1",
"nodeType": "YulExpressionStatement",
"src": "15407:47:1"
},
{
"nativeSrc": "15463:139:1",
"nodeType": "YulAssignment",
"src": "15463:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "15597:4:1",
"nodeType": "YulIdentifier",
"src": "15597:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "15471:124:1",
"nodeType": "YulIdentifier",
"src": "15471:124:1"
},
"nativeSrc": "15471:131:1",
"nodeType": "YulFunctionCall",
"src": "15471:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "15463:4:1",
"nodeType": "YulIdentifier",
"src": "15463:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "15190:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "15341:9:1",
"nodeType": "YulTypedName",
"src": "15341:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "15356:4:1",
"nodeType": "YulTypedName",
"src": "15356:4:1",
"type": ""
}
],
"src": "15190:419:1"
},
{
"body": {
"nativeSrc": "15721:125:1",
"nodeType": "YulBlock",
"src": "15721:125:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "15743:6:1",
"nodeType": "YulIdentifier",
"src": "15743:6:1"
},
{
"kind": "number",
"nativeSrc": "15751:1:1",
"nodeType": "YulLiteral",
"src": "15751:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15739:3:1",
"nodeType": "YulIdentifier",
"src": "15739:3:1"
},
"nativeSrc": "15739:14:1",
"nodeType": "YulFunctionCall",
"src": "15739:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f7420656e6f7567682077697468647261",
"kind": "string",
"nativeSrc": "15755:34:1",
"nodeType": "YulLiteral",
"src": "15755:34:1",
"type": "",
"value": "TokenStaking: not enough withdra"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15732:6:1",
"nodeType": "YulIdentifier",
"src": "15732:6:1"
},
"nativeSrc": "15732:58:1",
"nodeType": "YulFunctionCall",
"src": "15732:58:1"
},
"nativeSrc": "15732:58:1",
"nodeType": "YulExpressionStatement",
"src": "15732:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "15811:6:1",
"nodeType": "YulIdentifier",
"src": "15811:6:1"
},
{
"kind": "number",
"nativeSrc": "15819:2:1",
"nodeType": "YulLiteral",
"src": "15819:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15807:3:1",
"nodeType": "YulIdentifier",
"src": "15807:3:1"
},
"nativeSrc": "15807:15:1",
"nodeType": "YulFunctionCall",
"src": "15807:15:1"
},
{
"hexValue": "7761626c6520746f6b656e73",
"kind": "string",
"nativeSrc": "15824:14:1",
"nodeType": "YulLiteral",
"src": "15824:14:1",
"type": "",
"value": "wable tokens"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15800:6:1",
"nodeType": "YulIdentifier",
"src": "15800:6:1"
},
"nativeSrc": "15800:39:1",
"nodeType": "YulFunctionCall",
"src": "15800:39:1"
},
"nativeSrc": "15800:39:1",
"nodeType": "YulExpressionStatement",
"src": "15800:39:1"
}
]
},
"name": "store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7",
"nativeSrc": "15615:231:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "15713:6:1",
"nodeType": "YulTypedName",
"src": "15713:6:1",
"type": ""
}
],
"src": "15615:231:1"
},
{
"body": {
"nativeSrc": "15998:220:1",
"nodeType": "YulBlock",
"src": "15998:220:1",
"statements": [
{
"nativeSrc": "16008:74:1",
"nodeType": "YulAssignment",
"src": "16008:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "16074:3:1",
"nodeType": "YulIdentifier",
"src": "16074:3:1"
},
{
"kind": "number",
"nativeSrc": "16079:2:1",
"nodeType": "YulLiteral",
"src": "16079:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "16015:58:1",
"nodeType": "YulIdentifier",
"src": "16015:58:1"
},
"nativeSrc": "16015:67:1",
"nodeType": "YulFunctionCall",
"src": "16015:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "16008:3:1",
"nodeType": "YulIdentifier",
"src": "16008:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "16180:3:1",
"nodeType": "YulIdentifier",
"src": "16180:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7",
"nativeSrc": "16091:88:1",
"nodeType": "YulIdentifier",
"src": "16091:88:1"
},
"nativeSrc": "16091:93:1",
"nodeType": "YulFunctionCall",
"src": "16091:93:1"
},
"nativeSrc": "16091:93:1",
"nodeType": "YulExpressionStatement",
"src": "16091:93:1"
},
{
"nativeSrc": "16193:19:1",
"nodeType": "YulAssignment",
"src": "16193:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "16204:3:1",
"nodeType": "YulIdentifier",
"src": "16204:3:1"
},
{
"kind": "number",
"nativeSrc": "16209:2:1",
"nodeType": "YulLiteral",
"src": "16209:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16200:3:1",
"nodeType": "YulIdentifier",
"src": "16200:3:1"
},
"nativeSrc": "16200:12:1",
"nodeType": "YulFunctionCall",
"src": "16200:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "16193:3:1",
"nodeType": "YulIdentifier",
"src": "16193:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack",
"nativeSrc": "15852:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "15986:3:1",
"nodeType": "YulTypedName",
"src": "15986:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "15994:3:1",
"nodeType": "YulTypedName",
"src": "15994:3:1",
"type": ""
}
],
"src": "15852:366:1"
},
{
"body": {
"nativeSrc": "16395:248:1",
"nodeType": "YulBlock",
"src": "16395:248:1",
"statements": [
{
"nativeSrc": "16405:26:1",
"nodeType": "YulAssignment",
"src": "16405:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "16417:9:1",
"nodeType": "YulIdentifier",
"src": "16417:9:1"
},
{
"kind": "number",
"nativeSrc": "16428:2:1",
"nodeType": "YulLiteral",
"src": "16428:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16413:3:1",
"nodeType": "YulIdentifier",
"src": "16413:3:1"
},
"nativeSrc": "16413:18:1",
"nodeType": "YulFunctionCall",
"src": "16413:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "16405:4:1",
"nodeType": "YulIdentifier",
"src": "16405:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16452:9:1",
"nodeType": "YulIdentifier",
"src": "16452:9:1"
},
{
"kind": "number",
"nativeSrc": "16463:1:1",
"nodeType": "YulLiteral",
"src": "16463:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16448:3:1",
"nodeType": "YulIdentifier",
"src": "16448:3:1"
},
"nativeSrc": "16448:17:1",
"nodeType": "YulFunctionCall",
"src": "16448:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "16471:4:1",
"nodeType": "YulIdentifier",
"src": "16471:4:1"
},
{
"name": "headStart",
"nativeSrc": "16477:9:1",
"nodeType": "YulIdentifier",
"src": "16477:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "16467:3:1",
"nodeType": "YulIdentifier",
"src": "16467:3:1"
},
"nativeSrc": "16467:20:1",
"nodeType": "YulFunctionCall",
"src": "16467:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "16441:6:1",
"nodeType": "YulIdentifier",
"src": "16441:6:1"
},
"nativeSrc": "16441:47:1",
"nodeType": "YulFunctionCall",
"src": "16441:47:1"
},
"nativeSrc": "16441:47:1",
"nodeType": "YulExpressionStatement",
"src": "16441:47:1"
},
{
"nativeSrc": "16497:139:1",
"nodeType": "YulAssignment",
"src": "16497:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "16631:4:1",
"nodeType": "YulIdentifier",
"src": "16631:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack",
"nativeSrc": "16505:124:1",
"nodeType": "YulIdentifier",
"src": "16505:124:1"
},
"nativeSrc": "16505:131:1",
"nodeType": "YulFunctionCall",
"src": "16505:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "16497:4:1",
"nodeType": "YulIdentifier",
"src": "16497:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "16224:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "16375:9:1",
"nodeType": "YulTypedName",
"src": "16375:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "16390:4:1",
"nodeType": "YulTypedName",
"src": "16390:4:1",
"type": ""
}
],
"src": "16224:419:1"
},
{
"body": {
"nativeSrc": "16755:127:1",
"nodeType": "YulBlock",
"src": "16755:127:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "16777:6:1",
"nodeType": "YulIdentifier",
"src": "16777:6:1"
},
{
"kind": "number",
"nativeSrc": "16785:1:1",
"nodeType": "YulLiteral",
"src": "16785:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16773:3:1",
"nodeType": "YulIdentifier",
"src": "16773:3:1"
},
"nativeSrc": "16773:14:1",
"nodeType": "YulFunctionCall",
"src": "16773:14:1"
},
{
"hexValue": "496e697469616c697a61626c653a20636f6e747261637420697320616c726561",
"kind": "string",
"nativeSrc": "16789:34:1",
"nodeType": "YulLiteral",
"src": "16789:34:1",
"type": "",
"value": "Initializable: contract is alrea"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "16766:6:1",
"nodeType": "YulIdentifier",
"src": "16766:6:1"
},
"nativeSrc": "16766:58:1",
"nodeType": "YulFunctionCall",
"src": "16766:58:1"
},
"nativeSrc": "16766:58:1",
"nodeType": "YulExpressionStatement",
"src": "16766:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "16845:6:1",
"nodeType": "YulIdentifier",
"src": "16845:6:1"
},
{
"kind": "number",
"nativeSrc": "16853:2:1",
"nodeType": "YulLiteral",
"src": "16853:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16841:3:1",
"nodeType": "YulIdentifier",
"src": "16841:3:1"
},
"nativeSrc": "16841:15:1",
"nodeType": "YulFunctionCall",
"src": "16841:15:1"
},
{
"hexValue": "647920696e697469616c697a6564",
"kind": "string",
"nativeSrc": "16858:16:1",
"nodeType": "YulLiteral",
"src": "16858:16:1",
"type": "",
"value": "dy initialized"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "16834:6:1",
"nodeType": "YulIdentifier",
"src": "16834:6:1"
},
"nativeSrc": "16834:41:1",
"nodeType": "YulFunctionCall",
"src": "16834:41:1"
},
"nativeSrc": "16834:41:1",
"nodeType": "YulExpressionStatement",
"src": "16834:41:1"
}
]
},
"name": "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759",
"nativeSrc": "16649:233:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "16747:6:1",
"nodeType": "YulTypedName",
"src": "16747:6:1",
"type": ""
}
],
"src": "16649:233:1"
},
{
"body": {
"nativeSrc": "17034:220:1",
"nodeType": "YulBlock",
"src": "17034:220:1",
"statements": [
{
"nativeSrc": "17044:74:1",
"nodeType": "YulAssignment",
"src": "17044:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "17110:3:1",
"nodeType": "YulIdentifier",
"src": "17110:3:1"
},
{
"kind": "number",
"nativeSrc": "17115:2:1",
"nodeType": "YulLiteral",
"src": "17115:2:1",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "17051:58:1",
"nodeType": "YulIdentifier",
"src": "17051:58:1"
},
"nativeSrc": "17051:67:1",
"nodeType": "YulFunctionCall",
"src": "17051:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "17044:3:1",
"nodeType": "YulIdentifier",
"src": "17044:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "17216:3:1",
"nodeType": "YulIdentifier",
"src": "17216:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759",
"nativeSrc": "17127:88:1",
"nodeType": "YulIdentifier",
"src": "17127:88:1"
},
"nativeSrc": "17127:93:1",
"nodeType": "YulFunctionCall",
"src": "17127:93:1"
},
"nativeSrc": "17127:93:1",
"nodeType": "YulExpressionStatement",
"src": "17127:93:1"
},
{
"nativeSrc": "17229:19:1",
"nodeType": "YulAssignment",
"src": "17229:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "17240:3:1",
"nodeType": "YulIdentifier",
"src": "17240:3:1"
},
{
"kind": "number",
"nativeSrc": "17245:2:1",
"nodeType": "YulLiteral",
"src": "17245:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "17236:3:1",
"nodeType": "YulIdentifier",
"src": "17236:3:1"
},
"nativeSrc": "17236:12:1",
"nodeType": "YulFunctionCall",
"src": "17236:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "17229:3:1",
"nodeType": "YulIdentifier",
"src": "17229:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack",
"nativeSrc": "16888:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "17022:3:1",
"nodeType": "YulTypedName",
"src": "17022:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "17030:3:1",
"nodeType": "YulTypedName",
"src": "17030:3:1",
"type": ""
}
],
"src": "16888:366:1"
},
{
"body": {
"nativeSrc": "17431:248:1",
"nodeType": "YulBlock",
"src": "17431:248:1",
"statements": [
{
"nativeSrc": "17441:26:1",
"nodeType": "YulAssignment",
"src": "17441:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "17453:9:1",
"nodeType": "YulIdentifier",
"src": "17453:9:1"
},
{
"kind": "number",
"nativeSrc": "17464:2:1",
"nodeType": "YulLiteral",
"src": "17464:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "17449:3:1",
"nodeType": "YulIdentifier",
"src": "17449:3:1"
},
"nativeSrc": "17449:18:1",
"nodeType": "YulFunctionCall",
"src": "17449:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "17441:4:1",
"nodeType": "YulIdentifier",
"src": "17441:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "17488:9:1",
"nodeType": "YulIdentifier",
"src": "17488:9:1"
},
{
"kind": "number",
"nativeSrc": "17499:1:1",
"nodeType": "YulLiteral",
"src": "17499:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "17484:3:1",
"nodeType": "YulIdentifier",
"src": "17484:3:1"
},
"nativeSrc": "17484:17:1",
"nodeType": "YulFunctionCall",
"src": "17484:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "17507:4:1",
"nodeType": "YulIdentifier",
"src": "17507:4:1"
},
{
"name": "headStart",
"nativeSrc": "17513:9:1",
"nodeType": "YulIdentifier",
"src": "17513:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "17503:3:1",
"nodeType": "YulIdentifier",
"src": "17503:3:1"
},
"nativeSrc": "17503:20:1",
"nodeType": "YulFunctionCall",
"src": "17503:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "17477:6:1",
"nodeType": "YulIdentifier",
"src": "17477:6:1"
},
"nativeSrc": "17477:47:1",
"nodeType": "YulFunctionCall",
"src": "17477:47:1"
},
"nativeSrc": "17477:47:1",
"nodeType": "YulExpressionStatement",
"src": "17477:47:1"
},
{
"nativeSrc": "17533:139:1",
"nodeType": "YulAssignment",
"src": "17533:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "17667:4:1",
"nodeType": "YulIdentifier",
"src": "17667:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack",
"nativeSrc": "17541:124:1",
"nodeType": "YulIdentifier",
"src": "17541:124:1"
},
"nativeSrc": "17541:131:1",
"nodeType": "YulFunctionCall",
"src": "17541:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "17533:4:1",
"nodeType": "YulIdentifier",
"src": "17533:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "17260:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "17411:9:1",
"nodeType": "YulTypedName",
"src": "17411:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "17426:4:1",
"nodeType": "YulTypedName",
"src": "17426:4:1",
"type": ""
}
],
"src": "17260:419:1"
},
{
"body": {
"nativeSrc": "17738:32:1",
"nodeType": "YulBlock",
"src": "17738:32:1",
"statements": [
{
"nativeSrc": "17748:16:1",
"nodeType": "YulAssignment",
"src": "17748:16:1",
"value": {
"name": "value",
"nativeSrc": "17759:5:1",
"nodeType": "YulIdentifier",
"src": "17759:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "17748:7:1",
"nodeType": "YulIdentifier",
"src": "17748:7:1"
}
]
}
]
},
"name": "cleanup_t_rational_1_by_1",
"nativeSrc": "17685:85:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "17720:5:1",
"nodeType": "YulTypedName",
"src": "17720:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "17730:7:1",
"nodeType": "YulTypedName",
"src": "17730:7:1",
"type": ""
}
],
"src": "17685:85:1"
},
{
"body": {
"nativeSrc": "17819:43:1",
"nodeType": "YulBlock",
"src": "17819:43:1",
"statements": [
{
"nativeSrc": "17829:27:1",
"nodeType": "YulAssignment",
"src": "17829:27:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "17844:5:1",
"nodeType": "YulIdentifier",
"src": "17844:5:1"
},
{
"kind": "number",
"nativeSrc": "17851:4:1",
"nodeType": "YulLiteral",
"src": "17851:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "17840:3:1",
"nodeType": "YulIdentifier",
"src": "17840:3:1"
},
"nativeSrc": "17840:16:1",
"nodeType": "YulFunctionCall",
"src": "17840:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "17829:7:1",
"nodeType": "YulIdentifier",
"src": "17829:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nativeSrc": "17776:86:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "17801:5:1",
"nodeType": "YulTypedName",
"src": "17801:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "17811:7:1",
"nodeType": "YulTypedName",
"src": "17811:7:1",
"type": ""
}
],
"src": "17776:86:1"
},
{
"body": {
"nativeSrc": "17900:28:1",
"nodeType": "YulBlock",
"src": "17900:28:1",
"statements": [
{
"nativeSrc": "17910:12:1",
"nodeType": "YulAssignment",
"src": "17910:12:1",
"value": {
"name": "value",
"nativeSrc": "17917:5:1",
"nodeType": "YulIdentifier",
"src": "17917:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "17910:3:1",
"nodeType": "YulIdentifier",
"src": "17910:3:1"
}
]
}
]
},
"name": "identity",
"nativeSrc": "17868:60:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "17886:5:1",
"nodeType": "YulTypedName",
"src": "17886:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "17896:3:1",
"nodeType": "YulTypedName",
"src": "17896:3:1",
"type": ""
}
],
"src": "17868:60:1"
},
{
"body": {
"nativeSrc": "18000:88:1",
"nodeType": "YulBlock",
"src": "18000:88:1",
"statements": [
{
"nativeSrc": "18010:72:1",
"nodeType": "YulAssignment",
"src": "18010:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "18074:5:1",
"nodeType": "YulIdentifier",
"src": "18074:5:1"
}
],
"functionName": {
"name": "cleanup_t_rational_1_by_1",
"nativeSrc": "18048:25:1",
"nodeType": "YulIdentifier",
"src": "18048:25:1"
},
"nativeSrc": "18048:32:1",
"nodeType": "YulFunctionCall",
"src": "18048:32:1"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "18039:8:1",
"nodeType": "YulIdentifier",
"src": "18039:8:1"
},
"nativeSrc": "18039:42:1",
"nodeType": "YulFunctionCall",
"src": "18039:42:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "18023:15:1",
"nodeType": "YulIdentifier",
"src": "18023:15:1"
},
"nativeSrc": "18023:59:1",
"nodeType": "YulFunctionCall",
"src": "18023:59:1"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "18010:9:1",
"nodeType": "YulIdentifier",
"src": "18010:9:1"
}
]
}
]
},
"name": "convert_t_rational_1_by_1_to_t_uint8",
"nativeSrc": "17934:154:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "17980:5:1",
"nodeType": "YulTypedName",
"src": "17980:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "17990:9:1",
"nodeType": "YulTypedName",
"src": "17990:9:1",
"type": ""
}
],
"src": "17934:154:1"
},
{
"body": {
"nativeSrc": "18165:72:1",
"nodeType": "YulBlock",
"src": "18165:72:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "18182:3:1",
"nodeType": "YulIdentifier",
"src": "18182:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "18224:5:1",
"nodeType": "YulIdentifier",
"src": "18224:5:1"
}
],
"functionName": {
"name": "convert_t_rational_1_by_1_to_t_uint8",
"nativeSrc": "18187:36:1",
"nodeType": "YulIdentifier",
"src": "18187:36:1"
},
"nativeSrc": "18187:43:1",
"nodeType": "YulFunctionCall",
"src": "18187:43:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "18175:6:1",
"nodeType": "YulIdentifier",
"src": "18175:6:1"
},
"nativeSrc": "18175:56:1",
"nodeType": "YulFunctionCall",
"src": "18175:56:1"
},
"nativeSrc": "18175:56:1",
"nodeType": "YulExpressionStatement",
"src": "18175:56:1"
}
]
},
"name": "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack",
"nativeSrc": "18094:143:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "18153:5:1",
"nodeType": "YulTypedName",
"src": "18153:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "18160:3:1",
"nodeType": "YulTypedName",
"src": "18160:3:1",
"type": ""
}
],
"src": "18094:143:1"
},
{
"body": {
"nativeSrc": "18347:130:1",
"nodeType": "YulBlock",
"src": "18347:130:1",
"statements": [
{
"nativeSrc": "18357:26:1",
"nodeType": "YulAssignment",
"src": "18357:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "18369:9:1",
"nodeType": "YulIdentifier",
"src": "18369:9:1"
},
{
"kind": "number",
"nativeSrc": "18380:2:1",
"nodeType": "YulLiteral",
"src": "18380:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18365:3:1",
"nodeType": "YulIdentifier",
"src": "18365:3:1"
},
"nativeSrc": "18365:18:1",
"nodeType": "YulFunctionCall",
"src": "18365:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "18357:4:1",
"nodeType": "YulIdentifier",
"src": "18357:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "18443:6:1",
"nodeType": "YulIdentifier",
"src": "18443:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "18456:9:1",
"nodeType": "YulIdentifier",
"src": "18456:9:1"
},
{
"kind": "number",
"nativeSrc": "18467:1:1",
"nodeType": "YulLiteral",
"src": "18467:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18452:3:1",
"nodeType": "YulIdentifier",
"src": "18452:3:1"
},
"nativeSrc": "18452:17:1",
"nodeType": "YulFunctionCall",
"src": "18452:17:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack",
"nativeSrc": "18393:49:1",
"nodeType": "YulIdentifier",
"src": "18393:49:1"
},
"nativeSrc": "18393:77:1",
"nodeType": "YulFunctionCall",
"src": "18393:77:1"
},
"nativeSrc": "18393:77:1",
"nodeType": "YulExpressionStatement",
"src": "18393:77:1"
}
]
},
"name": "abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed",
"nativeSrc": "18243:234:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "18319:9:1",
"nodeType": "YulTypedName",
"src": "18319:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "18331:6:1",
"nodeType": "YulTypedName",
"src": "18331:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "18342:4:1",
"nodeType": "YulTypedName",
"src": "18342:4:1",
"type": ""
}
],
"src": "18243:234:1"
},
{
"body": {
"nativeSrc": "18589:76:1",
"nodeType": "YulBlock",
"src": "18589:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "18611:6:1",
"nodeType": "YulIdentifier",
"src": "18611:6:1"
},
{
"kind": "number",
"nativeSrc": "18619:1:1",
"nodeType": "YulLiteral",
"src": "18619:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18607:3:1",
"nodeType": "YulIdentifier",
"src": "18607:3:1"
},
"nativeSrc": "18607:14:1",
"nodeType": "YulFunctionCall",
"src": "18607:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f2072657761726420746f20636c61696d",
"kind": "string",
"nativeSrc": "18623:34:1",
"nodeType": "YulLiteral",
"src": "18623:34:1",
"type": "",
"value": "TokenStaking: no reward to claim"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "18600:6:1",
"nodeType": "YulIdentifier",
"src": "18600:6:1"
},
"nativeSrc": "18600:58:1",
"nodeType": "YulFunctionCall",
"src": "18600:58:1"
},
"nativeSrc": "18600:58:1",
"nodeType": "YulExpressionStatement",
"src": "18600:58:1"
}
]
},
"name": "store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4",
"nativeSrc": "18483:182:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "18581:6:1",
"nodeType": "YulTypedName",
"src": "18581:6:1",
"type": ""
}
],
"src": "18483:182:1"
},
{
"body": {
"nativeSrc": "18817:220:1",
"nodeType": "YulBlock",
"src": "18817:220:1",
"statements": [
{
"nativeSrc": "18827:74:1",
"nodeType": "YulAssignment",
"src": "18827:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "18893:3:1",
"nodeType": "YulIdentifier",
"src": "18893:3:1"
},
{
"kind": "number",
"nativeSrc": "18898:2:1",
"nodeType": "YulLiteral",
"src": "18898:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "18834:58:1",
"nodeType": "YulIdentifier",
"src": "18834:58:1"
},
"nativeSrc": "18834:67:1",
"nodeType": "YulFunctionCall",
"src": "18834:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "18827:3:1",
"nodeType": "YulIdentifier",
"src": "18827:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "18999:3:1",
"nodeType": "YulIdentifier",
"src": "18999:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4",
"nativeSrc": "18910:88:1",
"nodeType": "YulIdentifier",
"src": "18910:88:1"
},
"nativeSrc": "18910:93:1",
"nodeType": "YulFunctionCall",
"src": "18910:93:1"
},
"nativeSrc": "18910:93:1",
"nodeType": "YulExpressionStatement",
"src": "18910:93:1"
},
{
"nativeSrc": "19012:19:1",
"nodeType": "YulAssignment",
"src": "19012:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "19023:3:1",
"nodeType": "YulIdentifier",
"src": "19023:3:1"
},
{
"kind": "number",
"nativeSrc": "19028:2:1",
"nodeType": "YulLiteral",
"src": "19028:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19019:3:1",
"nodeType": "YulIdentifier",
"src": "19019:3:1"
},
"nativeSrc": "19019:12:1",
"nodeType": "YulFunctionCall",
"src": "19019:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "19012:3:1",
"nodeType": "YulIdentifier",
"src": "19012:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack",
"nativeSrc": "18671:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "18805:3:1",
"nodeType": "YulTypedName",
"src": "18805:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "18813:3:1",
"nodeType": "YulTypedName",
"src": "18813:3:1",
"type": ""
}
],
"src": "18671:366:1"
},
{
"body": {
"nativeSrc": "19214:248:1",
"nodeType": "YulBlock",
"src": "19214:248:1",
"statements": [
{
"nativeSrc": "19224:26:1",
"nodeType": "YulAssignment",
"src": "19224:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "19236:9:1",
"nodeType": "YulIdentifier",
"src": "19236:9:1"
},
{
"kind": "number",
"nativeSrc": "19247:2:1",
"nodeType": "YulLiteral",
"src": "19247:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19232:3:1",
"nodeType": "YulIdentifier",
"src": "19232:3:1"
},
"nativeSrc": "19232:18:1",
"nodeType": "YulFunctionCall",
"src": "19232:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "19224:4:1",
"nodeType": "YulIdentifier",
"src": "19224:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "19271:9:1",
"nodeType": "YulIdentifier",
"src": "19271:9:1"
},
{
"kind": "number",
"nativeSrc": "19282:1:1",
"nodeType": "YulLiteral",
"src": "19282:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19267:3:1",
"nodeType": "YulIdentifier",
"src": "19267:3:1"
},
"nativeSrc": "19267:17:1",
"nodeType": "YulFunctionCall",
"src": "19267:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "19290:4:1",
"nodeType": "YulIdentifier",
"src": "19290:4:1"
},
{
"name": "headStart",
"nativeSrc": "19296:9:1",
"nodeType": "YulIdentifier",
"src": "19296:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "19286:3:1",
"nodeType": "YulIdentifier",
"src": "19286:3:1"
},
"nativeSrc": "19286:20:1",
"nodeType": "YulFunctionCall",
"src": "19286:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "19260:6:1",
"nodeType": "YulIdentifier",
"src": "19260:6:1"
},
"nativeSrc": "19260:47:1",
"nodeType": "YulFunctionCall",
"src": "19260:47:1"
},
"nativeSrc": "19260:47:1",
"nodeType": "YulExpressionStatement",
"src": "19260:47:1"
},
{
"nativeSrc": "19316:139:1",
"nodeType": "YulAssignment",
"src": "19316:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "19450:4:1",
"nodeType": "YulIdentifier",
"src": "19450:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack",
"nativeSrc": "19324:124:1",
"nodeType": "YulIdentifier",
"src": "19324:124:1"
},
"nativeSrc": "19324:131:1",
"nodeType": "YulFunctionCall",
"src": "19324:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "19316:4:1",
"nodeType": "YulIdentifier",
"src": "19316:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "19043:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "19194:9:1",
"nodeType": "YulTypedName",
"src": "19194:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "19209:4:1",
"nodeType": "YulTypedName",
"src": "19209:4:1",
"type": ""
}
],
"src": "19043:419:1"
},
{
"body": {
"nativeSrc": "19574:119:1",
"nodeType": "YulBlock",
"src": "19574:119:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "19596:6:1",
"nodeType": "YulIdentifier",
"src": "19596:6:1"
},
{
"kind": "number",
"nativeSrc": "19604:1:1",
"nodeType": "YulLiteral",
"src": "19604:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19592:3:1",
"nodeType": "YulIdentifier",
"src": "19592:3:1"
},
"nativeSrc": "19592:14:1",
"nodeType": "YulFunctionCall",
"src": "19592:14:1"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nativeSrc": "19608:34:1",
"nodeType": "YulLiteral",
"src": "19608:34:1",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "19585:6:1",
"nodeType": "YulIdentifier",
"src": "19585:6:1"
},
"nativeSrc": "19585:58:1",
"nodeType": "YulFunctionCall",
"src": "19585:58:1"
},
"nativeSrc": "19585:58:1",
"nodeType": "YulExpressionStatement",
"src": "19585:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "19664:6:1",
"nodeType": "YulIdentifier",
"src": "19664:6:1"
},
{
"kind": "number",
"nativeSrc": "19672:2:1",
"nodeType": "YulLiteral",
"src": "19672:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19660:3:1",
"nodeType": "YulIdentifier",
"src": "19660:3:1"
},
"nativeSrc": "19660:15:1",
"nodeType": "YulFunctionCall",
"src": "19660:15:1"
},
{
"hexValue": "646472657373",
"kind": "string",
"nativeSrc": "19677:8:1",
"nodeType": "YulLiteral",
"src": "19677:8:1",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "19653:6:1",
"nodeType": "YulIdentifier",
"src": "19653:6:1"
},
"nativeSrc": "19653:33:1",
"nodeType": "YulFunctionCall",
"src": "19653:33:1"
},
"nativeSrc": "19653:33:1",
"nodeType": "YulExpressionStatement",
"src": "19653:33:1"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nativeSrc": "19468:225:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "19566:6:1",
"nodeType": "YulTypedName",
"src": "19566:6:1",
"type": ""
}
],
"src": "19468:225:1"
},
{
"body": {
"nativeSrc": "19845:220:1",
"nodeType": "YulBlock",
"src": "19845:220:1",
"statements": [
{
"nativeSrc": "19855:74:1",
"nodeType": "YulAssignment",
"src": "19855:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "19921:3:1",
"nodeType": "YulIdentifier",
"src": "19921:3:1"
},
{
"kind": "number",
"nativeSrc": "19926:2:1",
"nodeType": "YulLiteral",
"src": "19926:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "19862:58:1",
"nodeType": "YulIdentifier",
"src": "19862:58:1"
},
"nativeSrc": "19862:67:1",
"nodeType": "YulFunctionCall",
"src": "19862:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "19855:3:1",
"nodeType": "YulIdentifier",
"src": "19855:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "20027:3:1",
"nodeType": "YulIdentifier",
"src": "20027:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nativeSrc": "19938:88:1",
"nodeType": "YulIdentifier",
"src": "19938:88:1"
},
"nativeSrc": "19938:93:1",
"nodeType": "YulFunctionCall",
"src": "19938:93:1"
},
"nativeSrc": "19938:93:1",
"nodeType": "YulExpressionStatement",
"src": "19938:93:1"
},
{
"nativeSrc": "20040:19:1",
"nodeType": "YulAssignment",
"src": "20040:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "20051:3:1",
"nodeType": "YulIdentifier",
"src": "20051:3:1"
},
{
"kind": "number",
"nativeSrc": "20056:2:1",
"nodeType": "YulLiteral",
"src": "20056:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20047:3:1",
"nodeType": "YulIdentifier",
"src": "20047:3:1"
},
"nativeSrc": "20047:12:1",
"nodeType": "YulFunctionCall",
"src": "20047:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "20040:3:1",
"nodeType": "YulIdentifier",
"src": "20040:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nativeSrc": "19699:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "19833:3:1",
"nodeType": "YulTypedName",
"src": "19833:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "19841:3:1",
"nodeType": "YulTypedName",
"src": "19841:3:1",
"type": ""
}
],
"src": "19699:366:1"
},
{
"body": {
"nativeSrc": "20242:248:1",
"nodeType": "YulBlock",
"src": "20242:248:1",
"statements": [
{
"nativeSrc": "20252:26:1",
"nodeType": "YulAssignment",
"src": "20252:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "20264:9:1",
"nodeType": "YulIdentifier",
"src": "20264:9:1"
},
{
"kind": "number",
"nativeSrc": "20275:2:1",
"nodeType": "YulLiteral",
"src": "20275:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20260:3:1",
"nodeType": "YulIdentifier",
"src": "20260:3:1"
},
"nativeSrc": "20260:18:1",
"nodeType": "YulFunctionCall",
"src": "20260:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "20252:4:1",
"nodeType": "YulIdentifier",
"src": "20252:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "20299:9:1",
"nodeType": "YulIdentifier",
"src": "20299:9:1"
},
{
"kind": "number",
"nativeSrc": "20310:1:1",
"nodeType": "YulLiteral",
"src": "20310:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20295:3:1",
"nodeType": "YulIdentifier",
"src": "20295:3:1"
},
"nativeSrc": "20295:17:1",
"nodeType": "YulFunctionCall",
"src": "20295:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "20318:4:1",
"nodeType": "YulIdentifier",
"src": "20318:4:1"
},
{
"name": "headStart",
"nativeSrc": "20324:9:1",
"nodeType": "YulIdentifier",
"src": "20324:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "20314:3:1",
"nodeType": "YulIdentifier",
"src": "20314:3:1"
},
"nativeSrc": "20314:20:1",
"nodeType": "YulFunctionCall",
"src": "20314:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "20288:6:1",
"nodeType": "YulIdentifier",
"src": "20288:6:1"
},
"nativeSrc": "20288:47:1",
"nodeType": "YulFunctionCall",
"src": "20288:47:1"
},
"nativeSrc": "20288:47:1",
"nodeType": "YulExpressionStatement",
"src": "20288:47:1"
},
{
"nativeSrc": "20344:139:1",
"nodeType": "YulAssignment",
"src": "20344:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "20478:4:1",
"nodeType": "YulIdentifier",
"src": "20478:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nativeSrc": "20352:124:1",
"nodeType": "YulIdentifier",
"src": "20352:124:1"
},
"nativeSrc": "20352:131:1",
"nodeType": "YulFunctionCall",
"src": "20352:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "20344:4:1",
"nodeType": "YulIdentifier",
"src": "20344:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "20071:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "20222:9:1",
"nodeType": "YulTypedName",
"src": "20222:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "20237:4:1",
"nodeType": "YulTypedName",
"src": "20237:4:1",
"type": ""
}
],
"src": "20071:419:1"
},
{
"body": {
"nativeSrc": "20602:76:1",
"nodeType": "YulBlock",
"src": "20602:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "20624:6:1",
"nodeType": "YulIdentifier",
"src": "20624:6:1"
},
{
"kind": "number",
"nativeSrc": "20632:1:1",
"nodeType": "YulLiteral",
"src": "20632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "20620:3:1",
"nodeType": "YulIdentifier",
"src": "20620:3:1"
},
"nativeSrc": "20620:14:1",
"nodeType": "YulFunctionCall",
"src": "20620:14:1"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nativeSrc": "20636:34:1",
"nodeType": "YulLiteral",
"src": "20636:34:1",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "20613:6:1",
"nodeType": "YulIdentifier",
"src": "20613:6:1"
},
"nativeSrc": "20613:58:1",
"nodeType": "YulFunctionCall",
"src": "20613:58:1"
},
"nativeSrc": "20613:58:1",
"nodeType": "YulExpressionStatement",
"src": "20613:58:1"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nativeSrc": "20496:182:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "20594:6:1",
"nodeType": "YulTypedName",
"src": "20594:6:1",
"type": ""
}
],
"src": "20496:182:1"
},
{
"body": {
"nativeSrc": "20830:220:1",
"nodeType": "YulBlock",
"src": "20830:220:1",
"statements": [
{
"nativeSrc": "20840:74:1",
"nodeType": "YulAssignment",
"src": "20840:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "20906:3:1",
"nodeType": "YulIdentifier",
"src": "20906:3:1"
},
{
"kind": "number",
"nativeSrc": "20911:2:1",
"nodeType": "YulLiteral",
"src": "20911:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "20847:58:1",
"nodeType": "YulIdentifier",
"src": "20847:58:1"
},
"nativeSrc": "20847:67:1",
"nodeType": "YulFunctionCall",
"src": "20847:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "20840:3:1",
"nodeType": "YulIdentifier",
"src": "20840:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "21012:3:1",
"nodeType": "YulIdentifier",
"src": "21012:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nativeSrc": "20923:88:1",
"nodeType": "YulIdentifier",
"src": "20923:88:1"
},
"nativeSrc": "20923:93:1",
"nodeType": "YulFunctionCall",
"src": "20923:93:1"
},
"nativeSrc": "20923:93:1",
"nodeType": "YulExpressionStatement",
"src": "20923:93:1"
},
{
"nativeSrc": "21025:19:1",
"nodeType": "YulAssignment",
"src": "21025:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "21036:3:1",
"nodeType": "YulIdentifier",
"src": "21036:3:1"
},
{
"kind": "number",
"nativeSrc": "21041:2:1",
"nodeType": "YulLiteral",
"src": "21041:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "21032:3:1",
"nodeType": "YulIdentifier",
"src": "21032:3:1"
},
"nativeSrc": "21032:12:1",
"nodeType": "YulFunctionCall",
"src": "21032:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "21025:3:1",
"nodeType": "YulIdentifier",
"src": "21025:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nativeSrc": "20684:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "20818:3:1",
"nodeType": "YulTypedName",
"src": "20818:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "20826:3:1",
"nodeType": "YulTypedName",
"src": "20826:3:1",
"type": ""
}
],
"src": "20684:366:1"
},
{
"body": {
"nativeSrc": "21227:248:1",
"nodeType": "YulBlock",
"src": "21227:248:1",
"statements": [
{
"nativeSrc": "21237:26:1",
"nodeType": "YulAssignment",
"src": "21237:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "21249:9:1",
"nodeType": "YulIdentifier",
"src": "21249:9:1"
},
{
"kind": "number",
"nativeSrc": "21260:2:1",
"nodeType": "YulLiteral",
"src": "21260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "21245:3:1",
"nodeType": "YulIdentifier",
"src": "21245:3:1"
},
"nativeSrc": "21245:18:1",
"nodeType": "YulFunctionCall",
"src": "21245:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "21237:4:1",
"nodeType": "YulIdentifier",
"src": "21237:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "21284:9:1",
"nodeType": "YulIdentifier",
"src": "21284:9:1"
},
{
"kind": "number",
"nativeSrc": "21295:1:1",
"nodeType": "YulLiteral",
"src": "21295:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "21280:3:1",
"nodeType": "YulIdentifier",
"src": "21280:3:1"
},
"nativeSrc": "21280:17:1",
"nodeType": "YulFunctionCall",
"src": "21280:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "21303:4:1",
"nodeType": "YulIdentifier",
"src": "21303:4:1"
},
{
"name": "headStart",
"nativeSrc": "21309:9:1",
"nodeType": "YulIdentifier",
"src": "21309:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "21299:3:1",
"nodeType": "YulIdentifier",
"src": "21299:3:1"
},
"nativeSrc": "21299:20:1",
"nodeType": "YulFunctionCall",
"src": "21299:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "21273:6:1",
"nodeType": "YulIdentifier",
"src": "21273:6:1"
},
"nativeSrc": "21273:47:1",
"nodeType": "YulFunctionCall",
"src": "21273:47:1"
},
"nativeSrc": "21273:47:1",
"nodeType": "YulExpressionStatement",
"src": "21273:47:1"
},
{
"nativeSrc": "21329:139:1",
"nodeType": "YulAssignment",
"src": "21329:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "21463:4:1",
"nodeType": "YulIdentifier",
"src": "21463:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nativeSrc": "21337:124:1",
"nodeType": "YulIdentifier",
"src": "21337:124:1"
},
"nativeSrc": "21337:131:1",
"nodeType": "YulFunctionCall",
"src": "21337:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "21329:4:1",
"nodeType": "YulIdentifier",
"src": "21329:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "21056:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "21207:9:1",
"nodeType": "YulTypedName",
"src": "21207:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "21222:4:1",
"nodeType": "YulTypedName",
"src": "21222:4:1",
"type": ""
}
],
"src": "21056:419:1"
},
{
"body": {
"nativeSrc": "21587:75:1",
"nodeType": "YulBlock",
"src": "21587:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "21609:6:1",
"nodeType": "YulIdentifier",
"src": "21609:6:1"
},
{
"kind": "number",
"nativeSrc": "21617:1:1",
"nodeType": "YulLiteral",
"src": "21617:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "21605:3:1",
"nodeType": "YulIdentifier",
"src": "21605:3:1"
},
"nativeSrc": "21605:14:1",
"nodeType": "YulFunctionCall",
"src": "21605:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b696e6720697320706175736564",
"kind": "string",
"nativeSrc": "21621:33:1",
"nodeType": "YulLiteral",
"src": "21621:33:1",
"type": "",
"value": "TokenStaking: staking is paused"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "21598:6:1",
"nodeType": "YulIdentifier",
"src": "21598:6:1"
},
"nativeSrc": "21598:57:1",
"nodeType": "YulFunctionCall",
"src": "21598:57:1"
},
"nativeSrc": "21598:57:1",
"nodeType": "YulExpressionStatement",
"src": "21598:57:1"
}
]
},
"name": "store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d",
"nativeSrc": "21481:181:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "21579:6:1",
"nodeType": "YulTypedName",
"src": "21579:6:1",
"type": ""
}
],
"src": "21481:181:1"
},
{
"body": {
"nativeSrc": "21814:220:1",
"nodeType": "YulBlock",
"src": "21814:220:1",
"statements": [
{
"nativeSrc": "21824:74:1",
"nodeType": "YulAssignment",
"src": "21824:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "21890:3:1",
"nodeType": "YulIdentifier",
"src": "21890:3:1"
},
{
"kind": "number",
"nativeSrc": "21895:2:1",
"nodeType": "YulLiteral",
"src": "21895:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "21831:58:1",
"nodeType": "YulIdentifier",
"src": "21831:58:1"
},
"nativeSrc": "21831:67:1",
"nodeType": "YulFunctionCall",
"src": "21831:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "21824:3:1",
"nodeType": "YulIdentifier",
"src": "21824:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "21996:3:1",
"nodeType": "YulIdentifier",
"src": "21996:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d",
"nativeSrc": "21907:88:1",
"nodeType": "YulIdentifier",
"src": "21907:88:1"
},
"nativeSrc": "21907:93:1",
"nodeType": "YulFunctionCall",
"src": "21907:93:1"
},
"nativeSrc": "21907:93:1",
"nodeType": "YulExpressionStatement",
"src": "21907:93:1"
},
{
"nativeSrc": "22009:19:1",
"nodeType": "YulAssignment",
"src": "22009:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "22020:3:1",
"nodeType": "YulIdentifier",
"src": "22020:3:1"
},
{
"kind": "number",
"nativeSrc": "22025:2:1",
"nodeType": "YulLiteral",
"src": "22025:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "22016:3:1",
"nodeType": "YulIdentifier",
"src": "22016:3:1"
},
"nativeSrc": "22016:12:1",
"nodeType": "YulFunctionCall",
"src": "22016:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "22009:3:1",
"nodeType": "YulIdentifier",
"src": "22009:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "21668:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "21802:3:1",
"nodeType": "YulTypedName",
"src": "21802:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "21810:3:1",
"nodeType": "YulTypedName",
"src": "21810:3:1",
"type": ""
}
],
"src": "21668:366:1"
},
{
"body": {
"nativeSrc": "22211:248:1",
"nodeType": "YulBlock",
"src": "22211:248:1",
"statements": [
{
"nativeSrc": "22221:26:1",
"nodeType": "YulAssignment",
"src": "22221:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "22233:9:1",
"nodeType": "YulIdentifier",
"src": "22233:9:1"
},
{
"kind": "number",
"nativeSrc": "22244:2:1",
"nodeType": "YulLiteral",
"src": "22244:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "22229:3:1",
"nodeType": "YulIdentifier",
"src": "22229:3:1"
},
"nativeSrc": "22229:18:1",
"nodeType": "YulFunctionCall",
"src": "22229:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "22221:4:1",
"nodeType": "YulIdentifier",
"src": "22221:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "22268:9:1",
"nodeType": "YulIdentifier",
"src": "22268:9:1"
},
{
"kind": "number",
"nativeSrc": "22279:1:1",
"nodeType": "YulLiteral",
"src": "22279:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "22264:3:1",
"nodeType": "YulIdentifier",
"src": "22264:3:1"
},
"nativeSrc": "22264:17:1",
"nodeType": "YulFunctionCall",
"src": "22264:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "22287:4:1",
"nodeType": "YulIdentifier",
"src": "22287:4:1"
},
{
"name": "headStart",
"nativeSrc": "22293:9:1",
"nodeType": "YulIdentifier",
"src": "22293:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "22283:3:1",
"nodeType": "YulIdentifier",
"src": "22283:3:1"
},
"nativeSrc": "22283:20:1",
"nodeType": "YulFunctionCall",
"src": "22283:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "22257:6:1",
"nodeType": "YulIdentifier",
"src": "22257:6:1"
},
"nativeSrc": "22257:47:1",
"nodeType": "YulFunctionCall",
"src": "22257:47:1"
},
"nativeSrc": "22257:47:1",
"nodeType": "YulExpressionStatement",
"src": "22257:47:1"
},
{
"nativeSrc": "22313:139:1",
"nodeType": "YulAssignment",
"src": "22313:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "22447:4:1",
"nodeType": "YulIdentifier",
"src": "22447:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "22321:124:1",
"nodeType": "YulIdentifier",
"src": "22321:124:1"
},
"nativeSrc": "22321:131:1",
"nodeType": "YulFunctionCall",
"src": "22321:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "22313:4:1",
"nodeType": "YulIdentifier",
"src": "22313:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "22040:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "22191:9:1",
"nodeType": "YulTypedName",
"src": "22191:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "22206:4:1",
"nodeType": "YulTypedName",
"src": "22206:4:1",
"type": ""
}
],
"src": "22040:419:1"
},
{
"body": {
"nativeSrc": "22571:118:1",
"nodeType": "YulBlock",
"src": "22571:118:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "22593:6:1",
"nodeType": "YulIdentifier",
"src": "22593:6:1"
},
{
"kind": "number",
"nativeSrc": "22601:1:1",
"nodeType": "YulLiteral",
"src": "22601:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "22589:3:1",
"nodeType": "YulIdentifier",
"src": "22589:3:1"
},
"nativeSrc": "22589:14:1",
"nodeType": "YulFunctionCall",
"src": "22589:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b696e67206e6f7420737461727465",
"kind": "string",
"nativeSrc": "22605:34:1",
"nodeType": "YulLiteral",
"src": "22605:34:1",
"type": "",
"value": "TokenStaking: staking not starte"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "22582:6:1",
"nodeType": "YulIdentifier",
"src": "22582:6:1"
},
"nativeSrc": "22582:58:1",
"nodeType": "YulFunctionCall",
"src": "22582:58:1"
},
"nativeSrc": "22582:58:1",
"nodeType": "YulExpressionStatement",
"src": "22582:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "22661:6:1",
"nodeType": "YulIdentifier",
"src": "22661:6:1"
},
{
"kind": "number",
"nativeSrc": "22669:2:1",
"nodeType": "YulLiteral",
"src": "22669:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "22657:3:1",
"nodeType": "YulIdentifier",
"src": "22657:3:1"
},
"nativeSrc": "22657:15:1",
"nodeType": "YulFunctionCall",
"src": "22657:15:1"
},
{
"hexValue": "6420796574",
"kind": "string",
"nativeSrc": "22674:7:1",
"nodeType": "YulLiteral",
"src": "22674:7:1",
"type": "",
"value": "d yet"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "22650:6:1",
"nodeType": "YulIdentifier",
"src": "22650:6:1"
},
"nativeSrc": "22650:32:1",
"nodeType": "YulFunctionCall",
"src": "22650:32:1"
},
"nativeSrc": "22650:32:1",
"nodeType": "YulExpressionStatement",
"src": "22650:32:1"
}
]
},
"name": "store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce",
"nativeSrc": "22465:224:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "22563:6:1",
"nodeType": "YulTypedName",
"src": "22563:6:1",
"type": ""
}
],
"src": "22465:224:1"
},
{
"body": {
"nativeSrc": "22841:220:1",
"nodeType": "YulBlock",
"src": "22841:220:1",
"statements": [
{
"nativeSrc": "22851:74:1",
"nodeType": "YulAssignment",
"src": "22851:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "22917:3:1",
"nodeType": "YulIdentifier",
"src": "22917:3:1"
},
{
"kind": "number",
"nativeSrc": "22922:2:1",
"nodeType": "YulLiteral",
"src": "22922:2:1",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "22858:58:1",
"nodeType": "YulIdentifier",
"src": "22858:58:1"
},
"nativeSrc": "22858:67:1",
"nodeType": "YulFunctionCall",
"src": "22858:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "22851:3:1",
"nodeType": "YulIdentifier",
"src": "22851:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "23023:3:1",
"nodeType": "YulIdentifier",
"src": "23023:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce",
"nativeSrc": "22934:88:1",
"nodeType": "YulIdentifier",
"src": "22934:88:1"
},
"nativeSrc": "22934:93:1",
"nodeType": "YulFunctionCall",
"src": "22934:93:1"
},
"nativeSrc": "22934:93:1",
"nodeType": "YulExpressionStatement",
"src": "22934:93:1"
},
{
"nativeSrc": "23036:19:1",
"nodeType": "YulAssignment",
"src": "23036:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "23047:3:1",
"nodeType": "YulIdentifier",
"src": "23047:3:1"
},
{
"kind": "number",
"nativeSrc": "23052:2:1",
"nodeType": "YulLiteral",
"src": "23052:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "23043:3:1",
"nodeType": "YulIdentifier",
"src": "23043:3:1"
},
"nativeSrc": "23043:12:1",
"nodeType": "YulFunctionCall",
"src": "23043:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "23036:3:1",
"nodeType": "YulIdentifier",
"src": "23036:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack",
"nativeSrc": "22695:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "22829:3:1",
"nodeType": "YulTypedName",
"src": "22829:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "22837:3:1",
"nodeType": "YulTypedName",
"src": "22837:3:1",
"type": ""
}
],
"src": "22695:366:1"
},
{
"body": {
"nativeSrc": "23238:248:1",
"nodeType": "YulBlock",
"src": "23238:248:1",
"statements": [
{
"nativeSrc": "23248:26:1",
"nodeType": "YulAssignment",
"src": "23248:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "23260:9:1",
"nodeType": "YulIdentifier",
"src": "23260:9:1"
},
{
"kind": "number",
"nativeSrc": "23271:2:1",
"nodeType": "YulLiteral",
"src": "23271:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "23256:3:1",
"nodeType": "YulIdentifier",
"src": "23256:3:1"
},
"nativeSrc": "23256:18:1",
"nodeType": "YulFunctionCall",
"src": "23256:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "23248:4:1",
"nodeType": "YulIdentifier",
"src": "23248:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "23295:9:1",
"nodeType": "YulIdentifier",
"src": "23295:9:1"
},
{
"kind": "number",
"nativeSrc": "23306:1:1",
"nodeType": "YulLiteral",
"src": "23306:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "23291:3:1",
"nodeType": "YulIdentifier",
"src": "23291:3:1"
},
"nativeSrc": "23291:17:1",
"nodeType": "YulFunctionCall",
"src": "23291:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "23314:4:1",
"nodeType": "YulIdentifier",
"src": "23314:4:1"
},
{
"name": "headStart",
"nativeSrc": "23320:9:1",
"nodeType": "YulIdentifier",
"src": "23320:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "23310:3:1",
"nodeType": "YulIdentifier",
"src": "23310:3:1"
},
"nativeSrc": "23310:20:1",
"nodeType": "YulFunctionCall",
"src": "23310:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "23284:6:1",
"nodeType": "YulIdentifier",
"src": "23284:6:1"
},
"nativeSrc": "23284:47:1",
"nodeType": "YulFunctionCall",
"src": "23284:47:1"
},
"nativeSrc": "23284:47:1",
"nodeType": "YulExpressionStatement",
"src": "23284:47:1"
},
{
"nativeSrc": "23340:139:1",
"nodeType": "YulAssignment",
"src": "23340:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "23474:4:1",
"nodeType": "YulIdentifier",
"src": "23474:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack",
"nativeSrc": "23348:124:1",
"nodeType": "YulIdentifier",
"src": "23348:124:1"
},
"nativeSrc": "23348:131:1",
"nodeType": "YulFunctionCall",
"src": "23348:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "23340:4:1",
"nodeType": "YulIdentifier",
"src": "23340:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "23067:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "23218:9:1",
"nodeType": "YulTypedName",
"src": "23218:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "23233:4:1",
"nodeType": "YulTypedName",
"src": "23233:4:1",
"type": ""
}
],
"src": "23067:419:1"
},
{
"body": {
"nativeSrc": "23598:71:1",
"nodeType": "YulBlock",
"src": "23598:71:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "23620:6:1",
"nodeType": "YulIdentifier",
"src": "23620:6:1"
},
{
"kind": "number",
"nativeSrc": "23628:1:1",
"nodeType": "YulLiteral",
"src": "23628:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "23616:3:1",
"nodeType": "YulIdentifier",
"src": "23616:3:1"
},
"nativeSrc": "23616:14:1",
"nodeType": "YulFunctionCall",
"src": "23616:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b696e6720656e646564",
"kind": "string",
"nativeSrc": "23632:29:1",
"nodeType": "YulLiteral",
"src": "23632:29:1",
"type": "",
"value": "TokenStaking: staking ended"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "23609:6:1",
"nodeType": "YulIdentifier",
"src": "23609:6:1"
},
"nativeSrc": "23609:53:1",
"nodeType": "YulFunctionCall",
"src": "23609:53:1"
},
"nativeSrc": "23609:53:1",
"nodeType": "YulExpressionStatement",
"src": "23609:53:1"
}
]
},
"name": "store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec",
"nativeSrc": "23492:177:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "23590:6:1",
"nodeType": "YulTypedName",
"src": "23590:6:1",
"type": ""
}
],
"src": "23492:177:1"
},
{
"body": {
"nativeSrc": "23821:220:1",
"nodeType": "YulBlock",
"src": "23821:220:1",
"statements": [
{
"nativeSrc": "23831:74:1",
"nodeType": "YulAssignment",
"src": "23831:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "23897:3:1",
"nodeType": "YulIdentifier",
"src": "23897:3:1"
},
{
"kind": "number",
"nativeSrc": "23902:2:1",
"nodeType": "YulLiteral",
"src": "23902:2:1",
"type": "",
"value": "27"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "23838:58:1",
"nodeType": "YulIdentifier",
"src": "23838:58:1"
},
"nativeSrc": "23838:67:1",
"nodeType": "YulFunctionCall",
"src": "23838:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "23831:3:1",
"nodeType": "YulIdentifier",
"src": "23831:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "24003:3:1",
"nodeType": "YulIdentifier",
"src": "24003:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec",
"nativeSrc": "23914:88:1",
"nodeType": "YulIdentifier",
"src": "23914:88:1"
},
"nativeSrc": "23914:93:1",
"nodeType": "YulFunctionCall",
"src": "23914:93:1"
},
"nativeSrc": "23914:93:1",
"nodeType": "YulExpressionStatement",
"src": "23914:93:1"
},
{
"nativeSrc": "24016:19:1",
"nodeType": "YulAssignment",
"src": "24016:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "24027:3:1",
"nodeType": "YulIdentifier",
"src": "24027:3:1"
},
{
"kind": "number",
"nativeSrc": "24032:2:1",
"nodeType": "YulLiteral",
"src": "24032:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "24023:3:1",
"nodeType": "YulIdentifier",
"src": "24023:3:1"
},
"nativeSrc": "24023:12:1",
"nodeType": "YulFunctionCall",
"src": "24023:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "24016:3:1",
"nodeType": "YulIdentifier",
"src": "24016:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack",
"nativeSrc": "23675:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "23809:3:1",
"nodeType": "YulTypedName",
"src": "23809:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "23817:3:1",
"nodeType": "YulTypedName",
"src": "23817:3:1",
"type": ""
}
],
"src": "23675:366:1"
},
{
"body": {
"nativeSrc": "24218:248:1",
"nodeType": "YulBlock",
"src": "24218:248:1",
"statements": [
{
"nativeSrc": "24228:26:1",
"nodeType": "YulAssignment",
"src": "24228:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "24240:9:1",
"nodeType": "YulIdentifier",
"src": "24240:9:1"
},
{
"kind": "number",
"nativeSrc": "24251:2:1",
"nodeType": "YulLiteral",
"src": "24251:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "24236:3:1",
"nodeType": "YulIdentifier",
"src": "24236:3:1"
},
"nativeSrc": "24236:18:1",
"nodeType": "YulFunctionCall",
"src": "24236:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "24228:4:1",
"nodeType": "YulIdentifier",
"src": "24228:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "24275:9:1",
"nodeType": "YulIdentifier",
"src": "24275:9:1"
},
{
"kind": "number",
"nativeSrc": "24286:1:1",
"nodeType": "YulLiteral",
"src": "24286:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "24271:3:1",
"nodeType": "YulIdentifier",
"src": "24271:3:1"
},
"nativeSrc": "24271:17:1",
"nodeType": "YulFunctionCall",
"src": "24271:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "24294:4:1",
"nodeType": "YulIdentifier",
"src": "24294:4:1"
},
{
"name": "headStart",
"nativeSrc": "24300:9:1",
"nodeType": "YulIdentifier",
"src": "24300:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "24290:3:1",
"nodeType": "YulIdentifier",
"src": "24290:3:1"
},
"nativeSrc": "24290:20:1",
"nodeType": "YulFunctionCall",
"src": "24290:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "24264:6:1",
"nodeType": "YulIdentifier",
"src": "24264:6:1"
},
"nativeSrc": "24264:47:1",
"nodeType": "YulFunctionCall",
"src": "24264:47:1"
},
"nativeSrc": "24264:47:1",
"nodeType": "YulExpressionStatement",
"src": "24264:47:1"
},
{
"nativeSrc": "24320:139:1",
"nodeType": "YulAssignment",
"src": "24320:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "24454:4:1",
"nodeType": "YulIdentifier",
"src": "24454:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack",
"nativeSrc": "24328:124:1",
"nodeType": "YulIdentifier",
"src": "24328:124:1"
},
"nativeSrc": "24328:131:1",
"nodeType": "YulFunctionCall",
"src": "24328:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "24320:4:1",
"nodeType": "YulIdentifier",
"src": "24320:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "24047:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "24198:9:1",
"nodeType": "YulTypedName",
"src": "24198:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "24213:4:1",
"nodeType": "YulTypedName",
"src": "24213:4:1",
"type": ""
}
],
"src": "24047:419:1"
},
{
"body": {
"nativeSrc": "24578:126:1",
"nodeType": "YulBlock",
"src": "24578:126:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "24600:6:1",
"nodeType": "YulIdentifier",
"src": "24600:6:1"
},
{
"kind": "number",
"nativeSrc": "24608:1:1",
"nodeType": "YulLiteral",
"src": "24608:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "24596:3:1",
"nodeType": "YulIdentifier",
"src": "24596:3:1"
},
"nativeSrc": "24596:14:1",
"nodeType": "YulFunctionCall",
"src": "24596:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206d6178207374616b696e6720746f6b656e20",
"kind": "string",
"nativeSrc": "24612:34:1",
"nodeType": "YulLiteral",
"src": "24612:34:1",
"type": "",
"value": "TokenStaking: max staking token "
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "24589:6:1",
"nodeType": "YulIdentifier",
"src": "24589:6:1"
},
"nativeSrc": "24589:58:1",
"nodeType": "YulFunctionCall",
"src": "24589:58:1"
},
"nativeSrc": "24589:58:1",
"nodeType": "YulExpressionStatement",
"src": "24589:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "24668:6:1",
"nodeType": "YulIdentifier",
"src": "24668:6:1"
},
{
"kind": "number",
"nativeSrc": "24676:2:1",
"nodeType": "YulLiteral",
"src": "24676:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "24664:3:1",
"nodeType": "YulIdentifier",
"src": "24664:3:1"
},
"nativeSrc": "24664:15:1",
"nodeType": "YulFunctionCall",
"src": "24664:15:1"
},
{
"hexValue": "6c696d69742072656163686564",
"kind": "string",
"nativeSrc": "24681:15:1",
"nodeType": "YulLiteral",
"src": "24681:15:1",
"type": "",
"value": "limit reached"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "24657:6:1",
"nodeType": "YulIdentifier",
"src": "24657:6:1"
},
"nativeSrc": "24657:40:1",
"nodeType": "YulFunctionCall",
"src": "24657:40:1"
},
"nativeSrc": "24657:40:1",
"nodeType": "YulExpressionStatement",
"src": "24657:40:1"
}
]
},
"name": "store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464",
"nativeSrc": "24472:232:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "24570:6:1",
"nodeType": "YulTypedName",
"src": "24570:6:1",
"type": ""
}
],
"src": "24472:232:1"
},
{
"body": {
"nativeSrc": "24856:220:1",
"nodeType": "YulBlock",
"src": "24856:220:1",
"statements": [
{
"nativeSrc": "24866:74:1",
"nodeType": "YulAssignment",
"src": "24866:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "24932:3:1",
"nodeType": "YulIdentifier",
"src": "24932:3:1"
},
{
"kind": "number",
"nativeSrc": "24937:2:1",
"nodeType": "YulLiteral",
"src": "24937:2:1",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "24873:58:1",
"nodeType": "YulIdentifier",
"src": "24873:58:1"
},
"nativeSrc": "24873:67:1",
"nodeType": "YulFunctionCall",
"src": "24873:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "24866:3:1",
"nodeType": "YulIdentifier",
"src": "24866:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "25038:3:1",
"nodeType": "YulIdentifier",
"src": "25038:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464",
"nativeSrc": "24949:88:1",
"nodeType": "YulIdentifier",
"src": "24949:88:1"
},
"nativeSrc": "24949:93:1",
"nodeType": "YulFunctionCall",
"src": "24949:93:1"
},
"nativeSrc": "24949:93:1",
"nodeType": "YulExpressionStatement",
"src": "24949:93:1"
},
{
"nativeSrc": "25051:19:1",
"nodeType": "YulAssignment",
"src": "25051:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "25062:3:1",
"nodeType": "YulIdentifier",
"src": "25062:3:1"
},
{
"kind": "number",
"nativeSrc": "25067:2:1",
"nodeType": "YulLiteral",
"src": "25067:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "25058:3:1",
"nodeType": "YulIdentifier",
"src": "25058:3:1"
},
"nativeSrc": "25058:12:1",
"nodeType": "YulFunctionCall",
"src": "25058:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "25051:3:1",
"nodeType": "YulIdentifier",
"src": "25051:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack",
"nativeSrc": "24710:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "24844:3:1",
"nodeType": "YulTypedName",
"src": "24844:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "24852:3:1",
"nodeType": "YulTypedName",
"src": "24852:3:1",
"type": ""
}
],
"src": "24710:366:1"
},
{
"body": {
"nativeSrc": "25253:248:1",
"nodeType": "YulBlock",
"src": "25253:248:1",
"statements": [
{
"nativeSrc": "25263:26:1",
"nodeType": "YulAssignment",
"src": "25263:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "25275:9:1",
"nodeType": "YulIdentifier",
"src": "25275:9:1"
},
{
"kind": "number",
"nativeSrc": "25286:2:1",
"nodeType": "YulLiteral",
"src": "25286:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "25271:3:1",
"nodeType": "YulIdentifier",
"src": "25271:3:1"
},
"nativeSrc": "25271:18:1",
"nodeType": "YulFunctionCall",
"src": "25271:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "25263:4:1",
"nodeType": "YulIdentifier",
"src": "25263:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "25310:9:1",
"nodeType": "YulIdentifier",
"src": "25310:9:1"
},
{
"kind": "number",
"nativeSrc": "25321:1:1",
"nodeType": "YulLiteral",
"src": "25321:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "25306:3:1",
"nodeType": "YulIdentifier",
"src": "25306:3:1"
},
"nativeSrc": "25306:17:1",
"nodeType": "YulFunctionCall",
"src": "25306:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "25329:4:1",
"nodeType": "YulIdentifier",
"src": "25329:4:1"
},
{
"name": "headStart",
"nativeSrc": "25335:9:1",
"nodeType": "YulIdentifier",
"src": "25335:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "25325:3:1",
"nodeType": "YulIdentifier",
"src": "25325:3:1"
},
"nativeSrc": "25325:20:1",
"nodeType": "YulFunctionCall",
"src": "25325:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "25299:6:1",
"nodeType": "YulIdentifier",
"src": "25299:6:1"
},
"nativeSrc": "25299:47:1",
"nodeType": "YulFunctionCall",
"src": "25299:47:1"
},
"nativeSrc": "25299:47:1",
"nodeType": "YulExpressionStatement",
"src": "25299:47:1"
},
{
"nativeSrc": "25355:139:1",
"nodeType": "YulAssignment",
"src": "25355:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "25489:4:1",
"nodeType": "YulIdentifier",
"src": "25489:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack",
"nativeSrc": "25363:124:1",
"nodeType": "YulIdentifier",
"src": "25363:124:1"
},
"nativeSrc": "25363:131:1",
"nodeType": "YulFunctionCall",
"src": "25363:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "25355:4:1",
"nodeType": "YulIdentifier",
"src": "25355:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "25082:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "25233:9:1",
"nodeType": "YulTypedName",
"src": "25233:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "25248:4:1",
"nodeType": "YulTypedName",
"src": "25248:4:1",
"type": ""
}
],
"src": "25082:419:1"
},
{
"body": {
"nativeSrc": "25613:124:1",
"nodeType": "YulBlock",
"src": "25613:124:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "25635:6:1",
"nodeType": "YulIdentifier",
"src": "25635:6:1"
},
{
"kind": "number",
"nativeSrc": "25643:1:1",
"nodeType": "YulLiteral",
"src": "25643:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "25631:3:1",
"nodeType": "YulIdentifier",
"src": "25631:3:1"
},
"nativeSrc": "25631:14:1",
"nodeType": "YulFunctionCall",
"src": "25631:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b6520616d6f756e74206d75737420",
"kind": "string",
"nativeSrc": "25647:34:1",
"nodeType": "YulLiteral",
"src": "25647:34:1",
"type": "",
"value": "TokenStaking: stake amount must "
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "25624:6:1",
"nodeType": "YulIdentifier",
"src": "25624:6:1"
},
"nativeSrc": "25624:58:1",
"nodeType": "YulFunctionCall",
"src": "25624:58:1"
},
"nativeSrc": "25624:58:1",
"nodeType": "YulExpressionStatement",
"src": "25624:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "25703:6:1",
"nodeType": "YulIdentifier",
"src": "25703:6:1"
},
{
"kind": "number",
"nativeSrc": "25711:2:1",
"nodeType": "YulLiteral",
"src": "25711:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "25699:3:1",
"nodeType": "YulIdentifier",
"src": "25699:3:1"
},
"nativeSrc": "25699:15:1",
"nodeType": "YulFunctionCall",
"src": "25699:15:1"
},
{
"hexValue": "6265206e6f6e2d7a65726f",
"kind": "string",
"nativeSrc": "25716:13:1",
"nodeType": "YulLiteral",
"src": "25716:13:1",
"type": "",
"value": "be non-zero"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "25692:6:1",
"nodeType": "YulIdentifier",
"src": "25692:6:1"
},
"nativeSrc": "25692:38:1",
"nodeType": "YulFunctionCall",
"src": "25692:38:1"
},
"nativeSrc": "25692:38:1",
"nodeType": "YulExpressionStatement",
"src": "25692:38:1"
}
]
},
"name": "store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78",
"nativeSrc": "25507:230:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "25605:6:1",
"nodeType": "YulTypedName",
"src": "25605:6:1",
"type": ""
}
],
"src": "25507:230:1"
},
{
"body": {
"nativeSrc": "25889:220:1",
"nodeType": "YulBlock",
"src": "25889:220:1",
"statements": [
{
"nativeSrc": "25899:74:1",
"nodeType": "YulAssignment",
"src": "25899:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "25965:3:1",
"nodeType": "YulIdentifier",
"src": "25965:3:1"
},
{
"kind": "number",
"nativeSrc": "25970:2:1",
"nodeType": "YulLiteral",
"src": "25970:2:1",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "25906:58:1",
"nodeType": "YulIdentifier",
"src": "25906:58:1"
},
"nativeSrc": "25906:67:1",
"nodeType": "YulFunctionCall",
"src": "25906:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "25899:3:1",
"nodeType": "YulIdentifier",
"src": "25899:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "26071:3:1",
"nodeType": "YulIdentifier",
"src": "26071:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78",
"nativeSrc": "25982:88:1",
"nodeType": "YulIdentifier",
"src": "25982:88:1"
},
"nativeSrc": "25982:93:1",
"nodeType": "YulFunctionCall",
"src": "25982:93:1"
},
"nativeSrc": "25982:93:1",
"nodeType": "YulExpressionStatement",
"src": "25982:93:1"
},
{
"nativeSrc": "26084:19:1",
"nodeType": "YulAssignment",
"src": "26084:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "26095:3:1",
"nodeType": "YulIdentifier",
"src": "26095:3:1"
},
{
"kind": "number",
"nativeSrc": "26100:2:1",
"nodeType": "YulLiteral",
"src": "26100:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "26091:3:1",
"nodeType": "YulIdentifier",
"src": "26091:3:1"
},
"nativeSrc": "26091:12:1",
"nodeType": "YulFunctionCall",
"src": "26091:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "26084:3:1",
"nodeType": "YulIdentifier",
"src": "26084:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack",
"nativeSrc": "25743:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "25877:3:1",
"nodeType": "YulTypedName",
"src": "25877:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "25885:3:1",
"nodeType": "YulTypedName",
"src": "25885:3:1",
"type": ""
}
],
"src": "25743:366:1"
},
{
"body": {
"nativeSrc": "26286:248:1",
"nodeType": "YulBlock",
"src": "26286:248:1",
"statements": [
{
"nativeSrc": "26296:26:1",
"nodeType": "YulAssignment",
"src": "26296:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "26308:9:1",
"nodeType": "YulIdentifier",
"src": "26308:9:1"
},
{
"kind": "number",
"nativeSrc": "26319:2:1",
"nodeType": "YulLiteral",
"src": "26319:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "26304:3:1",
"nodeType": "YulIdentifier",
"src": "26304:3:1"
},
"nativeSrc": "26304:18:1",
"nodeType": "YulFunctionCall",
"src": "26304:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "26296:4:1",
"nodeType": "YulIdentifier",
"src": "26296:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "26343:9:1",
"nodeType": "YulIdentifier",
"src": "26343:9:1"
},
{
"kind": "number",
"nativeSrc": "26354:1:1",
"nodeType": "YulLiteral",
"src": "26354:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "26339:3:1",
"nodeType": "YulIdentifier",
"src": "26339:3:1"
},
"nativeSrc": "26339:17:1",
"nodeType": "YulFunctionCall",
"src": "26339:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "26362:4:1",
"nodeType": "YulIdentifier",
"src": "26362:4:1"
},
{
"name": "headStart",
"nativeSrc": "26368:9:1",
"nodeType": "YulIdentifier",
"src": "26368:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "26358:3:1",
"nodeType": "YulIdentifier",
"src": "26358:3:1"
},
"nativeSrc": "26358:20:1",
"nodeType": "YulFunctionCall",
"src": "26358:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "26332:6:1",
"nodeType": "YulIdentifier",
"src": "26332:6:1"
},
"nativeSrc": "26332:47:1",
"nodeType": "YulFunctionCall",
"src": "26332:47:1"
},
"nativeSrc": "26332:47:1",
"nodeType": "YulExpressionStatement",
"src": "26332:47:1"
},
{
"nativeSrc": "26388:139:1",
"nodeType": "YulAssignment",
"src": "26388:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "26522:4:1",
"nodeType": "YulIdentifier",
"src": "26522:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack",
"nativeSrc": "26396:124:1",
"nodeType": "YulIdentifier",
"src": "26396:124:1"
},
"nativeSrc": "26396:131:1",
"nodeType": "YulFunctionCall",
"src": "26396:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "26388:4:1",
"nodeType": "YulIdentifier",
"src": "26388:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "26115:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "26266:9:1",
"nodeType": "YulTypedName",
"src": "26266:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "26281:4:1",
"nodeType": "YulTypedName",
"src": "26281:4:1",
"type": ""
}
],
"src": "26115:419:1"
},
{
"body": {
"nativeSrc": "26646:185:1",
"nodeType": "YulBlock",
"src": "26646:185:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "26668:6:1",
"nodeType": "YulIdentifier",
"src": "26668:6:1"
},
{
"kind": "number",
"nativeSrc": "26676:1:1",
"nodeType": "YulLiteral",
"src": "26676:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "26664:3:1",
"nodeType": "YulIdentifier",
"src": "26664:3:1"
},
"nativeSrc": "26664:14:1",
"nodeType": "YulFunctionCall",
"src": "26664:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b6520616d6f756e74206d75737420",
"kind": "string",
"nativeSrc": "26680:34:1",
"nodeType": "YulLiteral",
"src": "26680:34:1",
"type": "",
"value": "TokenStaking: stake amount must "
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "26657:6:1",
"nodeType": "YulIdentifier",
"src": "26657:6:1"
},
"nativeSrc": "26657:58:1",
"nodeType": "YulFunctionCall",
"src": "26657:58:1"
},
"nativeSrc": "26657:58:1",
"nodeType": "YulExpressionStatement",
"src": "26657:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "26736:6:1",
"nodeType": "YulIdentifier",
"src": "26736:6:1"
},
{
"kind": "number",
"nativeSrc": "26744:2:1",
"nodeType": "YulLiteral",
"src": "26744:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "26732:3:1",
"nodeType": "YulIdentifier",
"src": "26732:3:1"
},
"nativeSrc": "26732:15:1",
"nodeType": "YulFunctionCall",
"src": "26732:15:1"
},
{
"hexValue": "67726561746572207468616e206d696e696d756d20616d6f756e7420616c6c6f",
"kind": "string",
"nativeSrc": "26749:34:1",
"nodeType": "YulLiteral",
"src": "26749:34:1",
"type": "",
"value": "greater than minimum amount allo"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "26725:6:1",
"nodeType": "YulIdentifier",
"src": "26725:6:1"
},
"nativeSrc": "26725:59:1",
"nodeType": "YulFunctionCall",
"src": "26725:59:1"
},
"nativeSrc": "26725:59:1",
"nodeType": "YulExpressionStatement",
"src": "26725:59:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "26805:6:1",
"nodeType": "YulIdentifier",
"src": "26805:6:1"
},
{
"kind": "number",
"nativeSrc": "26813:2:1",
"nodeType": "YulLiteral",
"src": "26813:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "26801:3:1",
"nodeType": "YulIdentifier",
"src": "26801:3:1"
},
"nativeSrc": "26801:15:1",
"nodeType": "YulFunctionCall",
"src": "26801:15:1"
},
{
"hexValue": "776564",
"kind": "string",
"nativeSrc": "26818:5:1",
"nodeType": "YulLiteral",
"src": "26818:5:1",
"type": "",
"value": "wed"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "26794:6:1",
"nodeType": "YulIdentifier",
"src": "26794:6:1"
},
"nativeSrc": "26794:30:1",
"nodeType": "YulFunctionCall",
"src": "26794:30:1"
},
"nativeSrc": "26794:30:1",
"nodeType": "YulExpressionStatement",
"src": "26794:30:1"
}
]
},
"name": "store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd",
"nativeSrc": "26540:291:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "26638:6:1",
"nodeType": "YulTypedName",
"src": "26638:6:1",
"type": ""
}
],
"src": "26540:291:1"
},
{
"body": {
"nativeSrc": "26983:220:1",
"nodeType": "YulBlock",
"src": "26983:220:1",
"statements": [
{
"nativeSrc": "26993:74:1",
"nodeType": "YulAssignment",
"src": "26993:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "27059:3:1",
"nodeType": "YulIdentifier",
"src": "27059:3:1"
},
{
"kind": "number",
"nativeSrc": "27064:2:1",
"nodeType": "YulLiteral",
"src": "27064:2:1",
"type": "",
"value": "67"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "27000:58:1",
"nodeType": "YulIdentifier",
"src": "27000:58:1"
},
"nativeSrc": "27000:67:1",
"nodeType": "YulFunctionCall",
"src": "27000:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "26993:3:1",
"nodeType": "YulIdentifier",
"src": "26993:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "27165:3:1",
"nodeType": "YulIdentifier",
"src": "27165:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd",
"nativeSrc": "27076:88:1",
"nodeType": "YulIdentifier",
"src": "27076:88:1"
},
"nativeSrc": "27076:93:1",
"nodeType": "YulFunctionCall",
"src": "27076:93:1"
},
"nativeSrc": "27076:93:1",
"nodeType": "YulExpressionStatement",
"src": "27076:93:1"
},
{
"nativeSrc": "27178:19:1",
"nodeType": "YulAssignment",
"src": "27178:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "27189:3:1",
"nodeType": "YulIdentifier",
"src": "27189:3:1"
},
{
"kind": "number",
"nativeSrc": "27194:2:1",
"nodeType": "YulLiteral",
"src": "27194:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "27185:3:1",
"nodeType": "YulIdentifier",
"src": "27185:3:1"
},
"nativeSrc": "27185:12:1",
"nodeType": "YulFunctionCall",
"src": "27185:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "27178:3:1",
"nodeType": "YulIdentifier",
"src": "27178:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack",
"nativeSrc": "26837:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "26971:3:1",
"nodeType": "YulTypedName",
"src": "26971:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "26979:3:1",
"nodeType": "YulTypedName",
"src": "26979:3:1",
"type": ""
}
],
"src": "26837:366:1"
},
{
"body": {
"nativeSrc": "27380:248:1",
"nodeType": "YulBlock",
"src": "27380:248:1",
"statements": [
{
"nativeSrc": "27390:26:1",
"nodeType": "YulAssignment",
"src": "27390:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "27402:9:1",
"nodeType": "YulIdentifier",
"src": "27402:9:1"
},
{
"kind": "number",
"nativeSrc": "27413:2:1",
"nodeType": "YulLiteral",
"src": "27413:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "27398:3:1",
"nodeType": "YulIdentifier",
"src": "27398:3:1"
},
"nativeSrc": "27398:18:1",
"nodeType": "YulFunctionCall",
"src": "27398:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "27390:4:1",
"nodeType": "YulIdentifier",
"src": "27390:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "27437:9:1",
"nodeType": "YulIdentifier",
"src": "27437:9:1"
},
{
"kind": "number",
"nativeSrc": "27448:1:1",
"nodeType": "YulLiteral",
"src": "27448:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "27433:3:1",
"nodeType": "YulIdentifier",
"src": "27433:3:1"
},
"nativeSrc": "27433:17:1",
"nodeType": "YulFunctionCall",
"src": "27433:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "27456:4:1",
"nodeType": "YulIdentifier",
"src": "27456:4:1"
},
{
"name": "headStart",
"nativeSrc": "27462:9:1",
"nodeType": "YulIdentifier",
"src": "27462:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "27452:3:1",
"nodeType": "YulIdentifier",
"src": "27452:3:1"
},
"nativeSrc": "27452:20:1",
"nodeType": "YulFunctionCall",
"src": "27452:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "27426:6:1",
"nodeType": "YulIdentifier",
"src": "27426:6:1"
},
"nativeSrc": "27426:47:1",
"nodeType": "YulFunctionCall",
"src": "27426:47:1"
},
"nativeSrc": "27426:47:1",
"nodeType": "YulExpressionStatement",
"src": "27426:47:1"
},
{
"nativeSrc": "27482:139:1",
"nodeType": "YulAssignment",
"src": "27482:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "27616:4:1",
"nodeType": "YulIdentifier",
"src": "27616:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack",
"nativeSrc": "27490:124:1",
"nodeType": "YulIdentifier",
"src": "27490:124:1"
},
"nativeSrc": "27490:131:1",
"nodeType": "YulFunctionCall",
"src": "27490:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "27482:4:1",
"nodeType": "YulIdentifier",
"src": "27482:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "27209:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "27360:9:1",
"nodeType": "YulTypedName",
"src": "27360:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "27375:4:1",
"nodeType": "YulTypedName",
"src": "27375:4:1",
"type": ""
}
],
"src": "27209:419:1"
},
{
"body": {
"nativeSrc": "27788:288:1",
"nodeType": "YulBlock",
"src": "27788:288:1",
"statements": [
{
"nativeSrc": "27798:26:1",
"nodeType": "YulAssignment",
"src": "27798:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "27810:9:1",
"nodeType": "YulIdentifier",
"src": "27810:9:1"
},
{
"kind": "number",
"nativeSrc": "27821:2:1",
"nodeType": "YulLiteral",
"src": "27821:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "27806:3:1",
"nodeType": "YulIdentifier",
"src": "27806:3:1"
},
"nativeSrc": "27806:18:1",
"nodeType": "YulFunctionCall",
"src": "27806:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "27798:4:1",
"nodeType": "YulIdentifier",
"src": "27798:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "27878:6:1",
"nodeType": "YulIdentifier",
"src": "27878:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "27891:9:1",
"nodeType": "YulIdentifier",
"src": "27891:9:1"
},
{
"kind": "number",
"nativeSrc": "27902:1:1",
"nodeType": "YulLiteral",
"src": "27902:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "27887:3:1",
"nodeType": "YulIdentifier",
"src": "27887:3:1"
},
"nativeSrc": "27887:17:1",
"nodeType": "YulFunctionCall",
"src": "27887:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "27834:43:1",
"nodeType": "YulIdentifier",
"src": "27834:43:1"
},
"nativeSrc": "27834:71:1",
"nodeType": "YulFunctionCall",
"src": "27834:71:1"
},
"nativeSrc": "27834:71:1",
"nodeType": "YulExpressionStatement",
"src": "27834:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "27959:6:1",
"nodeType": "YulIdentifier",
"src": "27959:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "27972:9:1",
"nodeType": "YulIdentifier",
"src": "27972:9:1"
},
{
"kind": "number",
"nativeSrc": "27983:2:1",
"nodeType": "YulLiteral",
"src": "27983:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "27968:3:1",
"nodeType": "YulIdentifier",
"src": "27968:3:1"
},
"nativeSrc": "27968:18:1",
"nodeType": "YulFunctionCall",
"src": "27968:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "27915:43:1",
"nodeType": "YulIdentifier",
"src": "27915:43:1"
},
"nativeSrc": "27915:72:1",
"nodeType": "YulFunctionCall",
"src": "27915:72:1"
},
"nativeSrc": "27915:72:1",
"nodeType": "YulExpressionStatement",
"src": "27915:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "28041:6:1",
"nodeType": "YulIdentifier",
"src": "28041:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "28054:9:1",
"nodeType": "YulIdentifier",
"src": "28054:9:1"
},
{
"kind": "number",
"nativeSrc": "28065:2:1",
"nodeType": "YulLiteral",
"src": "28065:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "28050:3:1",
"nodeType": "YulIdentifier",
"src": "28050:3:1"
},
"nativeSrc": "28050:18:1",
"nodeType": "YulFunctionCall",
"src": "28050:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "27997:43:1",
"nodeType": "YulIdentifier",
"src": "27997:43:1"
},
"nativeSrc": "27997:72:1",
"nodeType": "YulFunctionCall",
"src": "27997:72:1"
},
"nativeSrc": "27997:72:1",
"nodeType": "YulExpressionStatement",
"src": "27997:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
"nativeSrc": "27634:442:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "27744:9:1",
"nodeType": "YulTypedName",
"src": "27744:9:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "27756:6:1",
"nodeType": "YulTypedName",
"src": "27756:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "27764:6:1",
"nodeType": "YulTypedName",
"src": "27764:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "27772:6:1",
"nodeType": "YulTypedName",
"src": "27772:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "27783:4:1",
"nodeType": "YulTypedName",
"src": "27783:4:1",
"type": ""
}
],
"src": "27634:442:1"
},
{
"body": {
"nativeSrc": "28188:120:1",
"nodeType": "YulBlock",
"src": "28188:120:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "28210:6:1",
"nodeType": "YulIdentifier",
"src": "28210:6:1"
},
{
"kind": "number",
"nativeSrc": "28218:1:1",
"nodeType": "YulLiteral",
"src": "28218:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "28206:3:1",
"nodeType": "YulIdentifier",
"src": "28206:3:1"
},
"nativeSrc": "28206:14:1",
"nodeType": "YulFunctionCall",
"src": "28206:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206661696c656420746f207472616e73666572",
"kind": "string",
"nativeSrc": "28222:34:1",
"nodeType": "YulLiteral",
"src": "28222:34:1",
"type": "",
"value": "TokenStaking: failed to transfer"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "28199:6:1",
"nodeType": "YulIdentifier",
"src": "28199:6:1"
},
"nativeSrc": "28199:58:1",
"nodeType": "YulFunctionCall",
"src": "28199:58:1"
},
"nativeSrc": "28199:58:1",
"nodeType": "YulExpressionStatement",
"src": "28199:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "28278:6:1",
"nodeType": "YulIdentifier",
"src": "28278:6:1"
},
{
"kind": "number",
"nativeSrc": "28286:2:1",
"nodeType": "YulLiteral",
"src": "28286:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "28274:3:1",
"nodeType": "YulIdentifier",
"src": "28274:3:1"
},
"nativeSrc": "28274:15:1",
"nodeType": "YulFunctionCall",
"src": "28274:15:1"
},
{
"hexValue": "20746f6b656e73",
"kind": "string",
"nativeSrc": "28291:9:1",
"nodeType": "YulLiteral",
"src": "28291:9:1",
"type": "",
"value": " tokens"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "28267:6:1",
"nodeType": "YulIdentifier",
"src": "28267:6:1"
},
"nativeSrc": "28267:34:1",
"nodeType": "YulFunctionCall",
"src": "28267:34:1"
},
"nativeSrc": "28267:34:1",
"nodeType": "YulExpressionStatement",
"src": "28267:34:1"
}
]
},
"name": "store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb",
"nativeSrc": "28082:226:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "28180:6:1",
"nodeType": "YulTypedName",
"src": "28180:6:1",
"type": ""
}
],
"src": "28082:226:1"
},
{
"body": {
"nativeSrc": "28460:220:1",
"nodeType": "YulBlock",
"src": "28460:220:1",
"statements": [
{
"nativeSrc": "28470:74:1",
"nodeType": "YulAssignment",
"src": "28470:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "28536:3:1",
"nodeType": "YulIdentifier",
"src": "28536:3:1"
},
{
"kind": "number",
"nativeSrc": "28541:2:1",
"nodeType": "YulLiteral",
"src": "28541:2:1",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "28477:58:1",
"nodeType": "YulIdentifier",
"src": "28477:58:1"
},
"nativeSrc": "28477:67:1",
"nodeType": "YulFunctionCall",
"src": "28477:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "28470:3:1",
"nodeType": "YulIdentifier",
"src": "28470:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "28642:3:1",
"nodeType": "YulIdentifier",
"src": "28642:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb",
"nativeSrc": "28553:88:1",
"nodeType": "YulIdentifier",
"src": "28553:88:1"
},
"nativeSrc": "28553:93:1",
"nodeType": "YulFunctionCall",
"src": "28553:93:1"
},
"nativeSrc": "28553:93:1",
"nodeType": "YulExpressionStatement",
"src": "28553:93:1"
},
{
"nativeSrc": "28655:19:1",
"nodeType": "YulAssignment",
"src": "28655:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "28666:3:1",
"nodeType": "YulIdentifier",
"src": "28666:3:1"
},
{
"kind": "number",
"nativeSrc": "28671:2:1",
"nodeType": "YulLiteral",
"src": "28671:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "28662:3:1",
"nodeType": "YulIdentifier",
"src": "28662:3:1"
},
"nativeSrc": "28662:12:1",
"nodeType": "YulFunctionCall",
"src": "28662:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "28655:3:1",
"nodeType": "YulIdentifier",
"src": "28655:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack",
"nativeSrc": "28314:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "28448:3:1",
"nodeType": "YulTypedName",
"src": "28448:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "28456:3:1",
"nodeType": "YulTypedName",
"src": "28456:3:1",
"type": ""
}
],
"src": "28314:366:1"
},
{
"body": {
"nativeSrc": "28857:248:1",
"nodeType": "YulBlock",
"src": "28857:248:1",
"statements": [
{
"nativeSrc": "28867:26:1",
"nodeType": "YulAssignment",
"src": "28867:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "28879:9:1",
"nodeType": "YulIdentifier",
"src": "28879:9:1"
},
{
"kind": "number",
"nativeSrc": "28890:2:1",
"nodeType": "YulLiteral",
"src": "28890:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "28875:3:1",
"nodeType": "YulIdentifier",
"src": "28875:3:1"
},
"nativeSrc": "28875:18:1",
"nodeType": "YulFunctionCall",
"src": "28875:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "28867:4:1",
"nodeType": "YulIdentifier",
"src": "28867:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "28914:9:1",
"nodeType": "YulIdentifier",
"src": "28914:9:1"
},
{
"kind": "number",
"nativeSrc": "28925:1:1",
"nodeType": "YulLiteral",
"src": "28925:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "28910:3:1",
"nodeType": "YulIdentifier",
"src": "28910:3:1"
},
"nativeSrc": "28910:17:1",
"nodeType": "YulFunctionCall",
"src": "28910:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "28933:4:1",
"nodeType": "YulIdentifier",
"src": "28933:4:1"
},
{
"name": "headStart",
"nativeSrc": "28939:9:1",
"nodeType": "YulIdentifier",
"src": "28939:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "28929:3:1",
"nodeType": "YulIdentifier",
"src": "28929:3:1"
},
"nativeSrc": "28929:20:1",
"nodeType": "YulFunctionCall",
"src": "28929:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "28903:6:1",
"nodeType": "YulIdentifier",
"src": "28903:6:1"
},
"nativeSrc": "28903:47:1",
"nodeType": "YulFunctionCall",
"src": "28903:47:1"
},
"nativeSrc": "28903:47:1",
"nodeType": "YulExpressionStatement",
"src": "28903:47:1"
},
{
"nativeSrc": "28959:139:1",
"nodeType": "YulAssignment",
"src": "28959:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "29093:4:1",
"nodeType": "YulIdentifier",
"src": "29093:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack",
"nativeSrc": "28967:124:1",
"nodeType": "YulIdentifier",
"src": "28967:124:1"
},
"nativeSrc": "28967:131:1",
"nodeType": "YulFunctionCall",
"src": "28967:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "28959:4:1",
"nodeType": "YulIdentifier",
"src": "28959:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "28686:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "28837:9:1",
"nodeType": "YulTypedName",
"src": "28837:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "28852:4:1",
"nodeType": "YulTypedName",
"src": "28852:4:1",
"type": ""
}
],
"src": "28686:419:1"
},
{
"body": {
"nativeSrc": "29217:124:1",
"nodeType": "YulBlock",
"src": "29217:124:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "29239:6:1",
"nodeType": "YulIdentifier",
"src": "29239:6:1"
},
{
"kind": "number",
"nativeSrc": "29247:1:1",
"nodeType": "YulLiteral",
"src": "29247:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "29235:3:1",
"nodeType": "YulIdentifier",
"src": "29235:3:1"
},
"nativeSrc": "29235:14:1",
"nodeType": "YulFunctionCall",
"src": "29235:14:1"
},
{
"hexValue": "496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069",
"kind": "string",
"nativeSrc": "29251:34:1",
"nodeType": "YulLiteral",
"src": "29251:34:1",
"type": "",
"value": "Initializable: contract is not i"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "29228:6:1",
"nodeType": "YulIdentifier",
"src": "29228:6:1"
},
"nativeSrc": "29228:58:1",
"nodeType": "YulFunctionCall",
"src": "29228:58:1"
},
"nativeSrc": "29228:58:1",
"nodeType": "YulExpressionStatement",
"src": "29228:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "29307:6:1",
"nodeType": "YulIdentifier",
"src": "29307:6:1"
},
{
"kind": "number",
"nativeSrc": "29315:2:1",
"nodeType": "YulLiteral",
"src": "29315:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "29303:3:1",
"nodeType": "YulIdentifier",
"src": "29303:3:1"
},
"nativeSrc": "29303:15:1",
"nodeType": "YulFunctionCall",
"src": "29303:15:1"
},
{
"hexValue": "6e697469616c697a696e67",
"kind": "string",
"nativeSrc": "29320:13:1",
"nodeType": "YulLiteral",
"src": "29320:13:1",
"type": "",
"value": "nitializing"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "29296:6:1",
"nodeType": "YulIdentifier",
"src": "29296:6:1"
},
"nativeSrc": "29296:38:1",
"nodeType": "YulFunctionCall",
"src": "29296:38:1"
},
"nativeSrc": "29296:38:1",
"nodeType": "YulExpressionStatement",
"src": "29296:38:1"
}
]
},
"name": "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b",
"nativeSrc": "29111:230:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "29209:6:1",
"nodeType": "YulTypedName",
"src": "29209:6:1",
"type": ""
}
],
"src": "29111:230:1"
},
{
"body": {
"nativeSrc": "29493:220:1",
"nodeType": "YulBlock",
"src": "29493:220:1",
"statements": [
{
"nativeSrc": "29503:74:1",
"nodeType": "YulAssignment",
"src": "29503:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "29569:3:1",
"nodeType": "YulIdentifier",
"src": "29569:3:1"
},
{
"kind": "number",
"nativeSrc": "29574:2:1",
"nodeType": "YulLiteral",
"src": "29574:2:1",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "29510:58:1",
"nodeType": "YulIdentifier",
"src": "29510:58:1"
},
"nativeSrc": "29510:67:1",
"nodeType": "YulFunctionCall",
"src": "29510:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "29503:3:1",
"nodeType": "YulIdentifier",
"src": "29503:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "29675:3:1",
"nodeType": "YulIdentifier",
"src": "29675:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b",
"nativeSrc": "29586:88:1",
"nodeType": "YulIdentifier",
"src": "29586:88:1"
},
"nativeSrc": "29586:93:1",
"nodeType": "YulFunctionCall",
"src": "29586:93:1"
},
"nativeSrc": "29586:93:1",
"nodeType": "YulExpressionStatement",
"src": "29586:93:1"
},
{
"nativeSrc": "29688:19:1",
"nodeType": "YulAssignment",
"src": "29688:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "29699:3:1",
"nodeType": "YulIdentifier",
"src": "29699:3:1"
},
{
"kind": "number",
"nativeSrc": "29704:2:1",
"nodeType": "YulLiteral",
"src": "29704:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "29695:3:1",
"nodeType": "YulIdentifier",
"src": "29695:3:1"
},
"nativeSrc": "29695:12:1",
"nodeType": "YulFunctionCall",
"src": "29695:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "29688:3:1",
"nodeType": "YulIdentifier",
"src": "29688:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "29347:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "29481:3:1",
"nodeType": "YulTypedName",
"src": "29481:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "29489:3:1",
"nodeType": "YulTypedName",
"src": "29489:3:1",
"type": ""
}
],
"src": "29347:366:1"
},
{
"body": {
"nativeSrc": "29890:248:1",
"nodeType": "YulBlock",
"src": "29890:248:1",
"statements": [
{
"nativeSrc": "29900:26:1",
"nodeType": "YulAssignment",
"src": "29900:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "29912:9:1",
"nodeType": "YulIdentifier",
"src": "29912:9:1"
},
{
"kind": "number",
"nativeSrc": "29923:2:1",
"nodeType": "YulLiteral",
"src": "29923:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "29908:3:1",
"nodeType": "YulIdentifier",
"src": "29908:3:1"
},
"nativeSrc": "29908:18:1",
"nodeType": "YulFunctionCall",
"src": "29908:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "29900:4:1",
"nodeType": "YulIdentifier",
"src": "29900:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "29947:9:1",
"nodeType": "YulIdentifier",
"src": "29947:9:1"
},
{
"kind": "number",
"nativeSrc": "29958:1:1",
"nodeType": "YulLiteral",
"src": "29958:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "29943:3:1",
"nodeType": "YulIdentifier",
"src": "29943:3:1"
},
"nativeSrc": "29943:17:1",
"nodeType": "YulFunctionCall",
"src": "29943:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "29966:4:1",
"nodeType": "YulIdentifier",
"src": "29966:4:1"
},
{
"name": "headStart",
"nativeSrc": "29972:9:1",
"nodeType": "YulIdentifier",
"src": "29972:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "29962:3:1",
"nodeType": "YulIdentifier",
"src": "29962:3:1"
},
"nativeSrc": "29962:20:1",
"nodeType": "YulFunctionCall",
"src": "29962:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "29936:6:1",
"nodeType": "YulIdentifier",
"src": "29936:6:1"
},
"nativeSrc": "29936:47:1",
"nodeType": "YulFunctionCall",
"src": "29936:47:1"
},
"nativeSrc": "29936:47:1",
"nodeType": "YulExpressionStatement",
"src": "29936:47:1"
},
{
"nativeSrc": "29992:139:1",
"nodeType": "YulAssignment",
"src": "29992:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "30126:4:1",
"nodeType": "YulIdentifier",
"src": "30126:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "30000:124:1",
"nodeType": "YulIdentifier",
"src": "30000:124:1"
},
"nativeSrc": "30000:131:1",
"nodeType": "YulFunctionCall",
"src": "30000:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "29992:4:1",
"nodeType": "YulIdentifier",
"src": "29992:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "29719:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "29870:9:1",
"nodeType": "YulTypedName",
"src": "29870:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "29885:4:1",
"nodeType": "YulTypedName",
"src": "29885:4:1",
"type": ""
}
],
"src": "29719:419:1"
},
{
"body": {
"nativeSrc": "30250:129:1",
"nodeType": "YulBlock",
"src": "30250:129:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "30272:6:1",
"nodeType": "YulIdentifier",
"src": "30272:6:1"
},
{
"kind": "number",
"nativeSrc": "30280:1:1",
"nodeType": "YulLiteral",
"src": "30280:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "30268:3:1",
"nodeType": "YulIdentifier",
"src": "30268:3:1"
},
"nativeSrc": "30268:14:1",
"nodeType": "YulFunctionCall",
"src": "30268:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a2061707920726174652073686f756c64206265",
"kind": "string",
"nativeSrc": "30284:34:1",
"nodeType": "YulLiteral",
"src": "30284:34:1",
"type": "",
"value": "TokenStaking: apy rate should be"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "30261:6:1",
"nodeType": "YulIdentifier",
"src": "30261:6:1"
},
"nativeSrc": "30261:58:1",
"nodeType": "YulFunctionCall",
"src": "30261:58:1"
},
"nativeSrc": "30261:58:1",
"nodeType": "YulExpressionStatement",
"src": "30261:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "30340:6:1",
"nodeType": "YulIdentifier",
"src": "30340:6:1"
},
{
"kind": "number",
"nativeSrc": "30348:2:1",
"nodeType": "YulLiteral",
"src": "30348:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "30336:3:1",
"nodeType": "YulIdentifier",
"src": "30336:3:1"
},
"nativeSrc": "30336:15:1",
"nodeType": "YulFunctionCall",
"src": "30336:15:1"
},
{
"hexValue": "206c657373207468616e203130303030",
"kind": "string",
"nativeSrc": "30353:18:1",
"nodeType": "YulLiteral",
"src": "30353:18:1",
"type": "",
"value": " less than 10000"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "30329:6:1",
"nodeType": "YulIdentifier",
"src": "30329:6:1"
},
"nativeSrc": "30329:43:1",
"nodeType": "YulFunctionCall",
"src": "30329:43:1"
},
"nativeSrc": "30329:43:1",
"nodeType": "YulExpressionStatement",
"src": "30329:43:1"
}
]
},
"name": "store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d",
"nativeSrc": "30144:235:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "30242:6:1",
"nodeType": "YulTypedName",
"src": "30242:6:1",
"type": ""
}
],
"src": "30144:235:1"
},
{
"body": {
"nativeSrc": "30531:220:1",
"nodeType": "YulBlock",
"src": "30531:220:1",
"statements": [
{
"nativeSrc": "30541:74:1",
"nodeType": "YulAssignment",
"src": "30541:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "30607:3:1",
"nodeType": "YulIdentifier",
"src": "30607:3:1"
},
{
"kind": "number",
"nativeSrc": "30612:2:1",
"nodeType": "YulLiteral",
"src": "30612:2:1",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "30548:58:1",
"nodeType": "YulIdentifier",
"src": "30548:58:1"
},
"nativeSrc": "30548:67:1",
"nodeType": "YulFunctionCall",
"src": "30548:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "30541:3:1",
"nodeType": "YulIdentifier",
"src": "30541:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "30713:3:1",
"nodeType": "YulIdentifier",
"src": "30713:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d",
"nativeSrc": "30624:88:1",
"nodeType": "YulIdentifier",
"src": "30624:88:1"
},
"nativeSrc": "30624:93:1",
"nodeType": "YulFunctionCall",
"src": "30624:93:1"
},
"nativeSrc": "30624:93:1",
"nodeType": "YulExpressionStatement",
"src": "30624:93:1"
},
{
"nativeSrc": "30726:19:1",
"nodeType": "YulAssignment",
"src": "30726:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "30737:3:1",
"nodeType": "YulIdentifier",
"src": "30737:3:1"
},
{
"kind": "number",
"nativeSrc": "30742:2:1",
"nodeType": "YulLiteral",
"src": "30742:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "30733:3:1",
"nodeType": "YulIdentifier",
"src": "30733:3:1"
},
"nativeSrc": "30733:12:1",
"nodeType": "YulFunctionCall",
"src": "30733:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "30726:3:1",
"nodeType": "YulIdentifier",
"src": "30726:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "30385:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "30519:3:1",
"nodeType": "YulTypedName",
"src": "30519:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "30527:3:1",
"nodeType": "YulTypedName",
"src": "30527:3:1",
"type": ""
}
],
"src": "30385:366:1"
},
{
"body": {
"nativeSrc": "30928:248:1",
"nodeType": "YulBlock",
"src": "30928:248:1",
"statements": [
{
"nativeSrc": "30938:26:1",
"nodeType": "YulAssignment",
"src": "30938:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "30950:9:1",
"nodeType": "YulIdentifier",
"src": "30950:9:1"
},
{
"kind": "number",
"nativeSrc": "30961:2:1",
"nodeType": "YulLiteral",
"src": "30961:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "30946:3:1",
"nodeType": "YulIdentifier",
"src": "30946:3:1"
},
"nativeSrc": "30946:18:1",
"nodeType": "YulFunctionCall",
"src": "30946:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "30938:4:1",
"nodeType": "YulIdentifier",
"src": "30938:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "30985:9:1",
"nodeType": "YulIdentifier",
"src": "30985:9:1"
},
{
"kind": "number",
"nativeSrc": "30996:1:1",
"nodeType": "YulLiteral",
"src": "30996:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "30981:3:1",
"nodeType": "YulIdentifier",
"src": "30981:3:1"
},
"nativeSrc": "30981:17:1",
"nodeType": "YulFunctionCall",
"src": "30981:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "31004:4:1",
"nodeType": "YulIdentifier",
"src": "31004:4:1"
},
{
"name": "headStart",
"nativeSrc": "31010:9:1",
"nodeType": "YulIdentifier",
"src": "31010:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "31000:3:1",
"nodeType": "YulIdentifier",
"src": "31000:3:1"
},
"nativeSrc": "31000:20:1",
"nodeType": "YulFunctionCall",
"src": "31000:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "30974:6:1",
"nodeType": "YulIdentifier",
"src": "30974:6:1"
},
"nativeSrc": "30974:47:1",
"nodeType": "YulFunctionCall",
"src": "30974:47:1"
},
"nativeSrc": "30974:47:1",
"nodeType": "YulExpressionStatement",
"src": "30974:47:1"
},
{
"nativeSrc": "31030:139:1",
"nodeType": "YulAssignment",
"src": "31030:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "31164:4:1",
"nodeType": "YulIdentifier",
"src": "31164:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "31038:124:1",
"nodeType": "YulIdentifier",
"src": "31038:124:1"
},
"nativeSrc": "31038:131:1",
"nodeType": "YulFunctionCall",
"src": "31038:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "31030:4:1",
"nodeType": "YulIdentifier",
"src": "31030:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "30757:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "30908:9:1",
"nodeType": "YulTypedName",
"src": "30908:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "30923:4:1",
"nodeType": "YulTypedName",
"src": "30923:4:1",
"type": ""
}
],
"src": "30757:419:1"
},
{
"body": {
"nativeSrc": "31288:122:1",
"nodeType": "YulBlock",
"src": "31288:122:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "31310:6:1",
"nodeType": "YulIdentifier",
"src": "31310:6:1"
},
{
"kind": "number",
"nativeSrc": "31318:1:1",
"nodeType": "YulLiteral",
"src": "31318:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "31306:3:1",
"nodeType": "YulIdentifier",
"src": "31306:3:1"
},
"nativeSrc": "31306:14:1",
"nodeType": "YulFunctionCall",
"src": "31306:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b652064617973206d757374206265",
"kind": "string",
"nativeSrc": "31322:34:1",
"nodeType": "YulLiteral",
"src": "31322:34:1",
"type": "",
"value": "TokenStaking: stake days must be"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "31299:6:1",
"nodeType": "YulIdentifier",
"src": "31299:6:1"
},
"nativeSrc": "31299:58:1",
"nodeType": "YulFunctionCall",
"src": "31299:58:1"
},
"nativeSrc": "31299:58:1",
"nodeType": "YulExpressionStatement",
"src": "31299:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "31378:6:1",
"nodeType": "YulIdentifier",
"src": "31378:6:1"
},
{
"kind": "number",
"nativeSrc": "31386:2:1",
"nodeType": "YulLiteral",
"src": "31386:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "31374:3:1",
"nodeType": "YulIdentifier",
"src": "31374:3:1"
},
"nativeSrc": "31374:15:1",
"nodeType": "YulFunctionCall",
"src": "31374:15:1"
},
{
"hexValue": "206e6f6e2d7a65726f",
"kind": "string",
"nativeSrc": "31391:11:1",
"nodeType": "YulLiteral",
"src": "31391:11:1",
"type": "",
"value": " non-zero"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "31367:6:1",
"nodeType": "YulIdentifier",
"src": "31367:6:1"
},
"nativeSrc": "31367:36:1",
"nodeType": "YulFunctionCall",
"src": "31367:36:1"
},
"nativeSrc": "31367:36:1",
"nodeType": "YulExpressionStatement",
"src": "31367:36:1"
}
]
},
"name": "store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f",
"nativeSrc": "31182:228:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "31280:6:1",
"nodeType": "YulTypedName",
"src": "31280:6:1",
"type": ""
}
],
"src": "31182:228:1"
},
{
"body": {
"nativeSrc": "31562:220:1",
"nodeType": "YulBlock",
"src": "31562:220:1",
"statements": [
{
"nativeSrc": "31572:74:1",
"nodeType": "YulAssignment",
"src": "31572:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "31638:3:1",
"nodeType": "YulIdentifier",
"src": "31638:3:1"
},
{
"kind": "number",
"nativeSrc": "31643:2:1",
"nodeType": "YulLiteral",
"src": "31643:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "31579:58:1",
"nodeType": "YulIdentifier",
"src": "31579:58:1"
},
"nativeSrc": "31579:67:1",
"nodeType": "YulFunctionCall",
"src": "31579:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "31572:3:1",
"nodeType": "YulIdentifier",
"src": "31572:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "31744:3:1",
"nodeType": "YulIdentifier",
"src": "31744:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f",
"nativeSrc": "31655:88:1",
"nodeType": "YulIdentifier",
"src": "31655:88:1"
},
"nativeSrc": "31655:93:1",
"nodeType": "YulFunctionCall",
"src": "31655:93:1"
},
"nativeSrc": "31655:93:1",
"nodeType": "YulExpressionStatement",
"src": "31655:93:1"
},
{
"nativeSrc": "31757:19:1",
"nodeType": "YulAssignment",
"src": "31757:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "31768:3:1",
"nodeType": "YulIdentifier",
"src": "31768:3:1"
},
{
"kind": "number",
"nativeSrc": "31773:2:1",
"nodeType": "YulLiteral",
"src": "31773:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "31764:3:1",
"nodeType": "YulIdentifier",
"src": "31764:3:1"
},
"nativeSrc": "31764:12:1",
"nodeType": "YulFunctionCall",
"src": "31764:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "31757:3:1",
"nodeType": "YulIdentifier",
"src": "31757:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "31416:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "31550:3:1",
"nodeType": "YulTypedName",
"src": "31550:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "31558:3:1",
"nodeType": "YulTypedName",
"src": "31558:3:1",
"type": ""
}
],
"src": "31416:366:1"
},
{
"body": {
"nativeSrc": "31959:248:1",
"nodeType": "YulBlock",
"src": "31959:248:1",
"statements": [
{
"nativeSrc": "31969:26:1",
"nodeType": "YulAssignment",
"src": "31969:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "31981:9:1",
"nodeType": "YulIdentifier",
"src": "31981:9:1"
},
{
"kind": "number",
"nativeSrc": "31992:2:1",
"nodeType": "YulLiteral",
"src": "31992:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "31977:3:1",
"nodeType": "YulIdentifier",
"src": "31977:3:1"
},
"nativeSrc": "31977:18:1",
"nodeType": "YulFunctionCall",
"src": "31977:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "31969:4:1",
"nodeType": "YulIdentifier",
"src": "31969:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "32016:9:1",
"nodeType": "YulIdentifier",
"src": "32016:9:1"
},
{
"kind": "number",
"nativeSrc": "32027:1:1",
"nodeType": "YulLiteral",
"src": "32027:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "32012:3:1",
"nodeType": "YulIdentifier",
"src": "32012:3:1"
},
"nativeSrc": "32012:17:1",
"nodeType": "YulFunctionCall",
"src": "32012:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "32035:4:1",
"nodeType": "YulIdentifier",
"src": "32035:4:1"
},
{
"name": "headStart",
"nativeSrc": "32041:9:1",
"nodeType": "YulIdentifier",
"src": "32041:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "32031:3:1",
"nodeType": "YulIdentifier",
"src": "32031:3:1"
},
"nativeSrc": "32031:20:1",
"nodeType": "YulFunctionCall",
"src": "32031:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "32005:6:1",
"nodeType": "YulIdentifier",
"src": "32005:6:1"
},
"nativeSrc": "32005:47:1",
"nodeType": "YulFunctionCall",
"src": "32005:47:1"
},
"nativeSrc": "32005:47:1",
"nodeType": "YulExpressionStatement",
"src": "32005:47:1"
},
{
"nativeSrc": "32061:139:1",
"nodeType": "YulAssignment",
"src": "32061:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "32195:4:1",
"nodeType": "YulIdentifier",
"src": "32195:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "32069:124:1",
"nodeType": "YulIdentifier",
"src": "32069:124:1"
},
"nativeSrc": "32069:131:1",
"nodeType": "YulFunctionCall",
"src": "32069:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "32061:4:1",
"nodeType": "YulIdentifier",
"src": "32061:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "31788:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "31939:9:1",
"nodeType": "YulTypedName",
"src": "31939:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "31954:4:1",
"nodeType": "YulTypedName",
"src": "31954:4:1",
"type": ""
}
],
"src": "31788:419:1"
},
{
"body": {
"nativeSrc": "32319:128:1",
"nodeType": "YulBlock",
"src": "32319:128:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "32341:6:1",
"nodeType": "YulIdentifier",
"src": "32341:6:1"
},
{
"kind": "number",
"nativeSrc": "32349:1:1",
"nodeType": "YulLiteral",
"src": "32349:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "32337:3:1",
"nodeType": "YulIdentifier",
"src": "32337:3:1"
},
"nativeSrc": "32337:14:1",
"nodeType": "YulFunctionCall",
"src": "32337:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a20746f6b656e20616464726573732063616e6e",
"kind": "string",
"nativeSrc": "32353:34:1",
"nodeType": "YulLiteral",
"src": "32353:34:1",
"type": "",
"value": "TokenStaking: token address cann"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "32330:6:1",
"nodeType": "YulIdentifier",
"src": "32330:6:1"
},
"nativeSrc": "32330:58:1",
"nodeType": "YulFunctionCall",
"src": "32330:58:1"
},
"nativeSrc": "32330:58:1",
"nodeType": "YulExpressionStatement",
"src": "32330:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "32409:6:1",
"nodeType": "YulIdentifier",
"src": "32409:6:1"
},
{
"kind": "number",
"nativeSrc": "32417:2:1",
"nodeType": "YulLiteral",
"src": "32417:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "32405:3:1",
"nodeType": "YulIdentifier",
"src": "32405:3:1"
},
"nativeSrc": "32405:15:1",
"nodeType": "YulFunctionCall",
"src": "32405:15:1"
},
{
"hexValue": "6f7420626520302061646472657373",
"kind": "string",
"nativeSrc": "32422:17:1",
"nodeType": "YulLiteral",
"src": "32422:17:1",
"type": "",
"value": "ot be 0 address"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "32398:6:1",
"nodeType": "YulIdentifier",
"src": "32398:6:1"
},
"nativeSrc": "32398:42:1",
"nodeType": "YulFunctionCall",
"src": "32398:42:1"
},
"nativeSrc": "32398:42:1",
"nodeType": "YulExpressionStatement",
"src": "32398:42:1"
}
]
},
"name": "store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0",
"nativeSrc": "32213:234:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "32311:6:1",
"nodeType": "YulTypedName",
"src": "32311:6:1",
"type": ""
}
],
"src": "32213:234:1"
},
{
"body": {
"nativeSrc": "32599:220:1",
"nodeType": "YulBlock",
"src": "32599:220:1",
"statements": [
{
"nativeSrc": "32609:74:1",
"nodeType": "YulAssignment",
"src": "32609:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "32675:3:1",
"nodeType": "YulIdentifier",
"src": "32675:3:1"
},
{
"kind": "number",
"nativeSrc": "32680:2:1",
"nodeType": "YulLiteral",
"src": "32680:2:1",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "32616:58:1",
"nodeType": "YulIdentifier",
"src": "32616:58:1"
},
"nativeSrc": "32616:67:1",
"nodeType": "YulFunctionCall",
"src": "32616:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "32609:3:1",
"nodeType": "YulIdentifier",
"src": "32609:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "32781:3:1",
"nodeType": "YulIdentifier",
"src": "32781:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0",
"nativeSrc": "32692:88:1",
"nodeType": "YulIdentifier",
"src": "32692:88:1"
},
"nativeSrc": "32692:93:1",
"nodeType": "YulFunctionCall",
"src": "32692:93:1"
},
"nativeSrc": "32692:93:1",
"nodeType": "YulExpressionStatement",
"src": "32692:93:1"
},
{
"nativeSrc": "32794:19:1",
"nodeType": "YulAssignment",
"src": "32794:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "32805:3:1",
"nodeType": "YulIdentifier",
"src": "32805:3:1"
},
{
"kind": "number",
"nativeSrc": "32810:2:1",
"nodeType": "YulLiteral",
"src": "32810:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "32801:3:1",
"nodeType": "YulIdentifier",
"src": "32801:3:1"
},
"nativeSrc": "32801:12:1",
"nodeType": "YulFunctionCall",
"src": "32801:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "32794:3:1",
"nodeType": "YulIdentifier",
"src": "32794:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "32453:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "32587:3:1",
"nodeType": "YulTypedName",
"src": "32587:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "32595:3:1",
"nodeType": "YulTypedName",
"src": "32595:3:1",
"type": ""
}
],
"src": "32453:366:1"
},
{
"body": {
"nativeSrc": "32996:248:1",
"nodeType": "YulBlock",
"src": "32996:248:1",
"statements": [
{
"nativeSrc": "33006:26:1",
"nodeType": "YulAssignment",
"src": "33006:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "33018:9:1",
"nodeType": "YulIdentifier",
"src": "33018:9:1"
},
{
"kind": "number",
"nativeSrc": "33029:2:1",
"nodeType": "YulLiteral",
"src": "33029:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "33014:3:1",
"nodeType": "YulIdentifier",
"src": "33014:3:1"
},
"nativeSrc": "33014:18:1",
"nodeType": "YulFunctionCall",
"src": "33014:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "33006:4:1",
"nodeType": "YulIdentifier",
"src": "33006:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "33053:9:1",
"nodeType": "YulIdentifier",
"src": "33053:9:1"
},
{
"kind": "number",
"nativeSrc": "33064:1:1",
"nodeType": "YulLiteral",
"src": "33064:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "33049:3:1",
"nodeType": "YulIdentifier",
"src": "33049:3:1"
},
"nativeSrc": "33049:17:1",
"nodeType": "YulFunctionCall",
"src": "33049:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "33072:4:1",
"nodeType": "YulIdentifier",
"src": "33072:4:1"
},
{
"name": "headStart",
"nativeSrc": "33078:9:1",
"nodeType": "YulIdentifier",
"src": "33078:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "33068:3:1",
"nodeType": "YulIdentifier",
"src": "33068:3:1"
},
"nativeSrc": "33068:20:1",
"nodeType": "YulFunctionCall",
"src": "33068:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "33042:6:1",
"nodeType": "YulIdentifier",
"src": "33042:6:1"
},
"nativeSrc": "33042:47:1",
"nodeType": "YulFunctionCall",
"src": "33042:47:1"
},
"nativeSrc": "33042:47:1",
"nodeType": "YulExpressionStatement",
"src": "33042:47:1"
},
{
"nativeSrc": "33098:139:1",
"nodeType": "YulAssignment",
"src": "33098:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "33232:4:1",
"nodeType": "YulIdentifier",
"src": "33232:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "33106:124:1",
"nodeType": "YulIdentifier",
"src": "33106:124:1"
},
"nativeSrc": "33106:131:1",
"nodeType": "YulFunctionCall",
"src": "33106:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "33098:4:1",
"nodeType": "YulIdentifier",
"src": "33098:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "32825:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "32976:9:1",
"nodeType": "YulTypedName",
"src": "32976:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "32991:4:1",
"nodeType": "YulTypedName",
"src": "32991:4:1",
"type": ""
}
],
"src": "32825:419:1"
},
{
"body": {
"nativeSrc": "33356:132:1",
"nodeType": "YulBlock",
"src": "33356:132:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "33378:6:1",
"nodeType": "YulIdentifier",
"src": "33378:6:1"
},
{
"kind": "number",
"nativeSrc": "33386:1:1",
"nodeType": "YulLiteral",
"src": "33386:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "33374:3:1",
"nodeType": "YulIdentifier",
"src": "33374:3:1"
},
"nativeSrc": "33374:14:1",
"nodeType": "YulFunctionCall",
"src": "33374:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a2073746172742064617465206d757374206265",
"kind": "string",
"nativeSrc": "33390:34:1",
"nodeType": "YulLiteral",
"src": "33390:34:1",
"type": "",
"value": "TokenStaking: start date must be"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "33367:6:1",
"nodeType": "YulIdentifier",
"src": "33367:6:1"
},
"nativeSrc": "33367:58:1",
"nodeType": "YulFunctionCall",
"src": "33367:58:1"
},
"nativeSrc": "33367:58:1",
"nodeType": "YulExpressionStatement",
"src": "33367:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "33446:6:1",
"nodeType": "YulIdentifier",
"src": "33446:6:1"
},
{
"kind": "number",
"nativeSrc": "33454:2:1",
"nodeType": "YulLiteral",
"src": "33454:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "33442:3:1",
"nodeType": "YulIdentifier",
"src": "33442:3:1"
},
"nativeSrc": "33442:15:1",
"nodeType": "YulFunctionCall",
"src": "33442:15:1"
},
{
"hexValue": "206c657373207468616e20656e642064617465",
"kind": "string",
"nativeSrc": "33459:21:1",
"nodeType": "YulLiteral",
"src": "33459:21:1",
"type": "",
"value": " less than end date"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "33435:6:1",
"nodeType": "YulIdentifier",
"src": "33435:6:1"
},
"nativeSrc": "33435:46:1",
"nodeType": "YulFunctionCall",
"src": "33435:46:1"
},
"nativeSrc": "33435:46:1",
"nodeType": "YulExpressionStatement",
"src": "33435:46:1"
}
]
},
"name": "store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f",
"nativeSrc": "33250:238:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "33348:6:1",
"nodeType": "YulTypedName",
"src": "33348:6:1",
"type": ""
}
],
"src": "33250:238:1"
},
{
"body": {
"nativeSrc": "33640:220:1",
"nodeType": "YulBlock",
"src": "33640:220:1",
"statements": [
{
"nativeSrc": "33650:74:1",
"nodeType": "YulAssignment",
"src": "33650:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "33716:3:1",
"nodeType": "YulIdentifier",
"src": "33716:3:1"
},
{
"kind": "number",
"nativeSrc": "33721:2:1",
"nodeType": "YulLiteral",
"src": "33721:2:1",
"type": "",
"value": "51"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "33657:58:1",
"nodeType": "YulIdentifier",
"src": "33657:58:1"
},
"nativeSrc": "33657:67:1",
"nodeType": "YulFunctionCall",
"src": "33657:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "33650:3:1",
"nodeType": "YulIdentifier",
"src": "33650:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "33822:3:1",
"nodeType": "YulIdentifier",
"src": "33822:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f",
"nativeSrc": "33733:88:1",
"nodeType": "YulIdentifier",
"src": "33733:88:1"
},
"nativeSrc": "33733:93:1",
"nodeType": "YulFunctionCall",
"src": "33733:93:1"
},
"nativeSrc": "33733:93:1",
"nodeType": "YulExpressionStatement",
"src": "33733:93:1"
},
{
"nativeSrc": "33835:19:1",
"nodeType": "YulAssignment",
"src": "33835:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "33846:3:1",
"nodeType": "YulIdentifier",
"src": "33846:3:1"
},
{
"kind": "number",
"nativeSrc": "33851:2:1",
"nodeType": "YulLiteral",
"src": "33851:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "33842:3:1",
"nodeType": "YulIdentifier",
"src": "33842:3:1"
},
"nativeSrc": "33842:12:1",
"nodeType": "YulFunctionCall",
"src": "33842:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "33835:3:1",
"nodeType": "YulIdentifier",
"src": "33835:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "33494:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "33628:3:1",
"nodeType": "YulTypedName",
"src": "33628:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "33636:3:1",
"nodeType": "YulTypedName",
"src": "33636:3:1",
"type": ""
}
],
"src": "33494:366:1"
},
{
"body": {
"nativeSrc": "34037:248:1",
"nodeType": "YulBlock",
"src": "34037:248:1",
"statements": [
{
"nativeSrc": "34047:26:1",
"nodeType": "YulAssignment",
"src": "34047:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "34059:9:1",
"nodeType": "YulIdentifier",
"src": "34059:9:1"
},
{
"kind": "number",
"nativeSrc": "34070:2:1",
"nodeType": "YulLiteral",
"src": "34070:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "34055:3:1",
"nodeType": "YulIdentifier",
"src": "34055:3:1"
},
"nativeSrc": "34055:18:1",
"nodeType": "YulFunctionCall",
"src": "34055:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "34047:4:1",
"nodeType": "YulIdentifier",
"src": "34047:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "34094:9:1",
"nodeType": "YulIdentifier",
"src": "34094:9:1"
},
{
"kind": "number",
"nativeSrc": "34105:1:1",
"nodeType": "YulLiteral",
"src": "34105:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "34090:3:1",
"nodeType": "YulIdentifier",
"src": "34090:3:1"
},
"nativeSrc": "34090:17:1",
"nodeType": "YulFunctionCall",
"src": "34090:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "34113:4:1",
"nodeType": "YulIdentifier",
"src": "34113:4:1"
},
{
"name": "headStart",
"nativeSrc": "34119:9:1",
"nodeType": "YulIdentifier",
"src": "34119:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "34109:3:1",
"nodeType": "YulIdentifier",
"src": "34109:3:1"
},
"nativeSrc": "34109:20:1",
"nodeType": "YulFunctionCall",
"src": "34109:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "34083:6:1",
"nodeType": "YulIdentifier",
"src": "34083:6:1"
},
"nativeSrc": "34083:47:1",
"nodeType": "YulFunctionCall",
"src": "34083:47:1"
},
"nativeSrc": "34083:47:1",
"nodeType": "YulExpressionStatement",
"src": "34083:47:1"
},
{
"nativeSrc": "34139:139:1",
"nodeType": "YulAssignment",
"src": "34139:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "34273:4:1",
"nodeType": "YulIdentifier",
"src": "34273:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "34147:124:1",
"nodeType": "YulIdentifier",
"src": "34147:124:1"
},
"nativeSrc": "34147:131:1",
"nodeType": "YulFunctionCall",
"src": "34147:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "34139:4:1",
"nodeType": "YulIdentifier",
"src": "34139:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "33866:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "34017:9:1",
"nodeType": "YulTypedName",
"src": "34017:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "34032:4:1",
"nodeType": "YulTypedName",
"src": "34032:4:1",
"type": ""
}
],
"src": "33866:419:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := 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_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 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 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_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 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_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 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(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n // struct TokenStaking.User -> struct TokenStaking.User\n function abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0xa0)\n\n {\n // stakeAmount\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // rewardAmount\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // lastStakeTime\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x40))\n }\n\n {\n // lastRewardCalculationTime\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // rewardsClaimedSoFar\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_User_$709_memory_ptr__to_t_struct$_User_$709_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256t_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_uint256(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 abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8 {\n if slt(sub(dataEnd, headStart), 288) { 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 let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(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_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 224\n\n value7 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 256\n\n value8 := abi_decode_t_uint256(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 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_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619(memPtr) {\n\n mstore(add(memPtr, 0), \"ReentrancyGuard: reentrant call\")\n\n }\n\n function abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__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_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_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_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: insufficient funds\")\n\n mstore(add(memPtr, 32), \" in the treasury\")\n\n }\n\n function abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0__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_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: amount should be n\")\n\n mstore(add(memPtr, 32), \"on-zero\")\n\n }\n\n function abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf__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_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack( tail)\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 store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: not a stakeholder\")\n\n }\n\n function abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4__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_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: not enough stake t\")\n\n mstore(add(memPtr, 32), \"o unstake\")\n\n }\n\n function abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4__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_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_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 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 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_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 store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: failed to transfer\")\n\n }\n\n function abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b__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_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: not enough withdra\")\n\n mstore(add(memPtr, 32), \"wable tokens\")\n\n }\n\n function abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7__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_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_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_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: no reward to claim\")\n\n }\n\n function abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4__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_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\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_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: staking is paused\")\n\n }\n\n function abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d__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_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: staking not starte\")\n\n mstore(add(memPtr, 32), \"d yet\")\n\n }\n\n function abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce__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_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: staking ended\")\n\n }\n\n function abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 27)\n store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec__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_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: max staking token \")\n\n mstore(add(memPtr, 32), \"limit reached\")\n\n }\n\n function abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 45)\n store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464__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_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: stake amount must \")\n\n mstore(add(memPtr, 32), \"be non-zero\")\n\n }\n\n function abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78__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_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: stake amount must \")\n\n mstore(add(memPtr, 32), \"greater than minimum amount allo\")\n\n mstore(add(memPtr, 64), \"wed\")\n\n }\n\n function abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 67)\n store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd(pos)\n end := add(pos, 96)\n }\n\n function abi_encode_tuple_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd__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_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_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 store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: failed to transfer\")\n\n mstore(add(memPtr, 32), \" tokens\")\n\n }\n\n function abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb__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_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_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_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: apy rate should be\")\n\n mstore(add(memPtr, 32), \" less than 10000\")\n\n }\n\n function abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d__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_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: stake days must be\")\n\n mstore(add(memPtr, 32), \" non-zero\")\n\n }\n\n function abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f__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_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: token address cann\")\n\n mstore(add(memPtr, 32), \"ot be 0 address\")\n\n }\n\n function abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0__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_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: start date must be\")\n\n mstore(add(memPtr, 32), \" less than end date\")\n\n }\n\n function abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 51)\n store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f__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_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b50600436106101d7575f3560e01c8063845738cb11610102578063b88a802f116100a0578063d2cbf7ad1161006f578063d2cbf7ad146104bd578063f0116b74146104db578063f18cce76146104f9578063f2fde38b14610517576101d7565b8063b88a802f1461046d578063bb8febc614610477578063c5d62b1814610495578063cab9b8fb1461049f576101d7565b806390be10cc116100dc57806390be10cc146103f75780639be572f614610415578063a694fc3a14610433578063b3cd42541461044f576101d7565b8063845738cb1461039f5780638585d138146103bb5780638da5cb5b146103d9576101d7565b806351d185981161017a5780636f77926b116101495780636f77926b1461032d57806370607f5d1461035d578063715018a6146103795780637bb9769d14610383576101d7565b806351d18598146102a557806355f0fe42146102c35780635e39cd75146102df57806363512159146102fd576101d7565b80632e1a7d4d116101b65780632e1a7d4d146102315780633e0935721461024d57806342a23945146102695780634d55b17814610287576101d7565b80628e3252146101db5780630c4ca4a6146101f95780632e17de7814610215575b5f80fd5b6101e3610533565b6040516101f0919061203e565b60405180910390f35b610213600480360381019061020e9190612085565b61053c565b005b61022f600480360381019061022a9190612085565b61054e565b005b61024b60048036038101906102469190612085565b610adc565b005b61026760048036038101906102629190612085565b610c88565b005b610271610c9a565b60405161027e919061203e565b60405180910390f35b61028f610ca3565b60405161029c919061203e565b60405180910390f35b6102ad610d03565b6040516102ba919061203e565b60405180910390f35b6102dd60048036038101906102d89190612085565b610d0c565b005b6102e7610d1e565b6040516102f4919061203e565b60405180910390f35b6103176004803603810190610312919061210a565b610d27565b604051610324919061214f565b60405180910390f35b6103476004803603810190610342919061210a565b610d72565b60405161035491906121dd565b60405180910390f35b610377600480360381019061037291906121f6565b610dfa565b005b610381610e64565b005b61039d60048036038101906103989190612085565b610e77565b005b6103b960048036038101906103b49190612234565b610e89565b005b6103c3610fdb565b6040516103d0919061203e565b60405180910390f35b6103e1610fe0565b6040516103ee9190612307565b60405180910390f35b6103ff611007565b60405161040c919061203e565b60405180910390f35b61041d6110b4565b60405161042a919061203e565b60405180910390f35b61044d60048036038101906104489190612085565b6110bd565b005b61045761111e565b604051610464919061203e565b60405180910390f35b610475611124565b005b61047f6114ed565b60405161048c919061203e565b60405180910390f35b61049d6114f6565b005b6104a7611528565b6040516104b4919061214f565b60405180910390f35b6104c561153d565b6040516104d2919061203e565b60405180910390f35b6104e3611546565b6040516104f0919061203e565b60405180910390f35b61050161154f565b60405161050e919061203e565b60405180910390f35b610531600480360381019061052c919061210a565b611558565b005b5f600654905090565b6105446115da565b8060048190555050565b600260015403610593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058a9061237a565b60405180910390fd5b60026001819055508080600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105f89190612307565b602060405180830381865afa158015610613573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063791906123ac565b1015610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066f90612447565b60405180910390fd5b5f3390505f83036106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b5906124d5565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166363512159826040518263ffffffff1660e01b81526004016106f79190612307565b602060405180830381865afa158015610712573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610736919061251d565b610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612592565b60405180910390fd5b82600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015410156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612620565b60405180910390fd5b61080081611658565b5f600954600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206002015461084f919061266b565b610857611707565b116108c857612710600a548561086d919061269e565b610877919061270c565b90508173ffffffffffffffffffffffffffffffffffffffff167f547c747d3878b7637a9d040b5479a58c43382aac8e5aa9a30a053c1a0cffb4f2826040516108bf919061203e565b60405180910390a25b5f81856108d5919061273c565b905084600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f828254610925919061273c565b925050819055508460075f82825461093d919061273c565b925050819055505f600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0154036109a457600160085f82825461099c919061273c565b925050819055505b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401610a0192919061276f565b6020604051808303815f875af1158015610a1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a41919061251d565b610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a77906127e0565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167fb24546d975e2628748efc9aced80665e0fad66272033e5c0ea25fd3afac9979586604051610ac6919061203e565b60405180910390a2505050506001808190555050565b610ae46115da565b600260015403610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061237a565b60405180910390fd5b6002600181905550803073ffffffffffffffffffffffffffffffffffffffff166390be10cc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9f91906123ac565b1015610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061286e565b60405180910390fd5b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c3d92919061276f565b6020604051808303815f875af1158015610c59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7d919061251d565b506001808190555050565b610c906115da565b8060058190555050565b5f600354905090565b5f80610cae3361170e565b50905080600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010154610cfd919061266b565b91505090565b5f600754905090565b610d146115da565b8060038190555050565b5f600a54905090565b5f80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015414159050919050565b610d7a611ffc565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206040518060a00160405290815f82015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050919050565b610e026115da565b600260015403610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061237a565b60405180910390fd5b6002600181905550610e5982826118a5565b600180819055505050565b610e6c6115da565b610e755f611cf6565b565b610e7f6115da565b80600a8190555050565b5f600260019054906101000a900460ff16159050808015610ebb5750600160025f9054906101000a900460ff1660ff16105b80610ee95750610eca30611db7565b158015610ee85750600160025f9054906101000a900460ff1660ff16145b5b610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906128fc565b60405180910390fd5b600160025f6101000a81548160ff021916908360ff1602179055508015610f65576001600260016101000a81548160ff0219169083151502179055505b610f768a8a8a8a8a8a8a8a8a611dd9565b8015610fcf575f600260016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610fc69190612968565b60405180910390a15b50505050505050505050565b600a81565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600754600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110669190612307565b602060405180830381865afa158015611081573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a591906123ac565b6110af919061273c565b905090565b5f600854905090565b600260015403611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061237a565b60405180910390fd5b600260018190555061111481336118a5565b6001808190555050565b61271081565b600260015403611169576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111609061237a565b60405180910390fd5b6002600181905550600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015480600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161120e9190612307565b602060405180830381865afa158015611229573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124d91906123ac565b101561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612447565b60405180910390fd5b61129733611658565b5f600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015490505f811161131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906129cb565b60405180910390fd5b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161137a92919061276f565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba919061251d565b6113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906127e0565b60405180910390fd5b5f600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001018190555080600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206004015f82825461148d919061266b565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e826040516114da919061203e565b60405180910390a2505060018081905550565b5f600454905090565b6114fe6115da565b600b5f9054906101000a900460ff1615600b5f6101000a81548160ff021916908315150217905550565b5f600b5f9054906101000a900460ff16905090565b5f600c54905090565b5f600554905090565b5f600954905090565b6115606115da565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612a59565b60405180910390fd5b6115d781611cf6565b50565b6115e2611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611600610fe0565b73ffffffffffffffffffffffffffffffffffffffff1614611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612ac1565b60405180910390fd5b565b5f806116638361170e565b9150915081600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015f8282546116b6919061266b565b9250508190555080600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060030181905550505050565b5f42905090565b5f805f80600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206003015490505f61175e611707565b9050600954600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600201546117ae919061266b565b81111561180657600954600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060020154611803919061266b565b90505b5f8282611813919061273c565b90506127106301e13380600c54600d5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01548461186b919061269e565b611875919061269e565b61187f919061270c565b611889919061270c565b84611894919061266b565b935083829550955050505050915091565b600b5f9054906101000a900460ff16156118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90612b29565b60405180910390fd5b5f6118fd611707565b90506006548111611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90612bb7565b60405180910390fd5b6005548110611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90612c1f565b60405180910390fd5b60045483600754611998919061266b565b11156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090612cad565b60405180910390fd5b5f8311611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290612d3b565b60405180910390fd5b600354831015611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790612def565b60405180910390fd5b5f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015414611ab457611aaf82611658565b611b13565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060030181905550600160085f828254611b0b919061266b565b925050819055505b82600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f828254611b61919061266b565b9250508190555080600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600201819055508260075f828254611bbe919061266b565b92505081905550600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401611c2493929190612e0d565b6020604051808303815f875af1158015611c40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c64919061251d565b611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a90612eb2565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a84604051611ce9919061203e565b60405180910390a2505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600260019054906101000a900460ff16611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90612f40565b60405180910390fd5b612710600c541115611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690612fce565b60405180910390fd5b5f8211611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea89061305c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f16906130ea565b60405180910390fd5b828410611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890613178565b60405180910390fd5b611f6a89611cf6565b87600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600c81905550856003819055508460048190555083600681905550826005819055506201518082611fdd919061269e565b60098190555080600a81905550505050505050505050565b5f33905090565b6040518060a001604052805f81526020015f81526020015f81526020015f81526020015f81525090565b5f819050919050565b61203881612026565b82525050565b5f6020820190506120515f83018461202f565b92915050565b5f80fd5b61206481612026565b811461206e575f80fd5b50565b5f8135905061207f8161205b565b92915050565b5f6020828403121561209a57612099612057565b5b5f6120a784828501612071565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120d9826120b0565b9050919050565b6120e9816120cf565b81146120f3575f80fd5b50565b5f81359050612104816120e0565b92915050565b5f6020828403121561211f5761211e612057565b5b5f61212c848285016120f6565b91505092915050565b5f8115159050919050565b61214981612135565b82525050565b5f6020820190506121625f830184612140565b92915050565b61217181612026565b82525050565b60a082015f82015161218b5f850182612168565b50602082015161219e6020850182612168565b5060408201516121b16040850182612168565b5060608201516121c46060850182612168565b5060808201516121d76080850182612168565b50505050565b5f60a0820190506121f05f830184612177565b92915050565b5f806040838503121561220c5761220b612057565b5b5f61221985828601612071565b925050602061222a858286016120f6565b9150509250929050565b5f805f805f805f805f6101208a8c03121561225257612251612057565b5b5f61225f8c828d016120f6565b99505060206122708c828d016120f6565b98505060406122818c828d01612071565b97505060606122928c828d01612071565b96505060806122a38c828d01612071565b95505060a06122b48c828d01612071565b94505060c06122c58c828d01612071565b93505060e06122d68c828d01612071565b9250506101006122e88c828d01612071565b9150509295985092959850929598565b612301816120cf565b82525050565b5f60208201905061231a5f8301846122f8565b92915050565b5f82825260208201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612364601f83612320565b915061236f82612330565b602082019050919050565b5f6020820190508181035f83015261239181612358565b9050919050565b5f815190506123a68161205b565b92915050565b5f602082840312156123c1576123c0612057565b5b5f6123ce84828501612398565b91505092915050565b7f546f6b656e5374616b696e673a20696e73756666696369656e742066756e64735f8201527f20696e2074686520747265617375727900000000000000000000000000000000602082015250565b5f612431603083612320565b915061243c826123d7565b604082019050919050565b5f6020820190508181035f83015261245e81612425565b9050919050565b7f546f6b656e5374616b696e673a20616d6f756e742073686f756c64206265206e5f8201527f6f6e2d7a65726f00000000000000000000000000000000000000000000000000602082015250565b5f6124bf602783612320565b91506124ca82612465565b604082019050919050565b5f6020820190508181035f8301526124ec816124b3565b9050919050565b6124fc81612135565b8114612506575f80fd5b50565b5f81519050612517816124f3565b92915050565b5f6020828403121561253257612531612057565b5b5f61253f84828501612509565b91505092915050565b7f546f6b656e5374616b696e673a206e6f742061207374616b65686f6c646572005f82015250565b5f61257c601f83612320565b915061258782612548565b602082019050919050565b5f6020820190508181035f8301526125a981612570565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f756768207374616b6520745f8201527f6f20756e7374616b650000000000000000000000000000000000000000000000602082015250565b5f61260a602983612320565b9150612615826125b0565b604082019050919050565b5f6020820190508181035f830152612637816125fe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61267582612026565b915061268083612026565b92508282019050808211156126985761269761263e565b5b92915050565b5f6126a882612026565b91506126b383612026565b92508282026126c181612026565b915082820484148315176126d8576126d761263e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61271682612026565b915061272183612026565b925082612731576127306126df565b5b828204905092915050565b5f61274682612026565b915061275183612026565b92508282039050818111156127695761276861263e565b5b92915050565b5f6040820190506127825f8301856122f8565b61278f602083018461202f565b9392505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e736665725f82015250565b5f6127ca602083612320565b91506127d582612796565b602082019050919050565b5f6020820190508181035f8301526127f7816127be565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f75676820776974686472615f8201527f7761626c6520746f6b656e730000000000000000000000000000000000000000602082015250565b5f612858602c83612320565b9150612863826127fe565b604082019050919050565b5f6020820190508181035f8301526128858161284c565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c7265615f8201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b5f6128e6602e83612320565b91506128f18261288c565b604082019050919050565b5f6020820190508181035f830152612913816128da565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f819050919050565b5f61295261294d6129488461291a565b61292f565b612923565b9050919050565b61296281612938565b82525050565b5f60208201905061297b5f830184612959565b92915050565b7f546f6b656e5374616b696e673a206e6f2072657761726420746f20636c61696d5f82015250565b5f6129b5602083612320565b91506129c082612981565b602082019050919050565b5f6020820190508181035f8301526129e2816129a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612a43602683612320565b9150612a4e826129e9565b604082019050919050565b5f6020820190508181035f830152612a7081612a37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612aab602083612320565b9150612ab682612a77565b602082019050919050565b5f6020820190508181035f830152612ad881612a9f565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e6720697320706175736564005f82015250565b5f612b13601f83612320565b9150612b1e82612adf565b602082019050919050565b5f6020820190508181035f830152612b4081612b07565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e67206e6f74207374617274655f8201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b5f612ba1602583612320565b9150612bac82612b47565b604082019050919050565b5f6020820190508181035f830152612bce81612b95565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e6720656e64656400000000005f82015250565b5f612c09601b83612320565b9150612c1482612bd5565b602082019050919050565b5f6020820190508181035f830152612c3681612bfd565b9050919050565b7f546f6b656e5374616b696e673a206d6178207374616b696e6720746f6b656e205f8201527f6c696d6974207265616368656400000000000000000000000000000000000000602082015250565b5f612c97602d83612320565b9150612ca282612c3d565b604082019050919050565b5f6020820190508181035f830152612cc481612c8b565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d757374205f8201527f6265206e6f6e2d7a65726f000000000000000000000000000000000000000000602082015250565b5f612d25602b83612320565b9150612d3082612ccb565b604082019050919050565b5f6020820190508181035f830152612d5281612d19565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d757374205f8201527f67726561746572207468616e206d696e696d756d20616d6f756e7420616c6c6f60208201527f7765640000000000000000000000000000000000000000000000000000000000604082015250565b5f612dd9604383612320565b9150612de482612d59565b606082019050919050565b5f6020820190508181035f830152612e0681612dcd565b9050919050565b5f606082019050612e205f8301866122f8565b612e2d60208301856122f8565b612e3a604083018461202f565b949350505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e736665725f8201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b5f612e9c602783612320565b9150612ea782612e42565b604082019050919050565b5f6020820190508181035f830152612ec981612e90565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695f8201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b5f612f2a602b83612320565b9150612f3582612ed0565b604082019050919050565b5f6020820190508181035f830152612f5781612f1e565b9050919050565b7f546f6b656e5374616b696e673a2061707920726174652073686f756c642062655f8201527f206c657373207468616e20313030303000000000000000000000000000000000602082015250565b5f612fb8603083612320565b9150612fc382612f5e565b604082019050919050565b5f6020820190508181035f830152612fe581612fac565b9050919050565b7f546f6b656e5374616b696e673a207374616b652064617973206d7573742062655f8201527f206e6f6e2d7a65726f0000000000000000000000000000000000000000000000602082015250565b5f613046602983612320565b915061305182612fec565b604082019050919050565b5f6020820190508181035f8301526130738161303a565b9050919050565b7f546f6b656e5374616b696e673a20746f6b656e20616464726573732063616e6e5f8201527f6f74206265203020616464726573730000000000000000000000000000000000602082015250565b5f6130d4602f83612320565b91506130df8261307a565b604082019050919050565b5f6020820190508181035f830152613101816130c8565b9050919050565b7f546f6b656e5374616b696e673a2073746172742064617465206d7573742062655f8201527f206c657373207468616e20656e64206461746500000000000000000000000000602082015250565b5f613162603383612320565b915061316d82613108565b604082019050919050565b5f6020820190508181035f83015261318f81613156565b905091905056fea26469706673582212208a5c27a3bf0cf26a9f1de6ea688a28bed6fe65205b097d6bb58babf4116a803764736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1D7 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x845738CB GT PUSH2 0x102 JUMPI DUP1 PUSH4 0xB88A802F GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD2CBF7AD GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD2CBF7AD EQ PUSH2 0x4BD JUMPI DUP1 PUSH4 0xF0116B74 EQ PUSH2 0x4DB JUMPI DUP1 PUSH4 0xF18CCE76 EQ PUSH2 0x4F9 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x517 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0xB88A802F EQ PUSH2 0x46D JUMPI DUP1 PUSH4 0xBB8FEBC6 EQ PUSH2 0x477 JUMPI DUP1 PUSH4 0xC5D62B18 EQ PUSH2 0x495 JUMPI DUP1 PUSH4 0xCAB9B8FB EQ PUSH2 0x49F JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x90BE10CC GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x90BE10CC EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0x9BE572F6 EQ PUSH2 0x415 JUMPI DUP1 PUSH4 0xA694FC3A EQ PUSH2 0x433 JUMPI DUP1 PUSH4 0xB3CD4254 EQ PUSH2 0x44F JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x845738CB EQ PUSH2 0x39F JUMPI DUP1 PUSH4 0x8585D138 EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3D9 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x51D18598 GT PUSH2 0x17A JUMPI DUP1 PUSH4 0x6F77926B GT PUSH2 0x149 JUMPI DUP1 PUSH4 0x6F77926B EQ PUSH2 0x32D JUMPI DUP1 PUSH4 0x70607F5D EQ PUSH2 0x35D JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x379 JUMPI DUP1 PUSH4 0x7BB9769D EQ PUSH2 0x383 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x51D18598 EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0x55F0FE42 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0x5E39CD75 EQ PUSH2 0x2DF JUMPI DUP1 PUSH4 0x63512159 EQ PUSH2 0x2FD JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH4 0x2E1A7D4D GT PUSH2 0x1B6 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x3E093572 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x42A23945 EQ PUSH2 0x269 JUMPI DUP1 PUSH4 0x4D55B178 EQ PUSH2 0x287 JUMPI PUSH2 0x1D7 JUMP JUMPDEST DUP1 PUSH3 0x8E3252 EQ PUSH2 0x1DB JUMPI DUP1 PUSH4 0xC4CA4A6 EQ PUSH2 0x1F9 JUMPI DUP1 PUSH4 0x2E17DE78 EQ PUSH2 0x215 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x1E3 PUSH2 0x533 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F0 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x213 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20E SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0x53C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22A SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0x54E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x246 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xADC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xC88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x271 PUSH2 0xC9A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27E SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28F PUSH2 0xCA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29C SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AD PUSH2 0xD03 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2E7 PUSH2 0xD1E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F4 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x317 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x312 SWAP2 SWAP1 PUSH2 0x210A JUMP JUMPDEST PUSH2 0xD27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x324 SWAP2 SWAP1 PUSH2 0x214F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x347 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x342 SWAP2 SWAP1 PUSH2 0x210A JUMP JUMPDEST PUSH2 0xD72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x354 SWAP2 SWAP1 PUSH2 0x21DD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x377 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x372 SWAP2 SWAP1 PUSH2 0x21F6 JUMP JUMPDEST PUSH2 0xDFA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x381 PUSH2 0xE64 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x39D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x398 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0xE77 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x2234 JUMP JUMPDEST PUSH2 0xE89 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C3 PUSH2 0xFDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D0 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E1 PUSH2 0xFE0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EE SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3FF PUSH2 0x1007 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40C SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x41D PUSH2 0x10B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x42A SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x448 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH2 0x10BD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x457 PUSH2 0x111E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x464 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x475 PUSH2 0x1124 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x47F PUSH2 0x14ED JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x48C SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x49D PUSH2 0x14F6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4A7 PUSH2 0x1528 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B4 SWAP2 SWAP1 PUSH2 0x214F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C5 PUSH2 0x153D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D2 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4E3 PUSH2 0x1546 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4F0 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x501 PUSH2 0x154F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x531 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x52C SWAP2 SWAP1 PUSH2 0x210A JUMP JUMPDEST PUSH2 0x1558 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH1 0x6 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x544 PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0x593 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x58A SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F8 SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x613 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x637 SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST LT ISZERO PUSH2 0x678 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x66F SWAP1 PUSH2 0x2447 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 CALLER SWAP1 POP PUSH0 DUP4 SUB PUSH2 0x6BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6B5 SWAP1 PUSH2 0x24D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x63512159 DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6F7 SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x712 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x736 SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x775 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x76C SWAP1 PUSH2 0x2592 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD LT ISZERO PUSH2 0x7F7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EE SWAP1 PUSH2 0x2620 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x800 DUP2 PUSH2 0x1658 JUMP JUMPDEST PUSH0 PUSH1 0x9 SLOAD PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x84F SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST PUSH2 0x857 PUSH2 0x1707 JUMP JUMPDEST GT PUSH2 0x8C8 JUMPI PUSH2 0x2710 PUSH1 0xA SLOAD DUP6 PUSH2 0x86D SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH2 0x877 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST SWAP1 POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x547C747D3878B7637A9D040B5479A58C43382AAC8E5AA9A30A053C1A0CFFB4F2 DUP3 PUSH1 0x40 MLOAD PUSH2 0x8BF SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST PUSH0 DUP2 DUP6 PUSH2 0x8D5 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP1 POP DUP5 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x925 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x7 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x93D SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH0 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD SUB PUSH2 0x9A4 JUMPI PUSH1 0x1 PUSH1 0x8 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x99C SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA01 SWAP3 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA1D JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xA41 SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0xA80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA77 SWAP1 PUSH2 0x27E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xB24546D975E2628748EFC9ACED80665E0FAD66272033E5C0EA25FD3AFAC99795 DUP7 PUSH1 0x40 MLOAD PUSH2 0xAC6 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xAE4 PUSH2 0x15DA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0xB29 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB20 SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x90BE10CC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB7B JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xB9F SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST LT ISZERO PUSH2 0xBE0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD7 SWAP1 PUSH2 0x286E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3D SWAP3 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xC59 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xC7D SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xC90 PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0x5 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x3 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0xCAE CALLER PUSH2 0x170E JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0xCFD SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xD14 PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0x3 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD7A PUSH2 0x1FFC JUMP JUMPDEST PUSH1 0xD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE02 PUSH2 0x15DA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0xE47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE3E SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0xE59 DUP3 DUP3 PUSH2 0x18A5 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0xE6C PUSH2 0x15DA JUMP JUMPDEST PUSH2 0xE75 PUSH0 PUSH2 0x1CF6 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xE7F PUSH2 0x15DA JUMP JUMPDEST DUP1 PUSH1 0xA DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xEBB JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0xEE9 JUMPI POP PUSH2 0xECA ADDRESS PUSH2 0x1DB7 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xEE8 JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0xF28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF1F SWAP1 PUSH2 0x28FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0xF65 JUMPI PUSH1 0x1 PUSH1 0x2 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0xF76 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 DUP11 PUSH2 0x1DD9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFCF JUMPI PUSH0 PUSH1 0x2 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 0xFC6 SWAP2 SWAP1 PUSH2 0x2968 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA DUP2 JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 SLOAD PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1066 SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1081 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x10A5 SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST PUSH2 0x10AF SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x8 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0x1102 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10F9 SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0x1114 DUP2 CALLER PUSH2 0x18A5 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2710 DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD SUB PUSH2 0x1169 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1160 SWAP1 PUSH2 0x237A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD DUP1 PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x120E SWAP2 SWAP1 PUSH2 0x2307 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1229 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x124D SWAP2 SWAP1 PUSH2 0x23AC JUMP JUMPDEST LT ISZERO PUSH2 0x128E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1285 SWAP1 PUSH2 0x2447 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1297 CALLER PUSH2 0x1658 JUMP JUMPDEST PUSH0 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP PUSH0 DUP2 GT PUSH2 0x131D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1314 SWAP1 PUSH2 0x29CB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x137A SWAP3 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1396 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x13BA SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x13F9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F0 SWAP1 PUSH2 0x27E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xD PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x4 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x148D SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xBA8DE60C3403EC381D1D484652EA1980E3C3E56359195C92525BFF4CE47AD98E DUP3 PUSH1 0x40 MLOAD PUSH2 0x14DA SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH1 0x4 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x14FE PUSH2 0x15DA JUMP JUMPDEST PUSH1 0xB PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH1 0xB PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH1 0xB PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0xC SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x5 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x9 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1560 PUSH2 0x15DA JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x15CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15C5 SWAP1 PUSH2 0x2A59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15D7 DUP2 PUSH2 0x1CF6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x15E2 PUSH2 0x1FF5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1600 PUSH2 0xFE0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1656 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x164D SWAP1 PUSH2 0x2AC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x1663 DUP4 PUSH2 0x170E JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x16B6 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xD PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH1 0xD PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH0 PUSH2 0x175E PUSH2 0x1707 JUMP JUMPDEST SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0xD PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x17AE SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x1806 JUMPI PUSH1 0x9 SLOAD PUSH1 0xD PUSH0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x1803 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP3 DUP3 PUSH2 0x1813 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST SWAP1 POP PUSH2 0x2710 PUSH4 0x1E13380 PUSH1 0xC SLOAD PUSH1 0xD PUSH0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD DUP5 PUSH2 0x186B SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH2 0x1875 SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH2 0x187F SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST PUSH2 0x1889 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST DUP5 PUSH2 0x1894 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP4 POP DUP4 DUP3 SWAP6 POP SWAP6 POP POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0xB PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x18F4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18EB SWAP1 PUSH2 0x2B29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x18FD PUSH2 0x1707 JUMP JUMPDEST SWAP1 POP PUSH1 0x6 SLOAD DUP2 GT PUSH2 0x1943 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193A SWAP1 PUSH2 0x2BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 SLOAD DUP2 LT PUSH2 0x1987 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x197E SWAP1 PUSH2 0x2C1F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 SLOAD DUP4 PUSH1 0x7 SLOAD PUSH2 0x1998 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST GT ISZERO PUSH2 0x19D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19D0 SWAP1 PUSH2 0x2CAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP4 GT PUSH2 0x1A1B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A12 SWAP1 PUSH2 0x2D3B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 SLOAD DUP4 LT ISZERO PUSH2 0x1A60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A57 SWAP1 PUSH2 0x2DEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD EQ PUSH2 0x1AB4 JUMPI PUSH2 0x1AAF DUP3 PUSH2 0x1658 JUMP JUMPDEST PUSH2 0x1B13 JUMP JUMPDEST DUP1 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x8 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1B0B SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP3 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1B61 SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x7 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1BBE SWAP2 SWAP1 PUSH2 0x266B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0xB PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C24 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2E0D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C40 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1C64 SWAP2 SWAP1 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x1CA3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C9A SWAP1 PUSH2 0x2EB2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xEBEDB8B3C678666E7F36970BC8F57ABF6D8FA2E828C0DA91EA5B75BF68ED101A DUP5 PUSH1 0x40 MLOAD PUSH2 0x1CE9 SWAP2 SWAP1 PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH0 DUP1 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 PUSH0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1E28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E1F SWAP1 PUSH2 0x2F40 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2710 PUSH1 0xC SLOAD GT ISZERO PUSH2 0x1E6F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E66 SWAP1 PUSH2 0x2FCE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 GT PUSH2 0x1EB1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EA8 SWAP1 PUSH2 0x305C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1F1F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F16 SWAP1 PUSH2 0x30EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 DUP5 LT PUSH2 0x1F61 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F58 SWAP1 PUSH2 0x3178 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1F6A DUP10 PUSH2 0x1CF6 JUMP JUMPDEST DUP8 PUSH1 0xB PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP7 PUSH1 0xC DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x3 DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x4 DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x6 DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 DUP2 SWAP1 SSTORE POP PUSH3 0x15180 DUP3 PUSH2 0x1FDD SWAP2 SWAP1 PUSH2 0x269E JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xA DUP2 SWAP1 SSTORE POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2038 DUP2 PUSH2 0x2026 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2051 PUSH0 DUP4 ADD DUP5 PUSH2 0x202F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2064 DUP2 PUSH2 0x2026 JUMP JUMPDEST DUP2 EQ PUSH2 0x206E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x207F DUP2 PUSH2 0x205B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x209A JUMPI PUSH2 0x2099 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x20A7 DUP5 DUP3 DUP6 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x20D9 DUP3 PUSH2 0x20B0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x20E9 DUP2 PUSH2 0x20CF JUMP JUMPDEST DUP2 EQ PUSH2 0x20F3 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2104 DUP2 PUSH2 0x20E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x211F JUMPI PUSH2 0x211E PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x212C DUP5 DUP3 DUP6 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2149 DUP2 PUSH2 0x2135 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2162 PUSH0 DUP4 ADD DUP5 PUSH2 0x2140 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2171 DUP2 PUSH2 0x2026 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD PUSH0 DUP3 ADD MLOAD PUSH2 0x218B PUSH0 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x219E PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x21B1 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x21C4 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x21D7 PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x2168 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x21F0 PUSH0 DUP4 ADD DUP5 PUSH2 0x2177 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x220C JUMPI PUSH2 0x220B PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x2219 DUP6 DUP3 DUP7 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x222A DUP6 DUP3 DUP7 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH2 0x120 DUP11 DUP13 SUB SLT ISZERO PUSH2 0x2252 JUMPI PUSH2 0x2251 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x225F DUP13 DUP3 DUP14 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP10 POP POP PUSH1 0x20 PUSH2 0x2270 DUP13 DUP3 DUP14 ADD PUSH2 0x20F6 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x40 PUSH2 0x2281 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x60 PUSH2 0x2292 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x80 PUSH2 0x22A3 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP6 POP POP PUSH1 0xA0 PUSH2 0x22B4 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xC0 PUSH2 0x22C5 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xE0 PUSH2 0x22D6 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x100 PUSH2 0x22E8 DUP13 DUP3 DUP14 ADD PUSH2 0x2071 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 POP SWAP3 SWAP6 SWAP9 JUMP JUMPDEST PUSH2 0x2301 DUP2 PUSH2 0x20CF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x231A PUSH0 DUP4 ADD DUP5 PUSH2 0x22F8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2364 PUSH1 0x1F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x236F DUP3 PUSH2 0x2330 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2391 DUP2 PUSH2 0x2358 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x23A6 DUP2 PUSH2 0x205B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C1 JUMPI PUSH2 0x23C0 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x23CE DUP5 DUP3 DUP6 ADD PUSH2 0x2398 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20696E73756666696369656E742066756E6473 PUSH0 DUP3 ADD MSTORE PUSH32 0x20696E2074686520747265617375727900000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2431 PUSH1 0x30 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x243C DUP3 PUSH2 0x23D7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x245E DUP2 PUSH2 0x2425 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20616D6F756E742073686F756C64206265206E PUSH0 DUP3 ADD MSTORE PUSH32 0x6F6E2D7A65726F00000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x24BF PUSH1 0x27 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x24CA DUP3 PUSH2 0x2465 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x24EC DUP2 PUSH2 0x24B3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24FC DUP2 PUSH2 0x2135 JUMP JUMPDEST DUP2 EQ PUSH2 0x2506 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x2517 DUP2 PUSH2 0x24F3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2532 JUMPI PUSH2 0x2531 PUSH2 0x2057 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x253F DUP5 DUP3 DUP6 ADD PUSH2 0x2509 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F742061207374616B65686F6C64657200 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x257C PUSH1 0x1F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2587 DUP3 PUSH2 0x2548 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x25A9 DUP2 PUSH2 0x2570 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F756768207374616B652074 PUSH0 DUP3 ADD MSTORE PUSH32 0x6F20756E7374616B650000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x260A PUSH1 0x29 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2615 DUP3 PUSH2 0x25B0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2637 DUP2 PUSH2 0x25FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x2675 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x2680 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x2698 JUMPI PUSH2 0x2697 PUSH2 0x263E JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x26A8 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x26B3 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x26C1 DUP2 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x26D8 JUMPI PUSH2 0x26D7 PUSH2 0x263E JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x2716 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x2721 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2731 JUMPI PUSH2 0x2730 PUSH2 0x26DF JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2746 DUP3 PUSH2 0x2026 JUMP JUMPDEST SWAP2 POP PUSH2 0x2751 DUP4 PUSH2 0x2026 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2768 PUSH2 0x263E JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2782 PUSH0 DUP4 ADD DUP6 PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x278F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x202F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x27CA PUSH1 0x20 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x27D5 DUP3 PUSH2 0x2796 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x27F7 DUP2 PUSH2 0x27BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F7567682077697468647261 PUSH0 DUP3 ADD MSTORE PUSH32 0x7761626C6520746F6B656E730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2858 PUSH1 0x2C DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2863 DUP3 PUSH2 0x27FE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2885 DUP2 PUSH2 0x284C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x28E6 PUSH1 0x2E DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x28F1 DUP3 PUSH2 0x288C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2913 DUP2 PUSH2 0x28DA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2952 PUSH2 0x294D PUSH2 0x2948 DUP5 PUSH2 0x291A JUMP JUMPDEST PUSH2 0x292F JUMP JUMPDEST PUSH2 0x2923 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2962 DUP2 PUSH2 0x2938 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x297B PUSH0 DUP4 ADD DUP5 PUSH2 0x2959 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F2072657761726420746F20636C61696D PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x29B5 PUSH1 0x20 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x29C0 DUP3 PUSH2 0x2981 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x29E2 DUP2 PUSH2 0x29A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2A43 PUSH1 0x26 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A4E DUP3 PUSH2 0x29E9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2A70 DUP2 PUSH2 0x2A37 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2AAB PUSH1 0x20 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2AB6 DUP3 PUSH2 0x2A77 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2AD8 DUP2 PUSH2 0x2A9F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E672069732070617573656400 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2B13 PUSH1 0x1F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B1E DUP3 PUSH2 0x2ADF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2B40 DUP2 PUSH2 0x2B07 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E67206E6F7420737461727465 PUSH0 DUP3 ADD MSTORE PUSH32 0x6420796574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2BA1 PUSH1 0x25 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BAC DUP3 PUSH2 0x2B47 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2BCE DUP2 PUSH2 0x2B95 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E6720656E6465640000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2C09 PUSH1 0x1B DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C14 DUP3 PUSH2 0x2BD5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2C36 DUP2 PUSH2 0x2BFD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206D6178207374616B696E6720746F6B656E20 PUSH0 DUP3 ADD MSTORE PUSH32 0x6C696D6974207265616368656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2C97 PUSH1 0x2D DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2CA2 DUP3 PUSH2 0x2C3D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2CC4 DUP2 PUSH2 0x2C8B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH0 DUP3 ADD MSTORE PUSH32 0x6265206E6F6E2D7A65726F000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2D25 PUSH1 0x2B DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D30 DUP3 PUSH2 0x2CCB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2D52 DUP2 PUSH2 0x2D19 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH0 DUP3 ADD MSTORE PUSH32 0x67726561746572207468616E206D696E696D756D20616D6F756E7420616C6C6F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x7765640000000000000000000000000000000000000000000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2DD9 PUSH1 0x43 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2DE4 DUP3 PUSH2 0x2D59 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2E06 DUP2 PUSH2 0x2DCD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x2E20 PUSH0 DUP4 ADD DUP7 PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x2E2D PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x2E3A PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x202F JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH0 DUP3 ADD MSTORE PUSH32 0x20746F6B656E7300000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2E9C PUSH1 0x27 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2EA7 DUP3 PUSH2 0x2E42 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2EC9 DUP2 PUSH2 0x2E90 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2F2A PUSH1 0x2B DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F35 DUP3 PUSH2 0x2ED0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2F57 DUP2 PUSH2 0x2F1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2061707920726174652073686F756C64206265 PUSH0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20313030303000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x2FB8 PUSH1 0x30 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FC3 DUP3 PUSH2 0x2F5E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x2FE5 DUP2 PUSH2 0x2FAC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B652064617973206D757374206265 PUSH0 DUP3 ADD MSTORE PUSH32 0x206E6F6E2D7A65726F0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3046 PUSH1 0x29 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x3051 DUP3 PUSH2 0x2FEC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3073 DUP2 PUSH2 0x303A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20746F6B656E20616464726573732063616E6E PUSH0 DUP3 ADD MSTORE PUSH32 0x6F74206265203020616464726573730000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x30D4 PUSH1 0x2F DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x30DF DUP3 PUSH2 0x307A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x3101 DUP2 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2073746172742064617465206D757374206265 PUSH0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20656E64206461746500000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x3162 PUSH1 0x33 DUP4 PUSH2 0x2320 JUMP JUMPDEST SWAP2 POP PUSH2 0x316D DUP3 PUSH2 0x3108 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x318F DUP2 PUSH2 0x3156 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 TLOAD 0x27 LOG3 0xBF 0xC CALLCODE PUSH11 0x9F1DE6EA688A28BED6FE65 KECCAK256 JUMPDEST MULMOD PUSH30 0x6BB58BABF4116A803764736F6C6343000818003300000000000000000000 ",
"sourceMap": "23671:14036:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27879:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31017:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34415:1182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32440:241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31232:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27432:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29541:201;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28293:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30794:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28862:124;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30511:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30179:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31818:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19909:103;;;:::i;:::-;;31443:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25449:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24824:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19261:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29847:158;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28494:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32877:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24763:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35685:570;;;:::i;:::-;;27661:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32076:105;;;:::i;:::-;;29072:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29296:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28085:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28670:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20167:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27879:102;27931:7;27958:15;;27951:22;;27879:102;:::o;31017:124::-;19147:13;:11;:13::i;:::-;31124:9:::1;31102:19;:31;;;;31017:124:::0;:::o;34415:1182::-;16186:1;16784:7;;:19;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;34494:7:::1;25339:6;25296:13;;;;;;;;;;;25289:31;;;25329:4;25289:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;25267:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34514:12:::2;34529:10;34514:25;;34571:1;34560:7;:12:::0;34552:64:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;34635:4;:18;;;34654:4;34635:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34742:7;34714:6;:12;34721:4;34714:12;;;;;;;;;;;;;;;:24;;;:35;;34706:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;34855:23;34873:4;34855:17;:23::i;:::-;34891;34980:10;;34951:6;:12;34958:4;34951:12;;;;;;;;;;;;;;;:26;;;:39;;;;:::i;:::-;34931:16;:14;:16::i;:::-;:59;34927:233;;24812:5;35037:26;;35027:7;:36;;;;:::i;:::-;35026:63;;;;:::i;:::-;35007:83;;35126:4;35110:38;;;35132:15;35110:38;;;;;;:::i;:::-;;;;;;;;34927:233;35172:23;35208:15;35198:7;:25;;;;:::i;:::-;35172:51;;35264:7;35236:6;:12;35243:4;35236:12;;;;;;;;;;;;;;;:24;;;:35;;;;;;;:::i;:::-;;;;;;;;35306:7;35284:18;;:29;;;;;;;:::i;:::-;;;;;;;;35358:1;35330:6;:12;35337:4;35330:12;;;;;;;;;;;;;;;:24;;;:29:::0;35326:115:::2;;35428:1;35413:11;;:16;;;;;;;:::i;:::-;;;;;;;;35326:115;35468:13;;;;;;;;;;;35461:30;;;35492:4;35498:15;35461:53;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35453:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35575:4;35567:22;;;35581:7;35567:22;;;;;;:::i;:::-;;;;;;;;34503:1094;;;16948:1:::1;16142::::0;17096:7;:22;;;;34415:1182;:::o;32440:241::-;19147:13;:11;:13::i;:::-;16186:1:::1;16784:7;;:19:::0;16776:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;32557:6:::2;32525:4;:26;;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;32517:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;32630:13;;;;;;;;;;;32623:30;;;32654:10;32666:6;32623:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16142:1:::1;17096:7:::0;:22:::1;;;;32440:241:::0;:::o;31232:108::-;19147:13;:11;:13::i;:::-;31325:7:::1;31309:13;:23;;;;31232:108:::0;:::o;27432:114::-;27490:7;27517:21;;27510:28;;27432:114;:::o;29541:201::-;29599:7;29620:14;29640:36;29665:10;29640:24;:36::i;:::-;29619:57;;;29728:6;29694;:18;29701:10;29694:18;;;;;;;;;;;;;;;:31;;;:40;;;;:::i;:::-;29687:47;;;29541:201;:::o;28293:108::-;28348:7;28375:18;;28368:25;;28293:108;:::o;30794:126::-;19147:13;:11;:13::i;:::-;30903:9:::1;30879:21;:33;;;;30794:126:::0;:::o;28862:124::-;28925:7;28952:26;;28945:33;;28862:124;:::o;30511:123::-;30572:4;30625:1;30596:6;:13;30603:5;30596:13;;;;;;;;;;;;;;;:25;;;:30;;30589:37;;30511:123;;;:::o;30179:119::-;30240:11;;:::i;:::-;30271:6;:19;30278:11;30271:19;;;;;;;;;;;;;;;30264:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30179:119;;;:::o;31818:129::-;19147:13;:11;:13::i;:::-;16186:1:::1;16784:7;;:19:::0;16776:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;31913:26:::2;31926:6;31934:4;31913:12;:26::i;:::-;16142:1:::1;17096:7:::0;:22:::1;;;;31818:129:::0;;:::o;19909:103::-;19147:13;:11;:13::i;:::-;19974:30:::1;20001:1;19974:18;:30::i;:::-;19909:103::o:0;31443:144::-;19147:13;:11;:13::i;:::-;31566::::1;31537:26;:42;;;;31443:144:::0;:::o;25449:681::-;11764:19;11787:13;;;;;;;;;;;11786:14;11764:36;;11834:14;:34;;;;;11867:1;11852:12;;;;;;;;;;;:16;;;11834:34;11833:97;;;;11875:33;11902:4;11875:18;:33::i;:::-;11874:34;:55;;;;;11928:1;11912:12;;;;;;;;;;;:17;;;11874:55;11833:97;11811:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;12030:1;12015:12;;:16;;;;;;;;;;;;;;;;;;12046:14;12042:67;;;12093:4;12077:13;;:20;;;;;;;;;;;;;;;;;;12042:67;25816:306:::1;25860:6;25881:13;25909:8;25932:21;25968:19;26002:15;26032:13;26060:10;26085:26;25816:29;:306::i;:::-;12135:14:::0;12131:102;;;12182:5;12166:13;;:21;;;;;;;;;;;;;;;;;;12207:14;12219:1;12207:14;;;;;;:::i;:::-;;;;;;;;12131:102;11753:487;25449:681;;;;;;;;;:::o;24824:54::-;24876:2;24824:54;:::o;19261:87::-;19307:7;19334:6;;;;;;;;;;;19327:13;;19261:87;:::o;29847:158::-;29903:7;29979:18;;29937:13;;;;;;;;;;;29930:31;;;29970:4;29930:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;;;;:::i;:::-;29923:74;;29847:158;:::o;28494:94::-;28542:7;28569:11;;28562:18;;28494:94;:::o;32877:106::-;16186:1;16784:7;;:19;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;32942:33:::1;32955:7;32964:10;32942:12;:33::i;:::-;16142:1:::0;17096:7;:22;;;;32877:106;:::o;24763:54::-;24812:5;24763:54;:::o;35685:570::-;16186:1;16784:7;;:19;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;35753:6:::1;:18;35760:10;35753:18;;;;;;;;;;;;;;;:31;;;25339:6;25296:13;;;;;;;;;;;25289:31;;;25329:4;25289:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;25267:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35797:29:::2;35815:10;35797:17;:29::i;:::-;35837:20;35860:6;:18;35867:10;35860:18;;;;;;;;;;;;;;;:31;;;35837:54;;35927:1;35912:12;:16;35904:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35993:13;;;;;;;;;;;35986:30;;;36017:10;36029:12;35986:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35978:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;36126:1;36092:6;:18;36099:10;36092:18;;;;;;;;;;;;;;;:31;;:35;;;;36180:12;36138:6;:18;36145:10;36138:18;;;;;;;;;;;;;;;:38;;;:54;;;;;;;:::i;:::-;;;;;;;;36222:10;36210:37;;;36234:12;36210:37;;;;;;:::i;:::-;;;;;;;;35786:469;16948:1:::1;16142::::0;17096:7;:22;;;;35685:570::o;27661:112::-;27719:7;27746:19;;27739:26;;27661:112;:::o;32076:105::-;19147:13;:11;:13::i;:::-;32157:16:::1;;;;;;;;;;;32156:17;32137:16;;:36;;;;;;;;;;;;;;;;;;32076:105::o:0;29072:99::-;29123:4;29147:16;;;;;;;;;;;29140:23;;29072:99;:::o;29296:84::-;29337:7;29364:8;;29357:15;;29296:84;:::o;28085:98::-;28135:7;28162:13;;28155:20;;28085:98;:::o;28670:92::-;28717:7;28744:10;;28737:17;;28670:92;:::o;20167:201::-;19147:13;:11;:13::i;:::-;20276:1:::1;20256:22;;:8;:22;;::::0;20248:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20332:28;20351:8;20332:18;:28::i;:::-;20167:201:::0;:::o;19426:132::-;19501:12;:10;:12::i;:::-;19490:23;;:7;:5;:7::i;:::-;:23;;;19482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19426:132::o;36464:261::-;36526:18;36546:19;36569:31;36594:5;36569:24;:31::i;:::-;36525:75;;;;36643:10;36613:6;:13;36620:5;36613:13;;;;;;;;;;;;;;;:26;;;:40;;;;;;;:::i;:::-;;;;;;;;36706:11;36664:6;:13;36671:5;36664:13;;;;;;;;;;;;;;;:39;;:53;;;;36514:211;;36464:261;:::o;37597:107::-;37654:7;37681:15;37674:22;;37597:107;:::o;36913:636::-;36984:7;36993;37013:18;37042:21;37066:6;:13;37073:5;37066:13;;;;;;;;;;;;;;;:39;;;37042:63;;37118:19;37140:16;:14;:16::i;:::-;37118:38;;37217:10;;37187:6;:13;37194:5;37187:13;;;;;;;;;;;;;;;:27;;;:40;;;;:::i;:::-;37173:11;:54;37169:141;;;37288:10;;37258:6;:13;37265:5;37258:13;;;;;;;;;;;;;;;:27;;;:40;;;;:::i;:::-;37244:54;;37169:141;37322:23;37362:13;37348:11;:27;;;;:::i;:::-;37322:53;;24812:5;37462:8;37450;;37422:6;:13;37429:5;37422:13;;;;;;;;;;;;;;;:25;;;37404:15;:43;;;;:::i;:::-;:54;;;;:::i;:::-;37403:67;;;;:::i;:::-;37402:94;;;;:::i;:::-;37388:108;;;;;:::i;:::-;;;37517:10;37529:11;37509:32;;;;;;;;36913:636;;;:::o;32991:1287::-;33073:16;;;;;;;;;;;33072:17;33064:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33138:19;33160:16;:14;:16::i;:::-;33138:38;;33209:15;;33195:11;:29;33187:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;33299:13;;33285:11;:27;33277:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33395:19;;33384:7;33363:18;;:28;;;;:::i;:::-;:51;;33355:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;33493:1;33483:7;:11;33475:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33586:21;;33575:7;:32;;33553:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;33748:1;33719:6;:13;33726:5;33719:13;;;;;;;;;;;;;;;:25;;;:30;33715:204;;33766:24;33784:5;33766:17;:24::i;:::-;33715:204;;;33865:11;33823:6;:13;33830:5;33823:13;;;;;;;;;;;;;;;:39;;:53;;;;33906:1;33891:11;;:16;;;;;;;:::i;:::-;;;;;;;;33715:204;33960:7;33931:6;:13;33938:5;33931:13;;;;;;;;;;;;;;;:25;;;:36;;;;;;;:::i;:::-;;;;;;;;34008:11;33978:6;:13;33985:5;33978:13;;;;;;;;;;;;;;;:27;;:41;;;;34054:7;34032:18;;:29;;;;;;;:::i;:::-;;;;;;;;34103:13;;;;;;;;;;;34096:34;;;34131:10;34151:4;34158:7;34096:70;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34074:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;34255:5;34249:21;;;34262:7;34249:21;;;;;;:::i;:::-;;;;;;;;33053:1225;32991:1287;;:::o;20528:191::-;20602:16;20621:6;;;;;;;;;;;20602:25;;20647:8;20638:6;;:17;;;;;;;;;;;;;;;;;;20702:8;20671:40;;20692:8;20671:40;;;;;;;;;;;;20591:128;20528:191;:::o;1266:326::-;1326:4;1583:1;1561:7;:19;;;:23;1554:30;;1266:326;;;:::o;26138:1164::-;13594:13;;;;;;;;;;;13586:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26543:5:::1;26531:8;;:17;;26523:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;26633:1;26620:10;:14;26612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26724:1;26699:27;;:13;:27;;::::0;26691:87:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26815:13;26797:15;:31;26789:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;26897:26;26916:6;26897:18;:26::i;:::-;26950:13;26934;;:29;;;;;;;;;;;;;;;;;;26985:8;26974;:19;;;;27028:21;27004;:45;;;;27082:19;27060;:41;;;;27130:15;27112;:33;;;;27172:13;27156;:29;;;;27222:6;27209:10;:19;;;;:::i;:::-;27196:10;:32;;;;27268:26;27239;:55;;;;26138:1164:::0;;;;;;;;;:::o;17812:98::-;17865:7;17892:10;17885:17;;17812:98;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:96::-;1546:7;1575:24;1593:5;1575:24;:::i;:::-;1564:35;;1509:96;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:329::-;1943:6;1992:2;1980:9;1971:7;1967:23;1963:32;1960:119;;;1998:79;;:::i;:::-;1960:119;2118:1;2143:53;2188:7;2179:6;2168:9;2164:22;2143:53;:::i;:::-;2133:63;;2089:117;1884:329;;;;:::o;2219:90::-;2253:7;2296:5;2289:13;2282:21;2271:32;;2219:90;;;:::o;2315:109::-;2396:21;2411:5;2396:21;:::i;:::-;2391:3;2384:34;2315:109;;:::o;2430:210::-;2517:4;2555:2;2544:9;2540:18;2532:26;;2568:65;2630:1;2619:9;2615:17;2606:6;2568:65;:::i;:::-;2430:210;;;;:::o;2646:108::-;2723:24;2741:5;2723:24;:::i;:::-;2718:3;2711:37;2646:108;;:::o;2820:1081::-;2959:4;2954:3;2950:14;3053:4;3046:5;3042:16;3036:23;3072:63;3129:4;3124:3;3120:14;3106:12;3072:63;:::i;:::-;2974:171;3235:4;3228:5;3224:16;3218:23;3254:63;3311:4;3306:3;3302:14;3288:12;3254:63;:::i;:::-;3155:172;3418:4;3411:5;3407:16;3401:23;3437:63;3494:4;3489:3;3485:14;3471:12;3437:63;:::i;:::-;3337:173;3613:4;3606:5;3602:16;3596:23;3632:63;3689:4;3684:3;3680:14;3666:12;3632:63;:::i;:::-;3520:185;3802:4;3795:5;3791:16;3785:23;3821:63;3878:4;3873:3;3869:14;3855:12;3821:63;:::i;:::-;3715:179;2928:973;2820:1081;;:::o;3907:307::-;4042:4;4080:3;4069:9;4065:19;4057:27;;4094:113;4204:1;4193:9;4189:17;4180:6;4094:113;:::i;:::-;3907:307;;;;:::o;4220:474::-;4288:6;4296;4345:2;4333:9;4324:7;4320:23;4316:32;4313:119;;;4351:79;;:::i;:::-;4313:119;4471:1;4496:53;4541:7;4532:6;4521:9;4517:22;4496:53;:::i;:::-;4486:63;;4442:117;4598:2;4624:53;4669:7;4660:6;4649:9;4645:22;4624:53;:::i;:::-;4614:63;;4569:118;4220:474;;;;;:::o;4700:1495::-;4831:6;4839;4847;4855;4863;4871;4879;4887;4895;4944:3;4932:9;4923:7;4919:23;4915:33;4912:120;;;4951:79;;:::i;:::-;4912:120;5071:1;5096:53;5141:7;5132:6;5121:9;5117:22;5096:53;:::i;:::-;5086:63;;5042:117;5198:2;5224:53;5269:7;5260:6;5249:9;5245:22;5224:53;:::i;:::-;5214:63;;5169:118;5326:2;5352:53;5397:7;5388:6;5377:9;5373:22;5352:53;:::i;:::-;5342:63;;5297:118;5454:2;5480:53;5525:7;5516:6;5505:9;5501:22;5480:53;:::i;:::-;5470:63;;5425:118;5582:3;5609:53;5654:7;5645:6;5634:9;5630:22;5609:53;:::i;:::-;5599:63;;5553:119;5711:3;5738:53;5783:7;5774:6;5763:9;5759:22;5738:53;:::i;:::-;5728:63;;5682:119;5840:3;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5811:119;5969:3;5996:53;6041:7;6032:6;6021:9;6017:22;5996:53;:::i;:::-;5986:63;;5940:119;6098:3;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6069:119;4700:1495;;;;;;;;;;;:::o;6201:118::-;6288:24;6306:5;6288:24;:::i;:::-;6283:3;6276:37;6201:118;;:::o;6325:222::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:71;6537:1;6526:9;6522:17;6513:6;6469:71;:::i;:::-;6325:222;;;;:::o;6553:169::-;6637:11;6671:6;6666:3;6659:19;6711:4;6706:3;6702:14;6687:29;;6553:169;;;;:::o;6728:181::-;6868:33;6864:1;6856:6;6852:14;6845:57;6728:181;:::o;6915:366::-;7057:3;7078:67;7142:2;7137:3;7078:67;:::i;:::-;7071:74;;7154:93;7243:3;7154:93;:::i;:::-;7272:2;7267:3;7263:12;7256:19;;6915:366;;;:::o;7287:419::-;7453:4;7491:2;7480:9;7476:18;7468:26;;7540:9;7534:4;7530:20;7526:1;7515:9;7511:17;7504:47;7568:131;7694:4;7568:131;:::i;:::-;7560:139;;7287:419;;;:::o;7712:143::-;7769:5;7800:6;7794:13;7785:22;;7816:33;7843:5;7816:33;:::i;:::-;7712:143;;;;:::o;7861:351::-;7931:6;7980:2;7968:9;7959:7;7955:23;7951:32;7948:119;;;7986:79;;:::i;:::-;7948:119;8106:1;8131:64;8187:7;8178:6;8167:9;8163:22;8131:64;:::i;:::-;8121:74;;8077:128;7861:351;;;;:::o;8218:235::-;8358:34;8354:1;8346:6;8342:14;8335:58;8427:18;8422:2;8414:6;8410:15;8403:43;8218:235;:::o;8459:366::-;8601:3;8622:67;8686:2;8681:3;8622:67;:::i;:::-;8615:74;;8698:93;8787:3;8698:93;:::i;:::-;8816:2;8811:3;8807:12;8800:19;;8459:366;;;:::o;8831:419::-;8997:4;9035:2;9024:9;9020:18;9012:26;;9084:9;9078:4;9074:20;9070:1;9059:9;9055:17;9048:47;9112:131;9238:4;9112:131;:::i;:::-;9104:139;;8831:419;;;:::o;9256:226::-;9396:34;9392:1;9384:6;9380:14;9373:58;9465:9;9460:2;9452:6;9448:15;9441:34;9256:226;:::o;9488:366::-;9630:3;9651:67;9715:2;9710:3;9651:67;:::i;:::-;9644:74;;9727:93;9816:3;9727:93;:::i;:::-;9845:2;9840:3;9836:12;9829:19;;9488:366;;;:::o;9860:419::-;10026:4;10064:2;10053:9;10049:18;10041:26;;10113:9;10107:4;10103:20;10099:1;10088:9;10084:17;10077:47;10141:131;10267:4;10141:131;:::i;:::-;10133:139;;9860:419;;;:::o;10285:116::-;10355:21;10370:5;10355:21;:::i;:::-;10348:5;10345:32;10335:60;;10391:1;10388;10381:12;10335:60;10285:116;:::o;10407:137::-;10461:5;10492:6;10486:13;10477:22;;10508:30;10532:5;10508:30;:::i;:::-;10407:137;;;;:::o;10550:345::-;10617:6;10666:2;10654:9;10645:7;10641:23;10637:32;10634:119;;;10672:79;;:::i;:::-;10634:119;10792:1;10817:61;10870:7;10861:6;10850:9;10846:22;10817:61;:::i;:::-;10807:71;;10763:125;10550:345;;;;:::o;10901:181::-;11041:33;11037:1;11029:6;11025:14;11018:57;10901:181;:::o;11088:366::-;11230:3;11251:67;11315:2;11310:3;11251:67;:::i;:::-;11244:74;;11327:93;11416:3;11327:93;:::i;:::-;11445:2;11440:3;11436:12;11429:19;;11088:366;;;:::o;11460:419::-;11626:4;11664:2;11653:9;11649:18;11641:26;;11713:9;11707:4;11703:20;11699:1;11688:9;11684:17;11677:47;11741:131;11867:4;11741:131;:::i;:::-;11733:139;;11460:419;;;:::o;11885:228::-;12025:34;12021:1;12013:6;12009:14;12002:58;12094:11;12089:2;12081:6;12077:15;12070:36;11885:228;:::o;12119:366::-;12261:3;12282:67;12346:2;12341:3;12282:67;:::i;:::-;12275:74;;12358:93;12447:3;12358:93;:::i;:::-;12476:2;12471:3;12467:12;12460:19;;12119:366;;;:::o;12491:419::-;12657:4;12695:2;12684:9;12680:18;12672:26;;12744:9;12738:4;12734:20;12730:1;12719:9;12715:17;12708:47;12772:131;12898:4;12772:131;:::i;:::-;12764:139;;12491:419;;;:::o;12916:180::-;12964:77;12961:1;12954:88;13061:4;13058:1;13051:15;13085:4;13082:1;13075:15;13102:191;13142:3;13161:20;13179:1;13161:20;:::i;:::-;13156:25;;13195:20;13213:1;13195:20;:::i;:::-;13190:25;;13238:1;13235;13231:9;13224:16;;13259:3;13256:1;13253:10;13250:36;;;13266:18;;:::i;:::-;13250:36;13102:191;;;;:::o;13299:410::-;13339:7;13362:20;13380:1;13362:20;:::i;:::-;13357:25;;13396:20;13414:1;13396:20;:::i;:::-;13391:25;;13451:1;13448;13444:9;13473:30;13491:11;13473:30;:::i;:::-;13462:41;;13652:1;13643:7;13639:15;13636:1;13633:22;13613:1;13606:9;13586:83;13563:139;;13682:18;;:::i;:::-;13563:139;13347:362;13299:410;;;;:::o;13715:180::-;13763:77;13760:1;13753:88;13860:4;13857:1;13850:15;13884:4;13881:1;13874:15;13901:185;13941:1;13958:20;13976:1;13958:20;:::i;:::-;13953:25;;13992:20;14010:1;13992:20;:::i;:::-;13987:25;;14031:1;14021:35;;14036:18;;:::i;:::-;14021:35;14078:1;14075;14071:9;14066:14;;13901:185;;;;:::o;14092:194::-;14132:4;14152:20;14170:1;14152:20;:::i;:::-;14147:25;;14186:20;14204:1;14186:20;:::i;:::-;14181:25;;14230:1;14227;14223:9;14215:17;;14254:1;14248:4;14245:11;14242:37;;;14259:18;;:::i;:::-;14242:37;14092:194;;;;:::o;14292:332::-;14413:4;14451:2;14440:9;14436:18;14428:26;;14464:71;14532:1;14521:9;14517:17;14508:6;14464:71;:::i;:::-;14545:72;14613:2;14602:9;14598:18;14589:6;14545:72;:::i;:::-;14292:332;;;;;:::o;14630:182::-;14770:34;14766:1;14758:6;14754:14;14747:58;14630:182;:::o;14818:366::-;14960:3;14981:67;15045:2;15040:3;14981:67;:::i;:::-;14974:74;;15057:93;15146:3;15057:93;:::i;:::-;15175:2;15170:3;15166:12;15159:19;;14818:366;;;:::o;15190:419::-;15356:4;15394:2;15383:9;15379:18;15371:26;;15443:9;15437:4;15433:20;15429:1;15418:9;15414:17;15407:47;15471:131;15597:4;15471:131;:::i;:::-;15463:139;;15190:419;;;:::o;15615:231::-;15755:34;15751:1;15743:6;15739:14;15732:58;15824:14;15819:2;15811:6;15807:15;15800:39;15615:231;:::o;15852:366::-;15994:3;16015:67;16079:2;16074:3;16015:67;:::i;:::-;16008:74;;16091:93;16180:3;16091:93;:::i;:::-;16209:2;16204:3;16200:12;16193:19;;15852:366;;;:::o;16224:419::-;16390:4;16428:2;16417:9;16413:18;16405:26;;16477:9;16471:4;16467:20;16463:1;16452:9;16448:17;16441:47;16505:131;16631:4;16505:131;:::i;:::-;16497:139;;16224:419;;;:::o;16649:233::-;16789:34;16785:1;16777:6;16773:14;16766:58;16858:16;16853:2;16845:6;16841:15;16834:41;16649:233;:::o;16888:366::-;17030:3;17051:67;17115:2;17110:3;17051:67;:::i;:::-;17044:74;;17127:93;17216:3;17127:93;:::i;:::-;17245:2;17240:3;17236:12;17229:19;;16888:366;;;:::o;17260:419::-;17426:4;17464:2;17453:9;17449:18;17441:26;;17513:9;17507:4;17503:20;17499:1;17488:9;17484:17;17477:47;17541:131;17667:4;17541:131;:::i;:::-;17533:139;;17260:419;;;:::o;17685:85::-;17730:7;17759:5;17748:16;;17685:85;;;:::o;17776:86::-;17811:7;17851:4;17844:5;17840:16;17829:27;;17776:86;;;:::o;17868:60::-;17896:3;17917:5;17910:12;;17868:60;;;:::o;17934:154::-;17990:9;18023:59;18039:42;18048:32;18074:5;18048:32;:::i;:::-;18039:42;:::i;:::-;18023:59;:::i;:::-;18010:72;;17934:154;;;:::o;18094:143::-;18187:43;18224:5;18187:43;:::i;:::-;18182:3;18175:56;18094:143;;:::o;18243:234::-;18342:4;18380:2;18369:9;18365:18;18357:26;;18393:77;18467:1;18456:9;18452:17;18443:6;18393:77;:::i;:::-;18243:234;;;;:::o;18483:182::-;18623:34;18619:1;18611:6;18607:14;18600:58;18483:182;:::o;18671:366::-;18813:3;18834:67;18898:2;18893:3;18834:67;:::i;:::-;18827:74;;18910:93;18999:3;18910:93;:::i;:::-;19028:2;19023:3;19019:12;19012:19;;18671:366;;;:::o;19043:419::-;19209:4;19247:2;19236:9;19232:18;19224:26;;19296:9;19290:4;19286:20;19282:1;19271:9;19267:17;19260:47;19324:131;19450:4;19324:131;:::i;:::-;19316:139;;19043:419;;;:::o;19468:225::-;19608:34;19604:1;19596:6;19592:14;19585:58;19677:8;19672:2;19664:6;19660:15;19653:33;19468:225;:::o;19699:366::-;19841:3;19862:67;19926:2;19921:3;19862:67;:::i;:::-;19855:74;;19938:93;20027:3;19938:93;:::i;:::-;20056:2;20051:3;20047:12;20040:19;;19699:366;;;:::o;20071:419::-;20237:4;20275:2;20264:9;20260:18;20252:26;;20324:9;20318:4;20314:20;20310:1;20299:9;20295:17;20288:47;20352:131;20478:4;20352:131;:::i;:::-;20344:139;;20071:419;;;:::o;20496:182::-;20636:34;20632:1;20624:6;20620:14;20613:58;20496:182;:::o;20684:366::-;20826:3;20847:67;20911:2;20906:3;20847:67;:::i;:::-;20840:74;;20923:93;21012:3;20923:93;:::i;:::-;21041:2;21036:3;21032:12;21025:19;;20684:366;;;:::o;21056:419::-;21222:4;21260:2;21249:9;21245:18;21237:26;;21309:9;21303:4;21299:20;21295:1;21284:9;21280:17;21273:47;21337:131;21463:4;21337:131;:::i;:::-;21329:139;;21056:419;;;:::o;21481:181::-;21621:33;21617:1;21609:6;21605:14;21598:57;21481:181;:::o;21668:366::-;21810:3;21831:67;21895:2;21890:3;21831:67;:::i;:::-;21824:74;;21907:93;21996:3;21907:93;:::i;:::-;22025:2;22020:3;22016:12;22009:19;;21668:366;;;:::o;22040:419::-;22206:4;22244:2;22233:9;22229:18;22221:26;;22293:9;22287:4;22283:20;22279:1;22268:9;22264:17;22257:47;22321:131;22447:4;22321:131;:::i;:::-;22313:139;;22040:419;;;:::o;22465:224::-;22605:34;22601:1;22593:6;22589:14;22582:58;22674:7;22669:2;22661:6;22657:15;22650:32;22465:224;:::o;22695:366::-;22837:3;22858:67;22922:2;22917:3;22858:67;:::i;:::-;22851:74;;22934:93;23023:3;22934:93;:::i;:::-;23052:2;23047:3;23043:12;23036:19;;22695:366;;;:::o;23067:419::-;23233:4;23271:2;23260:9;23256:18;23248:26;;23320:9;23314:4;23310:20;23306:1;23295:9;23291:17;23284:47;23348:131;23474:4;23348:131;:::i;:::-;23340:139;;23067:419;;;:::o;23492:177::-;23632:29;23628:1;23620:6;23616:14;23609:53;23492:177;:::o;23675:366::-;23817:3;23838:67;23902:2;23897:3;23838:67;:::i;:::-;23831:74;;23914:93;24003:3;23914:93;:::i;:::-;24032:2;24027:3;24023:12;24016:19;;23675:366;;;:::o;24047:419::-;24213:4;24251:2;24240:9;24236:18;24228:26;;24300:9;24294:4;24290:20;24286:1;24275:9;24271:17;24264:47;24328:131;24454:4;24328:131;:::i;:::-;24320:139;;24047:419;;;:::o;24472:232::-;24612:34;24608:1;24600:6;24596:14;24589:58;24681:15;24676:2;24668:6;24664:15;24657:40;24472:232;:::o;24710:366::-;24852:3;24873:67;24937:2;24932:3;24873:67;:::i;:::-;24866:74;;24949:93;25038:3;24949:93;:::i;:::-;25067:2;25062:3;25058:12;25051:19;;24710:366;;;:::o;25082:419::-;25248:4;25286:2;25275:9;25271:18;25263:26;;25335:9;25329:4;25325:20;25321:1;25310:9;25306:17;25299:47;25363:131;25489:4;25363:131;:::i;:::-;25355:139;;25082:419;;;:::o;25507:230::-;25647:34;25643:1;25635:6;25631:14;25624:58;25716:13;25711:2;25703:6;25699:15;25692:38;25507:230;:::o;25743:366::-;25885:3;25906:67;25970:2;25965:3;25906:67;:::i;:::-;25899:74;;25982:93;26071:3;25982:93;:::i;:::-;26100:2;26095:3;26091:12;26084:19;;25743:366;;;:::o;26115:419::-;26281:4;26319:2;26308:9;26304:18;26296:26;;26368:9;26362:4;26358:20;26354:1;26343:9;26339:17;26332:47;26396:131;26522:4;26396:131;:::i;:::-;26388:139;;26115:419;;;:::o;26540:291::-;26680:34;26676:1;26668:6;26664:14;26657:58;26749:34;26744:2;26736:6;26732:15;26725:59;26818:5;26813:2;26805:6;26801:15;26794:30;26540:291;:::o;26837:366::-;26979:3;27000:67;27064:2;27059:3;27000:67;:::i;:::-;26993:74;;27076:93;27165:3;27076:93;:::i;:::-;27194:2;27189:3;27185:12;27178:19;;26837:366;;;:::o;27209:419::-;27375:4;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27209:419;;;:::o;27634:442::-;27783:4;27821:2;27810:9;27806:18;27798:26;;27834:71;27902:1;27891:9;27887:17;27878:6;27834:71;:::i;:::-;27915:72;27983:2;27972:9;27968:18;27959:6;27915:72;:::i;:::-;27997;28065:2;28054:9;28050:18;28041:6;27997:72;:::i;:::-;27634:442;;;;;;:::o;28082:226::-;28222:34;28218:1;28210:6;28206:14;28199:58;28291:9;28286:2;28278:6;28274:15;28267:34;28082:226;:::o;28314:366::-;28456:3;28477:67;28541:2;28536:3;28477:67;:::i;:::-;28470:74;;28553:93;28642:3;28553:93;:::i;:::-;28671:2;28666:3;28662:12;28655:19;;28314:366;;;:::o;28686:419::-;28852:4;28890:2;28879:9;28875:18;28867:26;;28939:9;28933:4;28929:20;28925:1;28914:9;28910:17;28903:47;28967:131;29093:4;28967:131;:::i;:::-;28959:139;;28686:419;;;:::o;29111:230::-;29251:34;29247:1;29239:6;29235:14;29228:58;29320:13;29315:2;29307:6;29303:15;29296:38;29111:230;:::o;29347:366::-;29489:3;29510:67;29574:2;29569:3;29510:67;:::i;:::-;29503:74;;29586:93;29675:3;29586:93;:::i;:::-;29704:2;29699:3;29695:12;29688:19;;29347:366;;;:::o;29719:419::-;29885:4;29923:2;29912:9;29908:18;29900:26;;29972:9;29966:4;29962:20;29958:1;29947:9;29943:17;29936:47;30000:131;30126:4;30000:131;:::i;:::-;29992:139;;29719:419;;;:::o;30144:235::-;30284:34;30280:1;30272:6;30268:14;30261:58;30353:18;30348:2;30340:6;30336:15;30329:43;30144:235;:::o;30385:366::-;30527:3;30548:67;30612:2;30607:3;30548:67;:::i;:::-;30541:74;;30624:93;30713:3;30624:93;:::i;:::-;30742:2;30737:3;30733:12;30726:19;;30385:366;;;:::o;30757:419::-;30923:4;30961:2;30950:9;30946:18;30938:26;;31010:9;31004:4;31000:20;30996:1;30985:9;30981:17;30974:47;31038:131;31164:4;31038:131;:::i;:::-;31030:139;;30757:419;;;:::o;31182:228::-;31322:34;31318:1;31310:6;31306:14;31299:58;31391:11;31386:2;31378:6;31374:15;31367:36;31182:228;:::o;31416:366::-;31558:3;31579:67;31643:2;31638:3;31579:67;:::i;:::-;31572:74;;31655:93;31744:3;31655:93;:::i;:::-;31773:2;31768:3;31764:12;31757:19;;31416:366;;;:::o;31788:419::-;31954:4;31992:2;31981:9;31977:18;31969:26;;32041:9;32035:4;32031:20;32027:1;32016:9;32012:17;32005:47;32069:131;32195:4;32069:131;:::i;:::-;32061:139;;31788:419;;;:::o;32213:234::-;32353:34;32349:1;32341:6;32337:14;32330:58;32422:17;32417:2;32409:6;32405:15;32398:42;32213:234;:::o;32453:366::-;32595:3;32616:67;32680:2;32675:3;32616:67;:::i;:::-;32609:74;;32692:93;32781:3;32692:93;:::i;:::-;32810:2;32805:3;32801:12;32794:19;;32453:366;;;:::o;32825:419::-;32991:4;33029:2;33018:9;33014:18;33006:26;;33078:9;33072:4;33068:20;33064:1;33053:9;33049:17;33042:47;33106:131;33232:4;33106:131;:::i;:::-;33098:139;;32825:419;;;:::o;33250:238::-;33390:34;33386:1;33378:6;33374:14;33367:58;33459:21;33454:2;33446:6;33442:15;33435:46;33250:238;:::o;33494:366::-;33636:3;33657:67;33721:2;33716:3;33657:67;:::i;:::-;33650:74;;33733:93;33822:3;33733:93;:::i;:::-;33851:2;33846:3;33842:12;33835:19;;33494:366;;;:::o;33866:419::-;34032:4;34070:2;34059:9;34055:18;34047:26;;34119:9;34113:4;34109:20;34105:1;34094:9;34090:17;34083:47;34147:131;34273:4;34147:131;:::i;:::-;34139:139;;33866:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2549600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"APY_RATE_CHANGE_THRESHOLD()": "393",
"PERCENTAGE_DENOMINATOR()": "436",
"claimReward()": "infinite",
"getAPY()": "2476",
"getEarlyUnstakeFeePercentage()": "2522",
"getMaxStakingTokenLimit()": "2499",
"getMinimumStakingAmount()": "2522",
"getStakeDays()": "2520",
"getStakeEndDate()": "2498",
"getStakeStartDate()": "2479",
"getStakingStatus()": "2584",
"getTotalStakedTokens()": "2478",
"getTotalUsers()": "2499",
"getUser(address)": "infinite",
"getUserEstimatedRewards()": "infinite",
"getWithdrawableAmount()": "infinite",
"initialize(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "infinite",
"isStakeHolder(address)": "2961",
"owner()": "2605",
"renounceOwnership()": "30479",
"stake(uint256)": "infinite",
"stakeForUser(uint256,address)": "infinite",
"toggleStakingStatus()": "28897",
"transferOwnership(address)": "30841",
"unstake(uint256)": "infinite",
"updateEarlyUnstakeFeePercentage(uint256)": "24887",
"updateMaximumStakingAmount(uint256)": "24845",
"updateMinimumStakingAmount(uint256)": "24844",
"updateStakingEndDate(uint256)": "24844",
"withdraw(uint256)": "infinite"
},
"internal": {
"__TokenStaking_init_unchained(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "infinite",
"_calculateRewards(address)": "infinite",
"_getUserEstimatedRewards(address)": "infinite",
"_stakeTokens(uint256,address)": "infinite",
"getCurrentTime()": "21"
}
},
"methodIdentifiers": {
"APY_RATE_CHANGE_THRESHOLD()": "8585d138",
"PERCENTAGE_DENOMINATOR()": "b3cd4254",
"claimReward()": "b88a802f",
"getAPY()": "d2cbf7ad",
"getEarlyUnstakeFeePercentage()": "5e39cd75",
"getMaxStakingTokenLimit()": "bb8febc6",
"getMinimumStakingAmount()": "42a23945",
"getStakeDays()": "f18cce76",
"getStakeEndDate()": "f0116b74",
"getStakeStartDate()": "008e3252",
"getStakingStatus()": "cab9b8fb",
"getTotalStakedTokens()": "51d18598",
"getTotalUsers()": "9be572f6",
"getUser(address)": "6f77926b",
"getUserEstimatedRewards()": "4d55b178",
"getWithdrawableAmount()": "90be10cc",
"initialize(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "845738cb",
"isStakeHolder(address)": "63512159",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"stake(uint256)": "a694fc3a",
"stakeForUser(uint256,address)": "70607f5d",
"toggleStakingStatus()": "c5d62b18",
"transferOwnership(address)": "f2fde38b",
"unstake(uint256)": "2e17de78",
"updateEarlyUnstakeFeePercentage(uint256)": "7bb9769d",
"updateMaximumStakingAmount(uint256)": "0c4ca4a6",
"updateMinimumStakingAmount(uint256)": "55f0fe42",
"updateStakingEndDate(uint256)": "3e093572",
"withdraw(uint256)": "2e1a7d4d"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "ClaimReward",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "EarlyUnStakeFee",
"type": "event"
},
{
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Stake",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "UnStake",
"type": "event"
},
{
"inputs": [],
"name": "APY_RATE_CHANGE_THRESHOLD",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "PERCENTAGE_DENOMINATOR",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "claimReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAPY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getEarlyUnstakeFeePercentage",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getMaxStakingTokenLimit",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getMinimumStakingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeDays",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeEndDate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeStartDate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakingStatus",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTotalStakedTokens",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTotalUsers",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "userAddress",
"type": "address"
}
],
"name": "getUser",
"outputs": [
{
"components": [
{
"internalType": "uint256",
"name": "stakeAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "rewardAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "lastStakeTime",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "lastRewardCalculationTime",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "rewardsClaimedSoFar",
"type": "uint256"
}
],
"internalType": "struct TokenStaking.User",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getUserEstimatedRewards",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getWithdrawableAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner_",
"type": "address"
},
{
"internalType": "address",
"name": "tokenAddress_",
"type": "address"
},
{
"internalType": "uint256",
"name": "apyRate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "minimumStakingAmount_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxStakeTokenLimit_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeStartDate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeEndDate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeDays_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "earlyUnstakeFeePercentage_",
"type": "uint256"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "isStakeHolder",
"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": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "stake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "user",
"type": "address"
}
],
"name": "stakeForUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "toggleStakingStatus",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "unstake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newPercentage",
"type": "uint256"
}
],
"name": "updateEarlyUnstakeFeePercentage",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newAmount",
"type": "uint256"
}
],
"name": "updateMaximumStakingAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newAmount",
"type": "uint256"
}
],
"name": "updateMinimumStakingAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newDate",
"type": "uint256"
}
],
"name": "updateStakingEndDate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "ClaimReward",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "EarlyUnStakeFee",
"type": "event"
},
{
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Stake",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "UnStake",
"type": "event"
},
{
"inputs": [],
"name": "APY_RATE_CHANGE_THRESHOLD",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "PERCENTAGE_DENOMINATOR",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "claimReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAPY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getEarlyUnstakeFeePercentage",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getMaxStakingTokenLimit",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getMinimumStakingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeDays",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeEndDate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeStartDate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakingStatus",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTotalStakedTokens",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTotalUsers",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "userAddress",
"type": "address"
}
],
"name": "getUser",
"outputs": [
{
"components": [
{
"internalType": "uint256",
"name": "stakeAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "rewardAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "lastStakeTime",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "lastRewardCalculationTime",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "rewardsClaimedSoFar",
"type": "uint256"
}
],
"internalType": "struct TokenStaking.User",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getUserEstimatedRewards",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getWithdrawableAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner_",
"type": "address"
},
{
"internalType": "address",
"name": "tokenAddress_",
"type": "address"
},
{
"internalType": "uint256",
"name": "apyRate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "minimumStakingAmount_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxStakeTokenLimit_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeStartDate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeEndDate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeDays_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "earlyUnstakeFeePercentage_",
"type": "uint256"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "isStakeHolder",
"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": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "stake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "user",
"type": "address"
}
],
"name": "stakeForUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "toggleStakingStatus",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "unstake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newPercentage",
"type": "uint256"
}
],
"name": "updateEarlyUnstakeFeePercentage",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newAmount",
"type": "uint256"
}
],
"name": "updateMaximumStakingAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newAmount",
"type": "uint256"
}
],
"name": "updateMinimumStakingAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newDate",
"type": "uint256"
}
],
"name": "updateStakingEndDate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"events": {
"Initialized(uint8)": {
"details": "Triggered when the contract has been initialized or reinitialized."
}
},
"kind": "dev",
"methods": {
"getAPY()": {
"returns": {
"_0": "Current APY Rate"
}
},
"getUser(address)": {
"params": {
"userAddress": "User's address to get details of"
},
"returns": {
"_0": "User Struct"
}
},
"getUserEstimatedRewards()": {
"returns": {
"_0": "msg.sender's estimated reward amount"
}
},
"isStakeHolder(address)": {
"params": {
"_user": "Address of the user to check"
},
"returns": {
"_0": "True if user is a stakeholder, false otherwise"
}
},
"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 anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"stake(uint256)": {
"params": {
"_amount": "Amount of tokens to be staked"
}
},
"stakeForUser(uint256,address)": {
"details": "This function can be used to stake tokens for specific user",
"params": {
"amount": "the amount to stake",
"user": "user's address"
}
},
"toggleStakingStatus()": {
"details": "This function can be used to toggle staking status"
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
},
"unstake(uint256)": {
"params": {
"_amount": "Amount of tokens to be unstaked"
}
},
"withdraw(uint256)": {
"details": "This function can be used to withdraw the available tokens with this contract to the caller",
"params": {
"amount": "the amount to withdraw"
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"claimReward()": {
"notice": "This function is used to claim user's rewards"
},
"getAPY()": {
"notice": "This function is used to get the current APY Rate"
},
"getEarlyUnstakeFeePercentage()": {
"notice": "This function is used to get early unstake fee percentage"
},
"getMaxStakingTokenLimit()": {
"notice": "This function is used to get the maximum staking token limit for program"
},
"getMinimumStakingAmount()": {
"notice": "This function is used to get the minimum staking amount"
},
"getStakeDays()": {
"notice": "This function is used to get stake days"
},
"getStakeEndDate()": {
"notice": "This function is used to get the staking end date for program"
},
"getStakeStartDate()": {
"notice": "This function is used to get the staking start date for program"
},
"getStakingStatus()": {
"notice": "This function is used to get staking status"
},
"getTotalStakedTokens()": {
"notice": "This function is used to get the total no of tokens that are staked"
},
"getTotalUsers()": {
"notice": "This function is used to get the total no of users"
},
"getUser(address)": {
"notice": "This function is used to get User's details"
},
"getUserEstimatedRewards()": {
"notice": "This function is used to get msg.sender's estimated reward amount"
},
"getWithdrawableAmount()": {
"notice": "This function is used to get withdrawable amount from contract"
},
"isStakeHolder(address)": {
"notice": "This function is used to check if a user is a stakeholder"
},
"stake(uint256)": {
"notice": "This function is used to stake tokens"
},
"stakeForUser(uint256,address)": {
"notice": "stake tokens for specific user"
},
"toggleStakingStatus()": {
"notice": "enable/disable staking"
},
"unstake(uint256)": {
"notice": "This function is used to unstake tokens"
},
"updateEarlyUnstakeFeePercentage(uint256)": {
"notice": "This function is used to update early unstake fee percentage"
},
"updateMaximumStakingAmount(uint256)": {
"notice": "This function is used to update maximum staking amount"
},
"updateMinimumStakingAmount(uint256)": {
"notice": "This function is used to update minimum staking amount"
},
"updateStakingEndDate(uint256)": {
"notice": "This function is used to update staking end date"
},
"withdraw(uint256)": {
"notice": "Withdraw the specified amount if possible."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenSTacking.sol": "TokenStaking"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenSTacking.sol": {
"keccak256": "0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63",
"license": "MIT",
"urls": [
"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2",
"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
contract MyToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable, ERC20Permit {
constructor(address initialOwner)
ERC20("MyToken", "MTK")
Ownable(initialOwner)
ERC20Permit("MyToken")
{}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
// The following functions are overrides required by Solidity.
function _update(address from, address to, uint256 value)
internal
override(ERC20, ERC20Pausable)
{
super._update(from, to, value);
}
}
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/proxy/utils/Initializable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
/**
* @dev 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]
* ```
* 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]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev 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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev 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.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev 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.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev 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.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev 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.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File: TokenStaking.sol
pragma solidity ^0.8.0;
contract TokenStaking is Ownable, ReentrancyGuard, Initializable {
// Struct to store the User's Details
struct User {
uint256 stakeAmount; // Stake Amount
uint256 rewardAmount; // Reward Amount
uint256 lastStakeTime; // Last Stake Timestamp
uint256 lastRewardCalculationTime; // Last Reward Calculation Timestamp
uint256 rewardsClaimedSoFar; // Sum of rewards claimed so far
}
uint256 _minimumStakingAmount; // minimum staking amount
uint256 _maxStakeTokenLimit; // maximum staking token limit for program
uint256 _stakeEndDate; // end date for program
uint256 _stakeStartDate; // end date for program
uint256 _totalStakedTokens; // Total no of tokens that are staked
uint256 _totalUsers; // Total no of users
uint256 _stakeDays; // staking days
uint256 _earlyUnstakeFeePercentage; // early unstake fee percentage
bool _isStakingPaused; // staking status
// Token contract address
address private _tokenAddress;
// APY
uint256 _apyRate;
uint256 public constant PERCENTAGE_DENOMINATOR = 10000;
uint256 public constant APY_RATE_CHANGE_THRESHOLD = 10;
// User address => User
mapping(address => User) private _users;
event Stake(address indexed user, uint256 amount);
event UnStake(address indexed user, uint256 amount);
event EarlyUnStakeFee(address indexed user, uint256 amount);
event ClaimReward(address indexed user, uint256 amount);
modifier whenTreasuryHasBalance(uint256 amount) {
require(
IERC20(_tokenAddress).balanceOf(address(this)) >= amount,
"TokenStaking: insufficient funds in the treasury"
);
_;
}
function initialize(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_
) public virtual initializer {
__TokenStaking_init_unchained(
owner_,
tokenAddress_,
apyRate_,
minimumStakingAmount_,
maxStakeTokenLimit_,
stakeStartDate_,
stakeEndDate_,
stakeDays_,
earlyUnstakeFeePercentage_
);
}
function __TokenStaking_init_unchained(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_
) internal onlyInitializing {
require(_apyRate <= 10000, "TokenStaking: apy rate should be less than 10000");
require(stakeDays_ > 0, "TokenStaking: stake days must be non-zero");
require(tokenAddress_ != address(0), "TokenStaking: token address cannot be 0 address");
require(stakeStartDate_ < stakeEndDate_, "TokenStaking: start date must be less than end date");
_transferOwnership(owner_);
_tokenAddress = tokenAddress_;
_apyRate = apyRate_;
_minimumStakingAmount = minimumStakingAmount_;
_maxStakeTokenLimit = maxStakeTokenLimit_;
_stakeStartDate = stakeStartDate_;
_stakeEndDate = stakeEndDate_;
_stakeDays = stakeDays_ * 1 days;
_earlyUnstakeFeePercentage = earlyUnstakeFeePercentage_;
}
/* View Methods Start */
/**
* @notice This function is used to get the minimum staking amount
*/
function getMinimumStakingAmount() external view returns (uint256) {
return _minimumStakingAmount;
}
/**
* @notice This function is used to get the maximum staking token limit for program
*/
function getMaxStakingTokenLimit() external view returns (uint256) {
return _maxStakeTokenLimit;
}
/**
* @notice This function is used to get the staking start date for program
*/
function getStakeStartDate() external view returns (uint256) {
return _stakeStartDate;
}
/**
* @notice This function is used to get the staking end date for program
*/
function getStakeEndDate() external view returns (uint256) {
return _stakeEndDate;
}
/**
* @notice This function is used to get the total no of tokens that are staked
*/
function getTotalStakedTokens() external view returns (uint256) {
return _totalStakedTokens;
}
/**
* @notice This function is used to get the total no of users
*/
function getTotalUsers() external view returns (uint256) {
return _totalUsers;
}
/**
* @notice This function is used to get stake days
*/
function getStakeDays() external view returns (uint256) {
return _stakeDays;
}
/**
* @notice This function is used to get early unstake fee percentage
*/
function getEarlyUnstakeFeePercentage() external view returns (uint256) {
return _earlyUnstakeFeePercentage;
}
/**
* @notice This function is used to get staking status
*/
function getStakingStatus() external view returns (bool) {
return _isStakingPaused;
}
/**
* @notice This function is used to get the current APY Rate
* @return Current APY Rate
*/
function getAPY() external view returns (uint256) {
return _apyRate;
}
/**
* @notice This function is used to get msg.sender's estimated reward amount
* @return msg.sender's estimated reward amount
*/
function getUserEstimatedRewards() external view returns (uint256) {
(uint256 amount, ) = _getUserEstimatedRewards(msg.sender);
return _users[msg.sender].rewardAmount + amount;
}
/**
* @notice This function is used to get withdrawable amount from contract
*/
function getWithdrawableAmount() external view returns (uint256) {
return IERC20(_tokenAddress).balanceOf(address(this)) - _totalStakedTokens;
}
/**
* @notice This function is used to get User's details
* @param userAddress User's address to get details of
* @return User Struct
*/
function getUser(address userAddress) external view returns (User memory) {
return _users[userAddress];
}
/**
* @notice This function is used to check if a user is a stakeholder
* @param _user Address of the user to check
* @return True if user is a stakeholder, false otherwise
*/
function isStakeHolder(address _user) external view returns (bool) {
return _users[_user].stakeAmount != 0;
}
/* View Methods End */
/* Owner Methods Start */
/**
* @notice This function is used to update minimum staking amount
*/
function updateMinimumStakingAmount(uint256 newAmount) external onlyOwner {
_minimumStakingAmount = newAmount;
}
/**
* @notice This function is used to update maximum staking amount
*/
function updateMaximumStakingAmount(uint256 newAmount) external onlyOwner {
_maxStakeTokenLimit = newAmount;
}
/**
* @notice This function is used to update staking end date
*/
function updateStakingEndDate(uint256 newDate) external onlyOwner {
_stakeEndDate = newDate;
}
/**
* @notice This function is used to update early unstake fee percentage
*/
function updateEarlyUnstakeFeePercentage(uint256 newPercentage) external onlyOwner {
_earlyUnstakeFeePercentage = newPercentage;
}
/**
* @notice stake tokens for specific user
* @dev This function can be used to stake tokens for specific user
*
* @param amount the amount to stake
* @param user user's address
*/
function stakeForUser(uint256 amount, address user) external onlyOwner nonReentrant {
_stakeTokens(amount, user);
}
/**
* @notice enable/disable staking
* @dev This function can be used to toggle staking status
*/
function toggleStakingStatus() external onlyOwner {
_isStakingPaused = !_isStakingPaused;
}
/**
* @notice Withdraw the specified amount if possible.
*
* @dev This function can be used to withdraw the available tokens
* with this contract to the caller
*
* @param amount the amount to withdraw
*/
function withdraw(uint256 amount) external onlyOwner nonReentrant {
require(this.getWithdrawableAmount() >= amount, "TokenStaking: not enough withdrawable tokens");
IERC20(_tokenAddress).transfer(msg.sender, amount);
}
/* Owner Methods End */
/* User Methods Start */
/**
* @notice This function is used to stake tokens
* @param _amount Amount of tokens to be staked
*/
function stake(uint256 _amount) external nonReentrant {
_stakeTokens(_amount, msg.sender);
}
function _stakeTokens(uint256 _amount, address user_) private {
require(!_isStakingPaused, "TokenStaking: staking is paused");
uint256 currentTime = getCurrentTime();
require(currentTime > _stakeStartDate, "TokenStaking: staking not started yet");
require(currentTime < _stakeEndDate, "TokenStaking: staking ended");
require(_totalStakedTokens + _amount <= _maxStakeTokenLimit, "TokenStaking: max staking token limit reached");
require(_amount > 0, "TokenStaking: stake amount must be non-zero");
require(
_amount >= _minimumStakingAmount,
"TokenStaking: stake amount must greater than minimum amount allowed"
);
if (_users[user_].stakeAmount != 0) {
_calculateRewards(user_);
} else {
_users[user_].lastRewardCalculationTime = currentTime;
_totalUsers += 1;
}
_users[user_].stakeAmount += _amount;
_users[user_].lastStakeTime = currentTime;
_totalStakedTokens += _amount;
require(
IERC20(_tokenAddress).transferFrom(msg.sender, address(this), _amount),
"TokenStaking: failed to transfer tokens"
);
emit Stake(user_, _amount);
}
/**
* @notice This function is used to unstake tokens
* @param _amount Amount of tokens to be unstaked
*/
function unstake(uint256 _amount) external nonReentrant whenTreasuryHasBalance(_amount) {
address user = msg.sender;
require(_amount != 0, "TokenStaking: amount should be non-zero");
require(this.isStakeHolder(user), "TokenStaking: not a stakeholder");
require(_users[user].stakeAmount >= _amount, "TokenStaking: not enough stake to unstake");
// Calculate User's rewards until now
_calculateRewards(user);
uint256 feeEarlyUnstake;
if (getCurrentTime() <= _users[user].lastStakeTime + _stakeDays) {
feeEarlyUnstake = ((_amount * _earlyUnstakeFeePercentage) / PERCENTAGE_DENOMINATOR);
emit EarlyUnStakeFee(user, feeEarlyUnstake);
}
uint256 amountToUnstake = _amount - feeEarlyUnstake;
_users[user].stakeAmount -= _amount;
_totalStakedTokens -= _amount;
if (_users[user].stakeAmount == 0) {
// delete _users[user];
_totalUsers -= 1;
}
require(IERC20(_tokenAddress).transfer(user, amountToUnstake), "TokenStaking: failed to transfer");
emit UnStake(user, _amount);
}
/**
* @notice This function is used to claim user's rewards
*/
function claimReward() external nonReentrant whenTreasuryHasBalance(_users[msg.sender].rewardAmount) {
_calculateRewards(msg.sender);
uint256 rewardAmount = _users[msg.sender].rewardAmount;
require(rewardAmount > 0, "TokenStaking: no reward to claim");
require(IERC20(_tokenAddress).transfer(msg.sender, rewardAmount), "TokenStaking: failed to transfer");
_users[msg.sender].rewardAmount = 0;
_users[msg.sender].rewardsClaimedSoFar += rewardAmount;
emit ClaimReward(msg.sender, rewardAmount);
}
/* User Methods End */
/* Private Helper Methods Start */
/**
* @notice This function is used to calculate rewards for a user
* @param _user Address of the user
*/
function _calculateRewards(address _user) private {
(uint256 userReward, uint256 currentTime) = _getUserEstimatedRewards(_user);
_users[_user].rewardAmount += userReward;
_users[_user].lastRewardCalculationTime = currentTime;
}
/**
* @notice This function is used to get estimated rewards for a user
* @param _user Address of the user
* @return Estimated rewards for the user
*/
function _getUserEstimatedRewards(address _user) private view returns (uint256, uint256) {
uint256 userReward;
uint256 userTimestamp = _users[_user].lastRewardCalculationTime;
uint256 currentTime = getCurrentTime();
if (currentTime > _users[_user].lastStakeTime + _stakeDays) {
currentTime = _users[_user].lastStakeTime + _stakeDays;
}
uint256 totalStakedTime = currentTime - userTimestamp;
userReward += ((totalStakedTime * _users[_user].stakeAmount * _apyRate) / 365 days) / PERCENTAGE_DENOMINATOR;
return (userReward, currentTime);
}
/* Private Helper Methods End */
function getCurrentTime() internal view virtual returns (uint256) {
return block.timestamp;
}
}
This file has been truncated, but you can view the full file.
{
"id": "1f24a79c611dd1e492b68c2d80476e6e",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.24",
"solcLongVersion": "0.8.24+commit.e11b9ed9",
"input": {
"language": "Solidity",
"sources": {
"contracts/TokenSTacking.sol": {
"content": "// SPDX-License-Identifier: MIT\r\n// File: @openzeppelin/contracts/utils/Address.sol\r\n\r\n\r\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)\r\n\r\npragma solidity ^0.8.1;\r\n\r\n/**\r\n * @dev Collection of functions related to the address type\r\n */\r\nlibrary Address {\r\n /**\r\n * @dev Returns true if `account` is a contract.\r\n *\r\n * [IMPORTANT]\r\n * ====\r\n * It is unsafe to assume that an address for which this function returns\r\n * false is an externally-owned account (EOA) and not a contract.\r\n *\r\n * Among others, `isContract` will return false for the following\r\n * types of addresses:\r\n *\r\n * - an externally-owned account\r\n * - a contract in construction\r\n * - an address where a contract will be created\r\n * - an address where a contract lived, but was destroyed\r\n * ====\r\n *\r\n * [IMPORTANT]\r\n * ====\r\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\r\n *\r\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\r\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\r\n * constructor.\r\n * ====\r\n */\r\n function isContract(address account) internal view returns (bool) {\r\n // This method relies on extcodesize/address.code.length, which returns 0\r\n // for contracts in construction, since the code is only stored at the end\r\n // of the constructor execution.\r\n\r\n return account.code.length > 0;\r\n }\r\n\r\n /**\r\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\r\n * `recipient`, forwarding all available gas and reverting on errors.\r\n *\r\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\r\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\r\n * imposed by `transfer`, making them unable to receive funds via\r\n * `transfer`. {sendValue} removes this limitation.\r\n *\r\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\r\n *\r\n * IMPORTANT: because control is transferred to `recipient`, care must be\r\n * taken to not create reentrancy vulnerabilities. Consider using\r\n * {ReentrancyGuard} or the\r\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\r\n */\r\n function sendValue(address payable recipient, uint256 amount) internal {\r\n require(address(this).balance >= amount, \"Address: insufficient balance\");\r\n\r\n (bool success, ) = recipient.call{value: amount}(\"\");\r\n require(success, \"Address: unable to send value, recipient may have reverted\");\r\n }\r\n\r\n /**\r\n * @dev Performs a Solidity function call using a low level `call`. A\r\n * plain `call` is an unsafe replacement for a function call: use this\r\n * function instead.\r\n *\r\n * If `target` reverts with a revert reason, it is bubbled up by this\r\n * function (like regular Solidity function calls).\r\n *\r\n * Returns the raw returned data. To convert to the expected return value,\r\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\r\n *\r\n * Requirements:\r\n *\r\n * - `target` must be a contract.\r\n * - calling `target` with `data` must not revert.\r\n *\r\n * _Available since v3.1._\r\n */\r\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\r\n return functionCall(target, data, \"Address: low-level call failed\");\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\r\n * `errorMessage` as a fallback revert reason when `target` reverts.\r\n *\r\n * _Available since v3.1._\r\n */\r\n function functionCall(\r\n address target,\r\n bytes memory data,\r\n string memory errorMessage\r\n ) internal returns (bytes memory) {\r\n return functionCallWithValue(target, data, 0, errorMessage);\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\r\n * but also transferring `value` wei to `target`.\r\n *\r\n * Requirements:\r\n *\r\n * - the calling contract must have an ETH balance of at least `value`.\r\n * - the called Solidity function must be `payable`.\r\n *\r\n * _Available since v3.1._\r\n */\r\n function functionCallWithValue(\r\n address target,\r\n bytes memory data,\r\n uint256 value\r\n ) internal returns (bytes memory) {\r\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\r\n * with `errorMessage` as a fallback revert reason when `target` reverts.\r\n *\r\n * _Available since v3.1._\r\n */\r\n function functionCallWithValue(\r\n address target,\r\n bytes memory data,\r\n uint256 value,\r\n string memory errorMessage\r\n ) internal returns (bytes memory) {\r\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\r\n require(isContract(target), \"Address: call to non-contract\");\r\n\r\n (bool success, bytes memory returndata) = target.call{value: value}(data);\r\n return verifyCallResult(success, returndata, errorMessage);\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\r\n * but performing a static call.\r\n *\r\n * _Available since v3.3._\r\n */\r\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\r\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\r\n * but performing a static call.\r\n *\r\n * _Available since v3.3._\r\n */\r\n function functionStaticCall(\r\n address target,\r\n bytes memory data,\r\n string memory errorMessage\r\n ) internal view returns (bytes memory) {\r\n require(isContract(target), \"Address: static call to non-contract\");\r\n\r\n (bool success, bytes memory returndata) = target.staticcall(data);\r\n return verifyCallResult(success, returndata, errorMessage);\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\r\n * but performing a delegate call.\r\n *\r\n * _Available since v3.4._\r\n */\r\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\r\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\r\n }\r\n\r\n /**\r\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\r\n * but performing a delegate call.\r\n *\r\n * _Available since v3.4._\r\n */\r\n function functionDelegateCall(\r\n address target,\r\n bytes memory data,\r\n string memory errorMessage\r\n ) internal returns (bytes memory) {\r\n require(isContract(target), \"Address: delegate call to non-contract\");\r\n\r\n (bool success, bytes memory returndata) = target.delegatecall(data);\r\n return verifyCallResult(success, returndata, errorMessage);\r\n }\r\n\r\n /**\r\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\r\n * revert reason using the provided one.\r\n *\r\n * _Available since v4.3._\r\n */\r\n function verifyCallResult(\r\n bool success,\r\n bytes memory returndata,\r\n string memory errorMessage\r\n ) internal pure returns (bytes memory) {\r\n if (success) {\r\n return returndata;\r\n } else {\r\n // Look for revert reason and bubble it up if present\r\n if (returndata.length > 0) {\r\n // The easiest way to bubble the revert reason is using memory via assembly\r\n /// @solidity memory-safe-assembly\r\n assembly {\r\n let returndata_size := mload(returndata)\r\n revert(add(32, returndata), returndata_size)\r\n }\r\n } else {\r\n revert(errorMessage);\r\n }\r\n }\r\n }\r\n}\r\n\r\n// File: @openzeppelin/contracts/proxy/utils/Initializable.sol\r\n\r\n\r\n// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)\r\n\r\npragma solidity ^0.8.2;\r\n\r\n\r\n/**\r\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\r\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\r\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\r\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\r\n *\r\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\r\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\r\n * case an upgrade adds a module that needs to be initialized.\r\n *\r\n * For example:\r\n *\r\n * [.hljs-theme-light.nopadding]\r\n * ```\r\n * contract MyToken is ERC20Upgradeable {\r\n * function initialize() initializer public {\r\n * __ERC20_init(\"MyToken\", \"MTK\");\r\n * }\r\n * }\r\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\r\n * function initializeV2() reinitializer(2) public {\r\n * __ERC20Permit_init(\"MyToken\");\r\n * }\r\n * }\r\n * ```\r\n *\r\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\r\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\r\n *\r\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\r\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\r\n *\r\n * [CAUTION]\r\n * ====\r\n * Avoid leaving a contract uninitialized.\r\n *\r\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\r\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\r\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\r\n *\r\n * [.hljs-theme-light.nopadding]\r\n * ```\r\n * /// @custom:oz-upgrades-unsafe-allow constructor\r\n * constructor() {\r\n * _disableInitializers();\r\n * }\r\n * ```\r\n * ====\r\n */\r\nabstract contract Initializable {\r\n /**\r\n * @dev Indicates that the contract has been initialized.\r\n * @custom:oz-retyped-from bool\r\n */\r\n uint8 private _initialized;\r\n\r\n /**\r\n * @dev Indicates that the contract is in the process of being initialized.\r\n */\r\n bool private _initializing;\r\n\r\n /**\r\n * @dev Triggered when the contract has been initialized or reinitialized.\r\n */\r\n event Initialized(uint8 version);\r\n\r\n /**\r\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\r\n * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.\r\n */\r\n modifier initializer() {\r\n bool isTopLevelCall = !_initializing;\r\n require(\r\n (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),\r\n \"Initializable: contract is already initialized\"\r\n );\r\n _initialized = 1;\r\n if (isTopLevelCall) {\r\n _initializing = true;\r\n }\r\n _;\r\n if (isTopLevelCall) {\r\n _initializing = false;\r\n emit Initialized(1);\r\n }\r\n }\r\n\r\n /**\r\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\r\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\r\n * used to initialize parent contracts.\r\n *\r\n * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original\r\n * initialization step. This is essential to configure modules that are added through upgrades and that require\r\n * initialization.\r\n *\r\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\r\n * a contract, executing them in the right order is up to the developer or operator.\r\n */\r\n modifier reinitializer(uint8 version) {\r\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\r\n _initialized = version;\r\n _initializing = true;\r\n _;\r\n _initializing = false;\r\n emit Initialized(version);\r\n }\r\n\r\n /**\r\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\r\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\r\n */\r\n modifier onlyInitializing() {\r\n require(_initializing, \"Initializable: contract is not initializing\");\r\n _;\r\n }\r\n\r\n /**\r\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\r\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\r\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\r\n * through proxies.\r\n */\r\n function _disableInitializers() internal virtual {\r\n require(!_initializing, \"Initializable: contract is initializing\");\r\n if (_initialized < type(uint8).max) {\r\n _initialized = type(uint8).max;\r\n emit Initialized(type(uint8).max);\r\n }\r\n }\r\n}\r\n\r\n// File: @openzeppelin/contracts/security/ReentrancyGuard.sol\r\n\r\n\r\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\r\n\r\npragma solidity ^0.8.0;\r\n\r\n/**\r\n * @dev Contract module that helps prevent reentrant calls to a function.\r\n *\r\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\r\n * available, which can be applied to functions to make sure there are no nested\r\n * (reentrant) calls to them.\r\n *\r\n * Note that because there is a single `nonReentrant` guard, functions marked as\r\n * `nonReentrant` may not call one another. This can be worked around by making\r\n * those functions `private`, and then adding `external` `nonReentrant` entry\r\n * points to them.\r\n *\r\n * TIP: If you would like to learn more about reentrancy and alternative ways\r\n * to protect against it, check out our blog post\r\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\r\n */\r\nabstract contract ReentrancyGuard {\r\n // Booleans are more expensive than uint256 or any type that takes up a full\r\n // word because each write operation emits an extra SLOAD to first read the\r\n // slot's contents, replace the bits taken up by the boolean, and then write\r\n // back. This is the compiler's defense against contract upgrades and\r\n // pointer aliasing, and it cannot be disabled.\r\n\r\n // The values being non-zero value makes deployment a bit more expensive,\r\n // but in exchange the refund on every call to nonReentrant will be lower in\r\n // amount. Since refunds are capped to a percentage of the total\r\n // transaction's gas, it is best to keep them low in cases like this one, to\r\n // increase the likelihood of the full refund coming into effect.\r\n uint256 private constant _NOT_ENTERED = 1;\r\n uint256 private constant _ENTERED = 2;\r\n\r\n uint256 private _status;\r\n\r\n constructor() {\r\n _status = _NOT_ENTERED;\r\n }\r\n\r\n /**\r\n * @dev Prevents a contract from calling itself, directly or indirectly.\r\n * Calling a `nonReentrant` function from another `nonReentrant`\r\n * function is not supported. It is possible to prevent this from happening\r\n * by making the `nonReentrant` function external, and making it call a\r\n * `private` function that does the actual work.\r\n */\r\n modifier nonReentrant() {\r\n // On the first call to nonReentrant, _notEntered will be true\r\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\r\n\r\n // Any calls to nonReentrant after this point will fail\r\n _status = _ENTERED;\r\n\r\n _;\r\n\r\n // By storing the original value once again, a refund is triggered (see\r\n // https://eips.ethereum.org/EIPS/eip-2200)\r\n _status = _NOT_ENTERED;\r\n }\r\n}\r\n\r\n// File: @openzeppelin/contracts/utils/Context.sol\r\n\r\n\r\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\r\n\r\npragma solidity ^0.8.0;\r\n\r\n/**\r\n * @dev Provides information about the current execution context, including the\r\n * sender of the transaction and its data. While these are generally available\r\n * via msg.sender and msg.data, they should not be accessed in such a direct\r\n * manner, since when dealing with meta-transactions the account sending and\r\n * paying for execution may not be the actual sender (as far as an application\r\n * is concerned).\r\n *\r\n * This contract is only required for intermediate, library-like contracts.\r\n */\r\nabstract contract Context {\r\n function _msgSender() internal view virtual returns (address) {\r\n return msg.sender;\r\n }\r\n\r\n function _msgData() internal view virtual returns (bytes calldata) {\r\n return msg.data;\r\n }\r\n}\r\n\r\n// File: @openzeppelin/contracts/access/Ownable.sol\r\n\r\n\r\n// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)\r\n\r\npragma solidity ^0.8.0;\r\n\r\n\r\n/**\r\n * @dev Contract module which provides a basic access control mechanism, where\r\n * there is an account (an owner) that can be granted exclusive access to\r\n * specific functions.\r\n *\r\n * By default, the owner account will be the one that deploys the contract. This\r\n * can later be changed with {transferOwnership}.\r\n *\r\n * This module is used through inheritance. It will make available the modifier\r\n * `onlyOwner`, which can be applied to your functions to restrict their use to\r\n * the owner.\r\n */\r\nabstract contract Ownable is Context {\r\n address private _owner;\r\n\r\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\r\n\r\n /**\r\n * @dev Initializes the contract setting the deployer as the initial owner.\r\n */\r\n constructor() {\r\n _transferOwnership(_msgSender());\r\n }\r\n\r\n /**\r\n * @dev Throws if called by any account other than the owner.\r\n */\r\n modifier onlyOwner() {\r\n _checkOwner();\r\n _;\r\n }\r\n\r\n /**\r\n * @dev Returns the address of the current owner.\r\n */\r\n function owner() public view virtual returns (address) {\r\n return _owner;\r\n }\r\n\r\n /**\r\n * @dev Throws if the sender is not the owner.\r\n */\r\n function _checkOwner() internal view virtual {\r\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\r\n }\r\n\r\n /**\r\n * @dev Leaves the contract without owner. It will not be possible to call\r\n * `onlyOwner` functions anymore. Can only be called by the current owner.\r\n *\r\n * NOTE: Renouncing ownership will leave the contract without an owner,\r\n * thereby removing any functionality that is only available to the owner.\r\n */\r\n function renounceOwnership() public virtual onlyOwner {\r\n _transferOwnership(address(0));\r\n }\r\n\r\n /**\r\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\r\n * Can only be called by the current owner.\r\n */\r\n function transferOwnership(address newOwner) public virtual onlyOwner {\r\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\r\n _transferOwnership(newOwner);\r\n }\r\n\r\n /**\r\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\r\n * Internal function without access restriction.\r\n */\r\n function _transferOwnership(address newOwner) internal virtual {\r\n address oldOwner = _owner;\r\n _owner = newOwner;\r\n emit OwnershipTransferred(oldOwner, newOwner);\r\n }\r\n}\r\n\r\n// File: @openzeppelin/contracts/token/ERC20/IERC20.sol\r\n\r\n\r\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\r\n\r\npragma solidity ^0.8.0;\r\n\r\n/**\r\n * @dev Interface of the ERC20 standard as defined in the EIP.\r\n */\r\ninterface IERC20 {\r\n /**\r\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\r\n * another (`to`).\r\n *\r\n * Note that `value` may be zero.\r\n */\r\n event Transfer(address indexed from, address indexed to, uint256 value);\r\n\r\n /**\r\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\r\n * a call to {approve}. `value` is the new allowance.\r\n */\r\n event Approval(address indexed owner, address indexed spender, uint256 value);\r\n\r\n /**\r\n * @dev Returns the amount of tokens in existence.\r\n */\r\n function totalSupply() external view returns (uint256);\r\n\r\n /**\r\n * @dev Returns the amount of tokens owned by `account`.\r\n */\r\n function balanceOf(address account) external view returns (uint256);\r\n\r\n /**\r\n * @dev Moves `amount` tokens from the caller's account to `to`.\r\n *\r\n * Returns a boolean value indicating whether the operation succeeded.\r\n *\r\n * Emits a {Transfer} event.\r\n */\r\n function transfer(address to, uint256 amount) external returns (bool);\r\n\r\n /**\r\n * @dev Returns the remaining number of tokens that `spender` will be\r\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\r\n * zero by default.\r\n *\r\n * This value changes when {approve} or {transferFrom} are called.\r\n */\r\n function allowance(address owner, address spender) external view returns (uint256);\r\n\r\n /**\r\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\r\n *\r\n * Returns a boolean value indicating whether the operation succeeded.\r\n *\r\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\r\n * that someone may use both the old and the new allowance by unfortunate\r\n * transaction ordering. One possible solution to mitigate this race\r\n * condition is to first reduce the spender's allowance to 0 and set the\r\n * desired value afterwards:\r\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\r\n *\r\n * Emits an {Approval} event.\r\n */\r\n function approve(address spender, uint256 amount) external returns (bool);\r\n\r\n /**\r\n * @dev Moves `amount` tokens from `from` to `to` using the\r\n * allowance mechanism. `amount` is then deducted from the caller's\r\n * allowance.\r\n *\r\n * Returns a boolean value indicating whether the operation succeeded.\r\n *\r\n * Emits a {Transfer} event.\r\n */\r\n function transferFrom(\r\n address from,\r\n address to,\r\n uint256 amount\r\n ) external returns (bool);\r\n}\r\n\r\n// File: TokenStaking.sol\r\n\r\n\r\npragma solidity ^0.8.0;\r\n\r\n\r\n\r\n\r\n\r\ncontract TokenStaking is Ownable, ReentrancyGuard, Initializable {\r\n // Struct to store the User's Details\r\n struct User {\r\n uint256 stakeAmount; // Stake Amount\r\n uint256 rewardAmount; // Reward Amount\r\n uint256 lastStakeTime; // Last Stake Timestamp\r\n uint256 lastRewardCalculationTime; // Last Reward Calculation Timestamp\r\n uint256 rewardsClaimedSoFar; // Sum of rewards claimed so far\r\n }\r\n\r\n uint256 _minimumStakingAmount; // minimum staking amount\r\n\r\n uint256 _maxStakeTokenLimit; // maximum staking token limit for program\r\n\r\n uint256 _stakeEndDate; // end date for program\r\n\r\n uint256 _stakeStartDate; // end date for program\r\n\r\n uint256 _totalStakedTokens; // Total no of tokens that are staked\r\n\r\n uint256 _totalUsers; // Total no of users\r\n\r\n uint256 _stakeDays; // staking days\r\n\r\n uint256 _earlyUnstakeFeePercentage; // early unstake fee percentage\r\n\r\n bool _isStakingPaused; // staking status\r\n\r\n // Token contract address\r\n address private _tokenAddress;\r\n\r\n // APY\r\n uint256 _apyRate;\r\n\r\n uint256 public constant PERCENTAGE_DENOMINATOR = 10000;\r\n uint256 public constant APY_RATE_CHANGE_THRESHOLD = 10;\r\n\r\n // User address => User\r\n mapping(address => User) private _users;\r\n\r\n event Stake(address indexed user, uint256 amount);\r\n event UnStake(address indexed user, uint256 amount);\r\n event EarlyUnStakeFee(address indexed user, uint256 amount);\r\n event ClaimReward(address indexed user, uint256 amount);\r\n\r\n modifier whenTreasuryHasBalance(uint256 amount) {\r\n require(\r\n IERC20(_tokenAddress).balanceOf(address(this)) >= amount,\r\n \"TokenStaking: insufficient funds in the treasury\"\r\n );\r\n _;\r\n }\r\n\r\n function initialize(\r\n address owner_,\r\n address tokenAddress_,\r\n uint256 apyRate_,\r\n uint256 minimumStakingAmount_,\r\n uint256 maxStakeTokenLimit_,\r\n uint256 stakeStartDate_,\r\n uint256 stakeEndDate_,\r\n uint256 stakeDays_,\r\n uint256 earlyUnstakeFeePercentage_\r\n ) public virtual initializer {\r\n __TokenStaking_init_unchained(\r\n owner_,\r\n tokenAddress_,\r\n apyRate_,\r\n minimumStakingAmount_,\r\n maxStakeTokenLimit_,\r\n stakeStartDate_,\r\n stakeEndDate_,\r\n stakeDays_,\r\n earlyUnstakeFeePercentage_\r\n );\r\n }\r\n\r\n function __TokenStaking_init_unchained(\r\n address owner_,\r\n address tokenAddress_,\r\n uint256 apyRate_,\r\n uint256 minimumStakingAmount_,\r\n uint256 maxStakeTokenLimit_,\r\n uint256 stakeStartDate_,\r\n uint256 stakeEndDate_,\r\n uint256 stakeDays_,\r\n uint256 earlyUnstakeFeePercentage_\r\n ) internal onlyInitializing {\r\n require(_apyRate <= 10000, \"TokenStaking: apy rate should be less than 10000\");\r\n require(stakeDays_ > 0, \"TokenStaking: stake days must be non-zero\");\r\n require(tokenAddress_ != address(0), \"TokenStaking: token address cannot be 0 address\");\r\n require(stakeStartDate_ < stakeEndDate_, \"TokenStaking: start date must be less than end date\");\r\n\r\n _transferOwnership(owner_);\r\n _tokenAddress = tokenAddress_;\r\n _apyRate = apyRate_;\r\n _minimumStakingAmount = minimumStakingAmount_;\r\n _maxStakeTokenLimit = maxStakeTokenLimit_;\r\n _stakeStartDate = stakeStartDate_;\r\n _stakeEndDate = stakeEndDate_;\r\n _stakeDays = stakeDays_ * 1 days;\r\n _earlyUnstakeFeePercentage = earlyUnstakeFeePercentage_;\r\n }\r\n\r\n /* View Methods Start */\r\n\r\n /**\r\n * @notice This function is used to get the minimum staking amount\r\n */\r\n function getMinimumStakingAmount() external view returns (uint256) {\r\n return _minimumStakingAmount;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get the maximum staking token limit for program\r\n */\r\n function getMaxStakingTokenLimit() external view returns (uint256) {\r\n return _maxStakeTokenLimit;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get the staking start date for program\r\n */\r\n function getStakeStartDate() external view returns (uint256) {\r\n return _stakeStartDate;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get the staking end date for program\r\n */\r\n function getStakeEndDate() external view returns (uint256) {\r\n return _stakeEndDate;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get the total no of tokens that are staked\r\n */\r\n function getTotalStakedTokens() external view returns (uint256) {\r\n return _totalStakedTokens;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get the total no of users\r\n */\r\n function getTotalUsers() external view returns (uint256) {\r\n return _totalUsers;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get stake days\r\n */\r\n function getStakeDays() external view returns (uint256) {\r\n return _stakeDays;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get early unstake fee percentage\r\n */\r\n function getEarlyUnstakeFeePercentage() external view returns (uint256) {\r\n return _earlyUnstakeFeePercentage;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get staking status\r\n */\r\n function getStakingStatus() external view returns (bool) {\r\n return _isStakingPaused;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get the current APY Rate\r\n * @return Current APY Rate\r\n */\r\n function getAPY() external view returns (uint256) {\r\n return _apyRate;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get msg.sender's estimated reward amount\r\n * @return msg.sender's estimated reward amount\r\n */\r\n function getUserEstimatedRewards() external view returns (uint256) {\r\n (uint256 amount, ) = _getUserEstimatedRewards(msg.sender);\r\n return _users[msg.sender].rewardAmount + amount;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get withdrawable amount from contract\r\n */\r\n function getWithdrawableAmount() external view returns (uint256) {\r\n return IERC20(_tokenAddress).balanceOf(address(this)) - _totalStakedTokens;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get User's details\r\n * @param userAddress User's address to get details of\r\n * @return User Struct\r\n */\r\n function getUser(address userAddress) external view returns (User memory) {\r\n return _users[userAddress];\r\n }\r\n\r\n /**\r\n * @notice This function is used to check if a user is a stakeholder\r\n * @param _user Address of the user to check\r\n * @return True if user is a stakeholder, false otherwise\r\n */\r\n function isStakeHolder(address _user) external view returns (bool) {\r\n return _users[_user].stakeAmount != 0;\r\n }\r\n\r\n /* View Methods End */\r\n\r\n /* Owner Methods Start */\r\n\r\n /**\r\n * @notice This function is used to update minimum staking amount\r\n */\r\n function updateMinimumStakingAmount(uint256 newAmount) external onlyOwner {\r\n _minimumStakingAmount = newAmount;\r\n }\r\n\r\n /**\r\n * @notice This function is used to update maximum staking amount\r\n */\r\n function updateMaximumStakingAmount(uint256 newAmount) external onlyOwner {\r\n _maxStakeTokenLimit = newAmount;\r\n }\r\n\r\n /**\r\n * @notice This function is used to update staking end date\r\n */\r\n function updateStakingEndDate(uint256 newDate) external onlyOwner {\r\n _stakeEndDate = newDate;\r\n }\r\n\r\n /**\r\n * @notice This function is used to update early unstake fee percentage\r\n */\r\n function updateEarlyUnstakeFeePercentage(uint256 newPercentage) external onlyOwner {\r\n _earlyUnstakeFeePercentage = newPercentage;\r\n }\r\n\r\n /**\r\n * @notice stake tokens for specific user\r\n * @dev This function can be used to stake tokens for specific user\r\n *\r\n * @param amount the amount to stake\r\n * @param user user's address\r\n */\r\n function stakeForUser(uint256 amount, address user) external onlyOwner nonReentrant {\r\n _stakeTokens(amount, user);\r\n }\r\n\r\n /**\r\n * @notice enable/disable staking\r\n * @dev This function can be used to toggle staking status\r\n */\r\n function toggleStakingStatus() external onlyOwner {\r\n _isStakingPaused = !_isStakingPaused;\r\n }\r\n\r\n /**\r\n * @notice Withdraw the specified amount if possible.\r\n *\r\n * @dev This function can be used to withdraw the available tokens\r\n * with this contract to the caller\r\n *\r\n * @param amount the amount to withdraw\r\n */\r\n function withdraw(uint256 amount) external onlyOwner nonReentrant {\r\n require(this.getWithdrawableAmount() >= amount, \"TokenStaking: not enough withdrawable tokens\");\r\n IERC20(_tokenAddress).transfer(msg.sender, amount);\r\n }\r\n\r\n /* Owner Methods End */\r\n\r\n /* User Methods Start */\r\n\r\n /**\r\n * @notice This function is used to stake tokens\r\n * @param _amount Amount of tokens to be staked\r\n */\r\n function stake(uint256 _amount) external nonReentrant {\r\n _stakeTokens(_amount, msg.sender);\r\n }\r\n\r\n function _stakeTokens(uint256 _amount, address user_) private {\r\n require(!_isStakingPaused, \"TokenStaking: staking is paused\");\r\n\r\n uint256 currentTime = getCurrentTime();\r\n require(currentTime > _stakeStartDate, \"TokenStaking: staking not started yet\");\r\n require(currentTime < _stakeEndDate, \"TokenStaking: staking ended\");\r\n require(_totalStakedTokens + _amount <= _maxStakeTokenLimit, \"TokenStaking: max staking token limit reached\");\r\n require(_amount > 0, \"TokenStaking: stake amount must be non-zero\");\r\n require(\r\n _amount >= _minimumStakingAmount,\r\n \"TokenStaking: stake amount must greater than minimum amount allowed\"\r\n );\r\n\r\n if (_users[user_].stakeAmount != 0) {\r\n _calculateRewards(user_);\r\n } else {\r\n _users[user_].lastRewardCalculationTime = currentTime;\r\n _totalUsers += 1;\r\n }\r\n\r\n _users[user_].stakeAmount += _amount;\r\n _users[user_].lastStakeTime = currentTime;\r\n\r\n _totalStakedTokens += _amount;\r\n\r\n require(\r\n IERC20(_tokenAddress).transferFrom(msg.sender, address(this), _amount),\r\n \"TokenStaking: failed to transfer tokens\"\r\n );\r\n emit Stake(user_, _amount);\r\n }\r\n\r\n /**\r\n * @notice This function is used to unstake tokens\r\n * @param _amount Amount of tokens to be unstaked\r\n */\r\n function unstake(uint256 _amount) external nonReentrant whenTreasuryHasBalance(_amount) {\r\n address user = msg.sender;\r\n\r\n require(_amount != 0, \"TokenStaking: amount should be non-zero\");\r\n require(this.isStakeHolder(user), \"TokenStaking: not a stakeholder\");\r\n require(_users[user].stakeAmount >= _amount, \"TokenStaking: not enough stake to unstake\");\r\n\r\n // Calculate User's rewards until now\r\n _calculateRewards(user);\r\n\r\n uint256 feeEarlyUnstake;\r\n\r\n if (getCurrentTime() <= _users[user].lastStakeTime + _stakeDays) {\r\n feeEarlyUnstake = ((_amount * _earlyUnstakeFeePercentage) / PERCENTAGE_DENOMINATOR);\r\n emit EarlyUnStakeFee(user, feeEarlyUnstake);\r\n }\r\n\r\n uint256 amountToUnstake = _amount - feeEarlyUnstake;\r\n\r\n _users[user].stakeAmount -= _amount;\r\n\r\n _totalStakedTokens -= _amount;\r\n\r\n if (_users[user].stakeAmount == 0) {\r\n // delete _users[user];\r\n _totalUsers -= 1;\r\n }\r\n\r\n require(IERC20(_tokenAddress).transfer(user, amountToUnstake), \"TokenStaking: failed to transfer\");\r\n emit UnStake(user, _amount);\r\n }\r\n\r\n /**\r\n * @notice This function is used to claim user's rewards\r\n */\r\n function claimReward() external nonReentrant whenTreasuryHasBalance(_users[msg.sender].rewardAmount) {\r\n _calculateRewards(msg.sender);\r\n uint256 rewardAmount = _users[msg.sender].rewardAmount;\r\n\r\n require(rewardAmount > 0, \"TokenStaking: no reward to claim\");\r\n\r\n require(IERC20(_tokenAddress).transfer(msg.sender, rewardAmount), \"TokenStaking: failed to transfer\");\r\n\r\n _users[msg.sender].rewardAmount = 0;\r\n _users[msg.sender].rewardsClaimedSoFar += rewardAmount;\r\n\r\n emit ClaimReward(msg.sender, rewardAmount);\r\n }\r\n\r\n /* User Methods End */\r\n\r\n /* Private Helper Methods Start */\r\n\r\n /**\r\n * @notice This function is used to calculate rewards for a user\r\n * @param _user Address of the user\r\n */\r\n function _calculateRewards(address _user) private {\r\n (uint256 userReward, uint256 currentTime) = _getUserEstimatedRewards(_user);\r\n\r\n _users[_user].rewardAmount += userReward;\r\n _users[_user].lastRewardCalculationTime = currentTime;\r\n }\r\n\r\n /**\r\n * @notice This function is used to get estimated rewards for a user\r\n * @param _user Address of the user\r\n * @return Estimated rewards for the user\r\n */\r\n function _getUserEstimatedRewards(address _user) private view returns (uint256, uint256) {\r\n uint256 userReward;\r\n uint256 userTimestamp = _users[_user].lastRewardCalculationTime;\r\n\r\n uint256 currentTime = getCurrentTime();\r\n\r\n if (currentTime > _users[_user].lastStakeTime + _stakeDays) {\r\n currentTime = _users[_user].lastStakeTime + _stakeDays;\r\n }\r\n\r\n uint256 totalStakedTime = currentTime - userTimestamp;\r\n\r\n userReward += ((totalStakedTime * _users[_user].stakeAmount * _apyRate) / 365 days) / PERCENTAGE_DENOMINATOR;\r\n\r\n return (userReward, currentTime);\r\n }\r\n\r\n /* Private Helper Methods End */\r\n\r\n function getCurrentTime() internal view virtual returns (uint256) {\r\n return block.timestamp;\r\n }\r\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"contracts/TokenSTacking.sol": {
"Address": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/TokenSTacking.sol\":258:8582 library Address {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/TokenSTacking.sol\":258:8582 library Address {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220df0bdab177597bec43948798806a2da941839c1c94699149b4be4a6b4906aec264736f6c63430008180033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220df0bdab177597bec43948798806a2da941839c1c94699149b4be4a6b4906aec264736f6c63430008180033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF SIGNEXTEND 0xDA 0xB1 PUSH24 0x597BEC43948798806A2DA941839C1C94699149B4BE4A6B49 MOD 0xAE 0xC2 PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "258:8324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220df0bdab177597bec43948798806a2da941839c1c94699149b4be4a6b4906aec264736f6c63430008180033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF SIGNEXTEND 0xDA 0xB1 PUSH24 0x597BEC43948798806A2DA941839C1C94699149B4BE4A6B49 MOD 0xAE 0xC2 PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "258:8324:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"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"
}
},
"legacyAssembly": {
".code": [
{
"begin": 258,
"end": 8582,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 258,
"end": 8582,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "B"
},
{
"begin": 258,
"end": 8582,
"name": "DUP3",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "DUP3",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "DUP3",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "CODECOPY",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "DUP1",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "MLOAD",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 258,
"end": 8582,
"name": "BYTE",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 258,
"end": 8582,
"name": "EQ",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 258,
"end": 8582,
"name": "JUMPI",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 258,
"end": 8582,
"name": "MSTORE",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 258,
"end": 8582,
"name": "MSTORE",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 258,
"end": 8582,
"name": "REVERT",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 258,
"end": 8582,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "ADDRESS",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 258,
"end": 8582,
"name": "MSTORE",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 258,
"end": 8582,
"name": "DUP2",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "MSTORE8",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "DUP3",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "DUP2",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220df0bdab177597bec43948798806a2da941839c1c94699149b4be4a6b4906aec264736f6c63430008180033",
".code": [
{
"begin": 258,
"end": 8582,
"name": "PUSHDEPLOYADDRESS",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "ADDRESS",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "EQ",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 258,
"end": 8582,
"name": "MSTORE",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 258,
"end": 8582,
"name": "DUP1",
"source": 0
},
{
"begin": 258,
"end": 8582,
"name": "REVERT",
"source": 0
}
]
}
},
"sourceList": [
"contracts/TokenSTacking.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"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\":{\"contracts/TokenSTacking.sol\":\"Address\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/TokenSTacking.sol\":{\"keccak256\":\"0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2\",\"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"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": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"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\":{\"contracts/TokenSTacking.sol\":\"Context\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/TokenSTacking.sol\":{\"keccak256\":\"0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2\",\"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"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": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": 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.24+commit.e11b9ed9\"},\"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\":{\"contracts/TokenSTacking.sol\":\"IERC20\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/TokenSTacking.sol\":{\"keccak256\":\"0x6acc1e8afe3d6427e6b164c00cf74b63da446e791dd4075a9d51960eb211ec63\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://39cc5bbc30b9cfaa29ccd9c35575d25a44e6297a7828d8846fc23fc36eb114a2\",\"dweb:/ipfs/QmQpoEzBu9SmdhjGLq1M9v8QuuiaeLfbVSCa57291Zeer9\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"met
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment