Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EmekaManuel/4a67d56196b0a0b78361544b7ed5ffb2 to your computer and use it in GitHub Desktop.
Save EmekaManuel/4a67d56196b0a0b78361544b7ed5ffb2 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.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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);
}
}
{
"id": "f872f4f8228b346dbf7830ca1f3b8e25",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) external returns (bool);\n}\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"
]
}
}
}
},
"output": {
"contracts": {
".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"IERC20": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
},
"approve(address,uint256)": {
"details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
}
},
"version": 1
},
"evm": {
"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.9+commit.e5eed63a\"},\"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\":{\".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34\",\"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol",
"exportedSymbols": {
"IERC20": [
77
]
},
"id": 78,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "106:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IERC20",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 2,
"nodeType": "StructuredDocumentation",
"src": "131:70:0",
"text": " @dev Interface of the ERC20 standard as defined in the EIP."
},
"fullyImplemented": false,
"id": 77,
"linearizedBaseContracts": [
77
],
"name": "IERC20",
"nameLocation": "212:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"anonymous": false,
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "225:158:0",
"text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
},
"id": 11,
"name": "Transfer",
"nameLocation": "394:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"indexed": true,
"mutability": "mutable",
"name": "from",
"nameLocation": "419:4:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "403:20:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "403:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"indexed": true,
"mutability": "mutable",
"name": "to",
"nameLocation": "441:2:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "425:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "425:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"indexed": false,
"mutability": "mutable",
"name": "value",
"nameLocation": "453:5:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "445:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 8,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "445:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "402:57:0"
},
"src": "388:72:0"
},
{
"anonymous": false,
"documentation": {
"id": 12,
"nodeType": "StructuredDocumentation",
"src": "466:148:0",
"text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."
},
"id": 20,
"name": "Approval",
"nameLocation": "625:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 19,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"indexed": true,
"mutability": "mutable",
"name": "owner",
"nameLocation": "650:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "634:21:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 13,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "634:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 16,
"indexed": true,
"mutability": "mutable",
"name": "spender",
"nameLocation": "673:7:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "657:23:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 15,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "657:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 18,
"indexed": false,
"mutability": "mutable",
"name": "value",
"nameLocation": "690:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "682:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 17,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "682:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "633:63:0"
},
"src": "619:78:0"
},
{
"documentation": {
"id": 21,
"nodeType": "StructuredDocumentation",
"src": "703:66:0",
"text": " @dev Returns the amount of tokens in existence."
},
"functionSelector": "18160ddd",
"id": 26,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "totalSupply",
"nameLocation": "783:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 22,
"nodeType": "ParameterList",
"parameters": [],
"src": "794:2:0"
},
"returnParameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 24,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "820:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 23,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "820:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "819:9:0"
},
"scope": 77,
"src": "774:55:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 27,
"nodeType": "StructuredDocumentation",
"src": "835:72:0",
"text": " @dev Returns the amount of tokens owned by `account`."
},
"functionSelector": "70a08231",
"id": 34,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "balanceOf",
"nameLocation": "921:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 30,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 29,
"mutability": "mutable",
"name": "account",
"nameLocation": "939:7:0",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "931:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 28,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "931:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "930:17:0"
},
"returnParameters": {
"id": 33,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 32,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "971:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 31,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "971:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "970:9:0"
},
"scope": 77,
"src": "912:68:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 35,
"nodeType": "StructuredDocumentation",
"src": "986:202:0",
"text": " @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
},
"functionSelector": "a9059cbb",
"id": 44,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "transfer",
"nameLocation": "1202:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 40,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 37,
"mutability": "mutable",
"name": "to",
"nameLocation": "1219:2:0",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "1211:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 36,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1211:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 39,
"mutability": "mutable",
"name": "amount",
"nameLocation": "1231:6:0",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "1223:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 38,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1223:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1210:28:0"
},
"returnParameters": {
"id": 43,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 42,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "1257:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 41,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1257:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1256:6:0"
},
"scope": 77,
"src": "1193:70:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 45,
"nodeType": "StructuredDocumentation",
"src": "1269:264:0",
"text": " @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."
},
"functionSelector": "dd62ed3e",
"id": 54,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "allowance",
"nameLocation": "1547:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 50,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 47,
"mutability": "mutable",
"name": "owner",
"nameLocation": "1565:5:0",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1557:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 46,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1557:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 49,
"mutability": "mutable",
"name": "spender",
"nameLocation": "1580:7:0",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1572:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 48,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1572:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1556:32:0"
},
"returnParameters": {
"id": 53,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 52,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1612:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 51,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1612:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1611:9:0"
},
"scope": 77,
"src": "1538:83:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 55,
"nodeType": "StructuredDocumentation",
"src": "1627:642:0",
"text": " @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."
},
"functionSelector": "095ea7b3",
"id": 64,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "approve",
"nameLocation": "2283:7:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 60,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 57,
"mutability": "mutable",
"name": "spender",
"nameLocation": "2299:7:0",
"nodeType": "VariableDeclaration",
"scope": 64,
"src": "2291:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 56,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2291:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 59,
"mutability": "mutable",
"name": "amount",
"nameLocation": "2316:6:0",
"nodeType": "VariableDeclaration",
"scope": 64,
"src": "2308:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 58,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "2308:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "2290:33:0"
},
"returnParameters": {
"id": 63,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 62,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 64,
"src": "2342:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 61,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2342:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "2341:6:0"
},
"scope": 77,
"src": "2274:74:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 65,
"nodeType": "StructuredDocumentation",
"src": "2354:287:0",
"text": " @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
},
"functionSelector": "23b872dd",
"id": 76,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "transferFrom",
"nameLocation": "2655:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 72,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 67,
"mutability": "mutable",
"name": "from",
"nameLocation": "2685:4:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2677:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 66,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2677:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 69,
"mutability": "mutable",
"name": "to",
"nameLocation": "2707:2:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2699:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 68,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2699:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 71,
"mutability": "mutable",
"name": "amount",
"nameLocation": "2727:6:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2719:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 70,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "2719:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "2667:72:0"
},
"returnParameters": {
"id": 75,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 74,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2758:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 73,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2758:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "2757:6:0"
},
"scope": 77,
"src": "2646:118:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 78,
"src": "202:2564:0",
"usedErrors": []
}
],
"src": "106:2661:0"
},
"id": 0
}
}
}
}
{
"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": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 576,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 651,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 702,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 289,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 468,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 522,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 882,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 383,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 835,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 309,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 314,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 304,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 299,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 319,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:4"
},
"nodeType": "YulFunctionCall",
"src": "67:9:4"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:4"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:4",
"type": ""
}
],
"src": "7:75:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:4"
},
"nodeType": "YulFunctionCall",
"src": "187:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:4"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:4"
},
"nodeType": "YulFunctionCall",
"src": "310:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:4"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:4"
},
"nodeType": "YulFunctionCall",
"src": "433:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:4"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:4"
},
"nodeType": "YulFunctionCall",
"src": "556:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:4"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:4"
},
"nodeType": "YulFunctionCall",
"src": "652:14:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:4"
},
"nodeType": "YulFunctionCall",
"src": "668:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:4"
},
"nodeType": "YulFunctionCall",
"src": "648:28:4"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:4"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:4",
"type": ""
}
],
"src": "580:102:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:4"
},
"nodeType": "YulFunctionCall",
"src": "726:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:4",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:4"
},
"nodeType": "YulFunctionCall",
"src": "823:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:4"
},
"nodeType": "YulFunctionCall",
"src": "847:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:4"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:4",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:4"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:4"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:4"
},
"nodeType": "YulFunctionCall",
"src": "957:27:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:4"
},
"nodeType": "YulFunctionCall",
"src": "945:40:4"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:4"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:4",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:4"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:4"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:4"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:4"
},
"nodeType": "YulIf",
"src": "1030:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:4",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:4"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:4",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:4",
"type": ""
}
],
"src": "874:281:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:4",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:4"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:4"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:4"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:4"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:4"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:4"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:4",
"type": ""
}
],
"src": "1161:129:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:4"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:4",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:4"
},
"nodeType": "YulIf",
"src": "1434:56:4"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:4"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:4"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:4"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:4",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:4"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:4"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:4",
"type": ""
}
],
"src": "1296:308:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:4"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:4",
"statements": []
},
"src": "1688:113:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:4"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:4"
},
"nodeType": "YulIf",
"src": "1810:101:4"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:4",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:4",
"type": ""
}
],
"src": "1610:307:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:4"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:4"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:4"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:4"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:4"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:4",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:4"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:4"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:4"
},
"nodeType": "YulIf",
"src": "2178:112:4"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:4"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:4"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:4"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:4"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:4"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:4",
"type": ""
}
],
"src": "1923:421:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:4"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:4"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:4"
},
"nodeType": "YulIf",
"src": "2447:122:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:4"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:4"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:4"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:4"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:4"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:4",
"type": ""
}
],
"src": "2364:355:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2839:739:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2885:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2887:77:4"
},
"nodeType": "YulFunctionCall",
"src": "2887:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "2887:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2869:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2856:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2856:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2881:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2852:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2852:32:4"
},
"nodeType": "YulIf",
"src": "2849:119:4"
},
{
"nodeType": "YulBlock",
"src": "2978:291:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2993:38:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3013:17:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3007:5:4"
},
"nodeType": "YulFunctionCall",
"src": "3007:24:4"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2997:6:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3078:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3080:77:4"
},
"nodeType": "YulFunctionCall",
"src": "3080:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "3080:79:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3050:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:18:4",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3047:2:4"
},
"nodeType": "YulFunctionCall",
"src": "3047:30:4"
},
"nodeType": "YulIf",
"src": "3044:117:4"
},
{
"nodeType": "YulAssignment",
"src": "3175:84:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3231:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3242:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3227:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3227:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:4"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3185:41:4"
},
"nodeType": "YulFunctionCall",
"src": "3185:74:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3175:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3279:292:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3294:39:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3318:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3314:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3314:18:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3308:5:4"
},
"nodeType": "YulFunctionCall",
"src": "3308:25:4"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3298:6:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3380:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3382:77:4"
},
"nodeType": "YulFunctionCall",
"src": "3382:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "3382:79:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3352:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:18:4",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3349:2:4"
},
"nodeType": "YulFunctionCall",
"src": "3349:30:4"
},
"nodeType": "YulIf",
"src": "3346:117:4"
},
{
"nodeType": "YulAssignment",
"src": "3477:84:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3533:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3544:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3529:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3529:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3553:7:4"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3487:41:4"
},
"nodeType": "YulFunctionCall",
"src": "3487:74:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3477:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2801:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2812:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2824:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2832:6:4",
"type": ""
}
],
"src": "2725:853:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3612:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3629:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3632:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3622:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3622:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "3622:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3719:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3719:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "3719:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3750:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3753:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3743:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3743:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "3743:15:4"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3584:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3821:269:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3831:22:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3845:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:4",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3841:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3831:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3862:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3892:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3898:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3888:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3888:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3866:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3939:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3953:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3967:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3975:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3963:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3963:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3953:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3919:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3912:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3912:26:4"
},
"nodeType": "YulIf",
"src": "3909:81:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4042:42:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4056:16:4"
},
"nodeType": "YulFunctionCall",
"src": "4056:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "4056:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4006:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4029:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4037:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4026:2:4"
},
"nodeType": "YulFunctionCall",
"src": "4026:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4003:2:4"
},
"nodeType": "YulFunctionCall",
"src": "4003:38:4"
},
"nodeType": "YulIf",
"src": "4000:84:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3805:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3814:6:4",
"type": ""
}
],
"src": "3770:320:4"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162001617380380620016178339818101604052810190620000379190620002be565b81600390805190602001906200004f92919062000071565b5080600490805190602001906200006892919062000071565b505050620003a8565b8280546200007f9062000372565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200018a826200013f565b810181811067ffffffffffffffff82111715620001ac57620001ab62000150565b5b80604052505050565b6000620001c162000121565b9050620001cf82826200017f565b919050565b600067ffffffffffffffff821115620001f257620001f162000150565b5b620001fd826200013f565b9050602081019050919050565b60005b838110156200022a5780820151818401526020810190506200020d565b838111156200023a576000848401525b50505050565b6000620002576200025184620001d4565b620001b5565b9050828152602081018484840111156200027657620002756200013a565b5b620002838482856200020a565b509392505050565b600082601f830112620002a357620002a262000135565b5b8151620002b584826020860162000240565b91505092915050565b60008060408385031215620002d857620002d76200012b565b5b600083015167ffffffffffffffff811115620002f957620002f862000130565b5b62000307858286016200028b565b925050602083015167ffffffffffffffff8111156200032b576200032a62000130565b5b62000339858286016200028b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038b57607f821691505b60208210811415620003a257620003a162000343565b5b50919050565b61125f80620003b86000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b19565b60405180910390f35b6100e660048036038101906100e19190610bd4565b610308565b6040516100f39190610c2f565b60405180910390f35b61010461032b565b6040516101119190610c59565b60405180910390f35b610134600480360381019061012f9190610c74565b610335565b6040516101419190610c2f565b60405180910390f35b610152610364565b60405161015f9190610ce3565b60405180910390f35b610182600480360381019061017d9190610bd4565b61036d565b60405161018f9190610c2f565b60405180910390f35b6101b260048036038101906101ad9190610cfe565b6103a4565b6040516101bf9190610c59565b60405180910390f35b6101d06103ec565b6040516101dd9190610b19565b60405180910390f35b61020060048036038101906101fb9190610bd4565b61047e565b60405161020d9190610c2f565b60405180910390f35b610230600480360381019061022b9190610bd4565b6104f5565b60405161023d9190610c2f565b60405180910390f35b610260600480360381019061025b9190610d2b565b610518565b60405161026d9190610c59565b60405180910390f35b60606003805461028590610d9a565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d9a565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610dfb565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d9a565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d9a565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610ec3565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610fe7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610c59565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190611053565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610865906110e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590611177565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690611209565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610c59565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610aba578082015181840152602081019050610a9f565b83811115610ac9576000848401525b50505050565b6000601f19601f8301169050919050565b6000610aeb82610a80565b610af58185610a8b565b9350610b05818560208601610a9c565b610b0e81610acf565b840191505092915050565b60006020820190508181036000830152610b338184610ae0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b6b82610b40565b9050919050565b610b7b81610b60565b8114610b8657600080fd5b50565b600081359050610b9881610b72565b92915050565b6000819050919050565b610bb181610b9e565b8114610bbc57600080fd5b50565b600081359050610bce81610ba8565b92915050565b60008060408385031215610beb57610bea610b3b565b5b6000610bf985828601610b89565b9250506020610c0a85828601610bbf565b9150509250929050565b60008115159050919050565b610c2981610c14565b82525050565b6000602082019050610c446000830184610c20565b92915050565b610c5381610b9e565b82525050565b6000602082019050610c6e6000830184610c4a565b92915050565b600080600060608486031215610c8d57610c8c610b3b565b5b6000610c9b86828701610b89565b9350506020610cac86828701610b89565b9250506040610cbd86828701610bbf565b9150509250925092565b600060ff82169050919050565b610cdd81610cc7565b82525050565b6000602082019050610cf86000830184610cd4565b92915050565b600060208284031215610d1457610d13610b3b565b5b6000610d2284828501610b89565b91505092915050565b60008060408385031215610d4257610d41610b3b565b5b6000610d5085828601610b89565b9250506020610d6185828601610b89565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610db257607f821691505b60208210811415610dc657610dc5610d6b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e0682610b9e565b9150610e1183610b9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610e4657610e45610dcc565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610ead602583610a8b565b9150610eb882610e51565b604082019050919050565b60006020820190508181036000830152610edc81610ea0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f3f602483610a8b565b9150610f4a82610ee3565b604082019050919050565b60006020820190508181036000830152610f6e81610f32565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fd1602283610a8b565b9150610fdc82610f75565b604082019050919050565b6000602082019050818103600083015261100081610fc4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061103d601d83610a8b565b915061104882611007565b602082019050919050565b6000602082019050818103600083015261106c81611030565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006110cf602583610a8b565b91506110da82611073565b604082019050919050565b600060208201905081810360008301526110fe816110c2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611161602383610a8b565b915061116c82611105565b604082019050919050565b6000602082019050818103600083015261119081611154565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111f3602683610a8b565b91506111fe82611197565b604082019050919050565b60006020820190508181036000830152611222816111e6565b905091905056fea2646970667358221220276737e5813178b5e0ff45e3f28c71d77a78b9bea738bf82872b9927ca89140964736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1617 CODESIZE SUB DUP1 PUSH3 0x1617 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x2BE JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP POP POP PUSH3 0x3A8 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7F SWAP1 PUSH3 0x372 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xFE SWAP2 SWAP1 PUSH3 0x102 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x11D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x103 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x18A DUP3 PUSH3 0x13F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x1AC JUMPI PUSH3 0x1AB PUSH3 0x150 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C1 PUSH3 0x121 JUMP JUMPDEST SWAP1 POP PUSH3 0x1CF DUP3 DUP3 PUSH3 0x17F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x1F2 JUMPI PUSH3 0x1F1 PUSH3 0x150 JUMP JUMPDEST JUMPDEST PUSH3 0x1FD DUP3 PUSH3 0x13F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x22A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x20D JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x23A JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x257 PUSH3 0x251 DUP5 PUSH3 0x1D4 JUMP JUMPDEST PUSH3 0x1B5 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x276 JUMPI PUSH3 0x275 PUSH3 0x13A JUMP JUMPDEST JUMPDEST PUSH3 0x283 DUP5 DUP3 DUP6 PUSH3 0x20A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x2A3 JUMPI PUSH3 0x2A2 PUSH3 0x135 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x2B5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x240 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x2D8 JUMPI PUSH3 0x2D7 PUSH3 0x12B JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2F9 JUMPI PUSH3 0x2F8 PUSH3 0x130 JUMP JUMPDEST JUMPDEST PUSH3 0x307 DUP6 DUP3 DUP7 ADD PUSH3 0x28B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x32B JUMPI PUSH3 0x32A PUSH3 0x130 JUMP JUMPDEST JUMPDEST PUSH3 0x339 DUP6 DUP3 DUP7 ADD PUSH3 0x28B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x38B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x3A2 JUMPI PUSH3 0x3A1 PUSH3 0x343 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x125F DUP1 PUSH3 0x3B8 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xB19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xCE3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xCFE JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xB19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xD2B JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B1 SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xDFB JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x427 SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xEC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xF55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xFE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x765 SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0x10E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0x1177 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0x1209 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xABA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xAC9 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAEB DUP3 PUSH2 0xA80 JUMP JUMPDEST PUSH2 0xAF5 DUP2 DUP6 PUSH2 0xA8B JUMP JUMPDEST SWAP4 POP PUSH2 0xB05 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA9C JUMP JUMPDEST PUSH2 0xB0E DUP2 PUSH2 0xACF JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xB33 DUP2 DUP5 PUSH2 0xAE0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB6B DUP3 PUSH2 0xB40 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7B DUP2 PUSH2 0xB60 JUMP JUMPDEST DUP2 EQ PUSH2 0xB86 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB98 DUP2 PUSH2 0xB72 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBB1 DUP2 PUSH2 0xB9E JUMP JUMPDEST DUP2 EQ PUSH2 0xBBC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBCE DUP2 PUSH2 0xBA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBEB JUMPI PUSH2 0xBEA PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBF9 DUP6 DUP3 DUP7 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xC0A DUP6 DUP3 DUP7 ADD PUSH2 0xBBF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC29 DUP2 PUSH2 0xC14 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC44 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC20 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC53 DUP2 PUSH2 0xB9E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC4A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC8D JUMPI PUSH2 0xC8C PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC9B DUP7 DUP3 DUP8 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xCAC DUP7 DUP3 DUP8 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCBD DUP7 DUP3 DUP8 ADD PUSH2 0xBBF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCDD DUP2 PUSH2 0xCC7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCF8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCD4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD14 JUMPI PUSH2 0xD13 PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD22 DUP5 DUP3 DUP6 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD42 JUMPI PUSH2 0xD41 PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD50 DUP6 DUP3 DUP7 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD61 DUP6 DUP3 DUP7 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDB2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xDC6 JUMPI PUSH2 0xDC5 PUSH2 0xD6B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xE06 DUP3 PUSH2 0xB9E JUMP JUMPDEST SWAP2 POP PUSH2 0xE11 DUP4 PUSH2 0xB9E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xE46 JUMPI PUSH2 0xE45 PUSH2 0xDCC JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEAD PUSH1 0x25 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0xEB8 DUP3 PUSH2 0xE51 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEDC DUP2 PUSH2 0xEA0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF3F PUSH1 0x24 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0xF4A DUP3 PUSH2 0xEE3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF6E DUP2 PUSH2 0xF32 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFD1 PUSH1 0x22 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0xFDC DUP3 PUSH2 0xF75 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1000 DUP2 PUSH2 0xFC4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x103D PUSH1 0x1D DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x1048 DUP3 PUSH2 0x1007 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x106C DUP2 PUSH2 0x1030 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10CF PUSH1 0x25 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x10DA DUP3 PUSH2 0x1073 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10FE DUP2 PUSH2 0x10C2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1161 PUSH1 0x23 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x116C DUP3 PUSH2 0x1105 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1190 DUP2 PUSH2 0x1154 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11F3 PUSH1 0x26 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x11FE DUP3 PUSH2 0x1197 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1222 DUP2 PUSH2 0x11E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 PUSH8 0x37E5813178B5E0FF GASLIMIT 0xE3 CALLCODE DUP13 PUSH18 0xD77A78B9BEA738BF82872B9927CA89140964 PUSH20 0x6F6C634300080900330000000000000000000000 ",
"sourceMap": "1401:11610:0:-:0;;;1976:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2050:5;2042;:13;;;;;;;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;;;;;;;:::i;:::-;;1976:113;;1401:11610;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:4:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:307::-;1678:1;1688:113;1702:6;1699:1;1696:13;1688:113;;;1787:1;1782:3;1778:11;1772:18;1768:1;1763:3;1759:11;1752:39;1724:2;1721:1;1717:10;1712:15;;1688:113;;;1819:6;1816:1;1813:13;1810:101;;;1899:1;1890:6;1885:3;1881:16;1874:27;1810:101;1659:258;1610:307;;;:::o;1923:421::-;2012:5;2037:66;2053:49;2095:6;2053:49;:::i;:::-;2037:66;:::i;:::-;2028:75;;2126:6;2119:5;2112:21;2164:4;2157:5;2153:16;2202:3;2193:6;2188:3;2184:16;2181:25;2178:112;;;2209:79;;:::i;:::-;2178:112;2299:39;2331:6;2326:3;2321;2299:39;:::i;:::-;2018:326;1923:421;;;;;:::o;2364:355::-;2431:5;2480:3;2473:4;2465:6;2461:17;2457:27;2447:122;;2488:79;;:::i;:::-;2447:122;2598:6;2592:13;2623:90;2709:3;2701:6;2694:4;2686:6;2682:17;2623:90;:::i;:::-;2614:99;;2437:282;2364:355;;;;:::o;2725:853::-;2824:6;2832;2881:2;2869:9;2860:7;2856:23;2852:32;2849:119;;;2887:79;;:::i;:::-;2849:119;3028:1;3017:9;3013:17;3007:24;3058:18;3050:6;3047:30;3044:117;;;3080:79;;:::i;:::-;3044:117;3185:74;3251:7;3242:6;3231:9;3227:22;3185:74;:::i;:::-;3175:84;;2978:291;3329:2;3318:9;3314:18;3308:25;3360:18;3352:6;3349:30;3346:117;;;3382:79;;:::i;:::-;3346:117;3487:74;3553:7;3544:6;3533:9;3529:22;3487:74;:::i;:::-;3477:84;;3279:292;2725:853;;;;;:::o;3584:180::-;3632:77;3629:1;3622:88;3729:4;3726:1;3719:15;3753:4;3750:1;3743:15;3770:320;3814:6;3851:1;3845:4;3841:12;3831:22;;3898:1;3892:4;3888:12;3919:18;3909:81;;3975:4;3967:6;3963:17;3953:27;;3909:81;4037:2;4029:6;4026:14;4006:18;4003:38;4000:84;;;4056:18;;:::i;:::-;4000:84;3821:269;3770:320;;;:::o;1401:11610:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": 2683,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 1447,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 2678,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": 1439,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 1906,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 2046,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 1304,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 776,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": 932,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": 868,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 1150,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_228": {
"entryPoint": 877,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_54": {
"entryPoint": 630,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 1004,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": 811,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 821,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_123": {
"entryPoint": 1269,
"id": 123,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2953,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3007,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3326,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3371,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3188,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3028,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3104,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2784,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4436,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4036,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4144,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4582,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4290,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3890,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3744,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3146,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3284,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3119,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2841,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4471,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4071,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4179,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4617,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4325,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3925,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3779,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3161,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 3299,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2688,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2699,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3579,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3092,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2880,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2974,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 3271,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 2716,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3482,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3532,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3435,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2875,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2767,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 4357,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 3957,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 4103,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 4503,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 4211,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 3811,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 3665,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 2930,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2984,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:13861:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:4"
},
"nodeType": "YulFunctionCall",
"src": "87:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:4"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:4",
"type": ""
}
],
"src": "7:99:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:4"
},
"nodeType": "YulFunctionCall",
"src": "218:19:4"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:4"
},
{
"nodeType": "YulAssignment",
"src": "246:29:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:4"
},
"nodeType": "YulFunctionCall",
"src": "261:14:4"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:4"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:4",
"type": ""
}
],
"src": "112:169:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "336:258:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "346:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "355:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "350:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "415:63:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "440:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "445:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "436:3:4"
},
"nodeType": "YulFunctionCall",
"src": "436:11:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "459:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "464:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "455:3:4"
},
"nodeType": "YulFunctionCall",
"src": "455:11:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "449:5:4"
},
"nodeType": "YulFunctionCall",
"src": "449:18:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "429:6:4"
},
"nodeType": "YulFunctionCall",
"src": "429:39:4"
},
"nodeType": "YulExpressionStatement",
"src": "429:39:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "376:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "379:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "373:2:4"
},
"nodeType": "YulFunctionCall",
"src": "373:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "387:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "398:1:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "394:3:4"
},
"nodeType": "YulFunctionCall",
"src": "394:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "369:3:4",
"statements": []
},
"src": "365:113:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "512:76:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "562:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "567:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:4"
},
"nodeType": "YulFunctionCall",
"src": "558:16:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "576:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "551:6:4"
},
"nodeType": "YulFunctionCall",
"src": "551:27:4"
},
"nodeType": "YulExpressionStatement",
"src": "551:27:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "493:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "496:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "490:2:4"
},
"nodeType": "YulFunctionCall",
"src": "490:13:4"
},
"nodeType": "YulIf",
"src": "487:101:4"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "318:3:4",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "323:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "328:6:4",
"type": ""
}
],
"src": "287:307:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:54:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "658:38:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "683:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:4"
},
"nodeType": "YulFunctionCall",
"src": "672:14:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "692:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "688:3:4"
},
"nodeType": "YulFunctionCall",
"src": "688:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "668:3:4"
},
"nodeType": "YulFunctionCall",
"src": "668:28:4"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "658:6:4"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "631:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "641:6:4",
"type": ""
}
],
"src": "600:102:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "800:272:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "810:53:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "857:5:4"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "824:32:4"
},
"nodeType": "YulFunctionCall",
"src": "824:39:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "814:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "872:78:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "938:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "943:6:4"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "879:58:4"
},
"nodeType": "YulFunctionCall",
"src": "879:71:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "872:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "985:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "992:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "981:3:4"
},
"nodeType": "YulFunctionCall",
"src": "981:16:4"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "999:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1004:6:4"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "959:21:4"
},
"nodeType": "YulFunctionCall",
"src": "959:52:4"
},
"nodeType": "YulExpressionStatement",
"src": "959:52:4"
},
{
"nodeType": "YulAssignment",
"src": "1020:46:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1031:3:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1058:6:4"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1036:21:4"
},
"nodeType": "YulFunctionCall",
"src": "1036:29:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1027:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1027:39:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1020:3:4"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "781:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "788:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "796:3:4",
"type": ""
}
],
"src": "708:364:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:195:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1206:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1218:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1229:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1214:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1214:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1206:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1253:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1264:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1249:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1249:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1272:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1278:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1268:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1268:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1242:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1242:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "1242:47:4"
},
{
"nodeType": "YulAssignment",
"src": "1298:86:4",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1370:6:4"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1379:4:4"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1306:63:4"
},
"nodeType": "YulFunctionCall",
"src": "1306:78:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1298:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1168:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1180:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1191:4:4",
"type": ""
}
],
"src": "1078:313:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1437:35:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1447:19:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1463:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1457:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1457:9:4"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1447:6:4"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1430:6:4",
"type": ""
}
],
"src": "1397:75:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1567:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1587:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1577:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1577:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1577:12:4"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1478:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1690:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1707:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1710:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1700:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1700:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1700:12:4"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1601:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1769:81:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1779:65:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1794:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1801:42:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1790:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1790:54:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1779:7:4"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1751:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1761:7:4",
"type": ""
}
],
"src": "1724:126:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1901:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1911:35:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1940:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1922:17:4"
},
"nodeType": "YulFunctionCall",
"src": "1922:24:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1911:7:4"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1883:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1893:7:4",
"type": ""
}
],
"src": "1856:96:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2001:79:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2058:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2067:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2060:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2060:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2060:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2024:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2049:5:4"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2031:17:4"
},
"nodeType": "YulFunctionCall",
"src": "2031:24:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2021:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2021:35:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2014:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2014:43:4"
},
"nodeType": "YulIf",
"src": "2011:63:4"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1994:5:4",
"type": ""
}
],
"src": "1958:122:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2138:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2148:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2170:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2157:12:4"
},
"nodeType": "YulFunctionCall",
"src": "2157:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2148:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:4"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2186:26:4"
},
"nodeType": "YulFunctionCall",
"src": "2186:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "2186:33:4"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2116:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2124:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2132:5:4",
"type": ""
}
],
"src": "2086:139:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2276:32:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2286:16:4",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2297:5:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2286:7:4"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2258:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2268:7:4",
"type": ""
}
],
"src": "2231:77:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2357:79:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2414:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2423:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2426:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2416:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2416:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2416:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2380:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2405:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2387:17:4"
},
"nodeType": "YulFunctionCall",
"src": "2387:24:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2377:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2377:35:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2370:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2370:43:4"
},
"nodeType": "YulIf",
"src": "2367:63:4"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2350:5:4",
"type": ""
}
],
"src": "2314:122:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2494:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2504:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2526:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2513:12:4"
},
"nodeType": "YulFunctionCall",
"src": "2513:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2504:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2569:5:4"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2542:26:4"
},
"nodeType": "YulFunctionCall",
"src": "2542:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "2542:33:4"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2472:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2480:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2488:5:4",
"type": ""
}
],
"src": "2442:139:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2670:391:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2716:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2718:77:4"
},
"nodeType": "YulFunctionCall",
"src": "2718:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "2718:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2691:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2700:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2687:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2687:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2712:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2683:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2683:32:4"
},
"nodeType": "YulIf",
"src": "2680:119:4"
},
{
"nodeType": "YulBlock",
"src": "2809:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2824:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2838:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2828:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2853:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2888:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2899:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2884:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2884:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2908:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2863:20:4"
},
"nodeType": "YulFunctionCall",
"src": "2863:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2853:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2936:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2951:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2965:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2955:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2981:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3016:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3027:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3012:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3012:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3036:7:4"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2991:20:4"
},
"nodeType": "YulFunctionCall",
"src": "2991:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2981:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2632:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2643:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2655:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2663:6:4",
"type": ""
}
],
"src": "2587:474:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3109:48:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3119:32:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3144:5:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3137:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3137:13:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3130:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3130:21:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3119:7:4"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3091:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3101:7:4",
"type": ""
}
],
"src": "3067:90:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3222:50:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3239:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3259:5:4"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3244:14:4"
},
"nodeType": "YulFunctionCall",
"src": "3244:21:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3232:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3232:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "3232:34:4"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3210:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3217:3:4",
"type": ""
}
],
"src": "3163:109:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3370:118:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3380:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3392:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3403:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3388:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3388:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3380:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3454:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3467:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3478:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3463:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3463:17:4"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3416:37:4"
},
"nodeType": "YulFunctionCall",
"src": "3416:65:4"
},
"nodeType": "YulExpressionStatement",
"src": "3416:65:4"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3342:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3354:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3365:4:4",
"type": ""
}
],
"src": "3278:210:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3559:53:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3576:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3599:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3581:17:4"
},
"nodeType": "YulFunctionCall",
"src": "3581:24:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3569:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3569:37:4"
},
"nodeType": "YulExpressionStatement",
"src": "3569:37:4"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3547:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3554:3:4",
"type": ""
}
],
"src": "3494:118:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3738:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3749:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3734:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3734:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3726:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3806:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3819:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3830:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3815:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3815:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3762:43:4"
},
"nodeType": "YulFunctionCall",
"src": "3762:71:4"
},
"nodeType": "YulExpressionStatement",
"src": "3762:71:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3688:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3700:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3711:4:4",
"type": ""
}
],
"src": "3618:222:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3946:519:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3992:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3994:77:4"
},
"nodeType": "YulFunctionCall",
"src": "3994:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "3994:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3967:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3976:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3963:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3963:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3959:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3959:32:4"
},
"nodeType": "YulIf",
"src": "3956:119:4"
},
{
"nodeType": "YulBlock",
"src": "4085:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4100:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4114:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4104:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4129:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4164:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4175:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4160:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4160:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4184:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4139:20:4"
},
"nodeType": "YulFunctionCall",
"src": "4139:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4129:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4212:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4227:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4241:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4231:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4257:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4292:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4303:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4288:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4288:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4312:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4267:20:4"
},
"nodeType": "YulFunctionCall",
"src": "4267:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4257:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4340:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4355:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:2:4",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4359:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4385:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4420:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4431:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4416:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4416:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4440:7:4"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4395:20:4"
},
"nodeType": "YulFunctionCall",
"src": "4395:53:4"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4385:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3900:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3911:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3923:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3931:6:4",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3939:6:4",
"type": ""
}
],
"src": "3846:619:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4514:43:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4524:27:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4539:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4546:4:4",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4535:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4535:16:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4524:7:4"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4496:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4506:7:4",
"type": ""
}
],
"src": "4471:86:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4624:51:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4641:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4662:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4646:15:4"
},
"nodeType": "YulFunctionCall",
"src": "4646:22:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4634:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4634:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "4634:35:4"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4612:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4619:3:4",
"type": ""
}
],
"src": "4563:112:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4775:120:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4785:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4797:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4808:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4793:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4793:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4785:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4861:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4874:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4885:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4870:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4870:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4821:39:4"
},
"nodeType": "YulFunctionCall",
"src": "4821:67:4"
},
"nodeType": "YulExpressionStatement",
"src": "4821:67:4"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4747:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4759:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4770:4:4",
"type": ""
}
],
"src": "4681:214:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4967:263:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5013:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5015:77:4"
},
"nodeType": "YulFunctionCall",
"src": "5015:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "5015:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4988:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4997:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4984:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4984:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5009:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4980:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4980:32:4"
},
"nodeType": "YulIf",
"src": "4977:119:4"
},
{
"nodeType": "YulBlock",
"src": "5106:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5121:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5135:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5125:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5150:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5185:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5196:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5181:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5181:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5205:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5160:20:4"
},
"nodeType": "YulFunctionCall",
"src": "5160:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5150:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4937:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4948:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4960:6:4",
"type": ""
}
],
"src": "4901:329:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5319:391:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5365:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5367:77:4"
},
"nodeType": "YulFunctionCall",
"src": "5367:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "5367:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5340:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5349:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5336:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5336:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5361:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5332:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5332:32:4"
},
"nodeType": "YulIf",
"src": "5329:119:4"
},
{
"nodeType": "YulBlock",
"src": "5458:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5473:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5487:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5477:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5502:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5537:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5548:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5533:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5533:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5557:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5512:20:4"
},
"nodeType": "YulFunctionCall",
"src": "5512:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5502:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5585:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5600:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5614:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5604:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5630:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5665:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5676:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5661:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5661:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5685:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5640:20:4"
},
"nodeType": "YulFunctionCall",
"src": "5640:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5630:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5281:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5292:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5304:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5312:6:4",
"type": ""
}
],
"src": "5236:474:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5744:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5761:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5764:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5754:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5754:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "5754:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5858:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5861:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5851:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5851:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "5851:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5882:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5885:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5875:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5875:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "5875:15:4"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5716:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5953:269:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5963:22:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5977:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5983:1:4",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5973:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5973:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5963:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5994:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6024:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6030:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6020:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6020:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5998:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6071:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6085:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6099:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6107:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6095:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6095:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6085:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6051:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6044:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6044:26:4"
},
"nodeType": "YulIf",
"src": "6041:81:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6174:42:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6188:16:4"
},
"nodeType": "YulFunctionCall",
"src": "6188:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "6188:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6138:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6161:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6169:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6158:2:4"
},
"nodeType": "YulFunctionCall",
"src": "6158:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6135:2:4"
},
"nodeType": "YulFunctionCall",
"src": "6135:38:4"
},
"nodeType": "YulIf",
"src": "6132:84:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5937:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5946:6:4",
"type": ""
}
],
"src": "5902:320:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6256:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6273:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6276:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6266:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6266:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "6266:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6370:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6373:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6363:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6363:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6363:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6394:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6397:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6387:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6387:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6387:15:4"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6228:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6458:261:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6468:25:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6491:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6473:17:4"
},
"nodeType": "YulFunctionCall",
"src": "6473:20:4"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6468:1:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6502:25:4",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6525:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6507:17:4"
},
"nodeType": "YulFunctionCall",
"src": "6507:20:4"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6502:1:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6665:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6667:16:4"
},
"nodeType": "YulFunctionCall",
"src": "6667:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "6667:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6586:1:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6593:66:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6661:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6589:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6589:74:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6583:2:4"
},
"nodeType": "YulFunctionCall",
"src": "6583:81:4"
},
"nodeType": "YulIf",
"src": "6580:107:4"
},
{
"nodeType": "YulAssignment",
"src": "6697:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6708:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6711:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6704:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6704:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6697:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6445:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6448:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6454:3:4",
"type": ""
}
],
"src": "6414:305:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6831:118:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6853:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6861:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6849:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6849:14:4"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6865:34:4",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6842:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6842:58:4"
},
"nodeType": "YulExpressionStatement",
"src": "6842:58:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6921:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6929:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6917:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6917:15:4"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6934:7:4",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6910:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6910:32:4"
},
"nodeType": "YulExpressionStatement",
"src": "6910:32:4"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6823:6:4",
"type": ""
}
],
"src": "6725:224:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7101:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7111:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7177:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7182:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7118:58:4"
},
"nodeType": "YulFunctionCall",
"src": "7118:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7111:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7283:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "7194:88:4"
},
"nodeType": "YulFunctionCall",
"src": "7194:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "7194:93:4"
},
{
"nodeType": "YulAssignment",
"src": "7296:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7307:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7312:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7303:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7303:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7296:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7089:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7097:3:4",
"type": ""
}
],
"src": "6955:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7498:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7508:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7520:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7531:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7516:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7516:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7508:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7555:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7566:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7551:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7551:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7574:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7580:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7570:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7570:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7544:6:4"
},
"nodeType": "YulFunctionCall",
"src": "7544:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "7544:47:4"
},
{
"nodeType": "YulAssignment",
"src": "7600:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7734:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7608:124:4"
},
"nodeType": "YulFunctionCall",
"src": "7608:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7600:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7478:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7493:4:4",
"type": ""
}
],
"src": "7327:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7858:117:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7880:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7888:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7876:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7876:14:4"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7892:34:4",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7869:6:4"
},
"nodeType": "YulFunctionCall",
"src": "7869:58:4"
},
"nodeType": "YulExpressionStatement",
"src": "7869:58:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7948:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7956:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7944:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7944:15:4"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7961:6:4",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7937:6:4"
},
"nodeType": "YulFunctionCall",
"src": "7937:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "7937:31:4"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7850:6:4",
"type": ""
}
],
"src": "7752:223:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8127:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8137:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8203:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8208:2:4",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8144:58:4"
},
"nodeType": "YulFunctionCall",
"src": "8144:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8137:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8309:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "8220:88:4"
},
"nodeType": "YulFunctionCall",
"src": "8220:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "8220:93:4"
},
{
"nodeType": "YulAssignment",
"src": "8322:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8333:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8338:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8329:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8329:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8322:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8115:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8123:3:4",
"type": ""
}
],
"src": "7981:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8524:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8534:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8546:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8557:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8542:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8542:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8534:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8581:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8592:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8577:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8577:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8600:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8606:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8596:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8596:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8570:6:4"
},
"nodeType": "YulFunctionCall",
"src": "8570:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "8570:47:4"
},
{
"nodeType": "YulAssignment",
"src": "8626:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8760:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8634:124:4"
},
"nodeType": "YulFunctionCall",
"src": "8634:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8626:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8504:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8519:4:4",
"type": ""
}
],
"src": "8353:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8884:115:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8906:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8914:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8902:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8902:14:4"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8918:34:4",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8895:6:4"
},
"nodeType": "YulFunctionCall",
"src": "8895:58:4"
},
"nodeType": "YulExpressionStatement",
"src": "8895:58:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8974:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8982:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8970:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8970:15:4"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8987:4:4",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8963:6:4"
},
"nodeType": "YulFunctionCall",
"src": "8963:29:4"
},
"nodeType": "YulExpressionStatement",
"src": "8963:29:4"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8876:6:4",
"type": ""
}
],
"src": "8778:221:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9151:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9161:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9227:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9232:2:4",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9168:58:4"
},
"nodeType": "YulFunctionCall",
"src": "9168:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9161:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9333:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "9244:88:4"
},
"nodeType": "YulFunctionCall",
"src": "9244:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "9244:93:4"
},
{
"nodeType": "YulAssignment",
"src": "9346:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9357:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9362:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9353:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9353:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9346:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9139:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9147:3:4",
"type": ""
}
],
"src": "9005:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9548:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9558:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9570:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9581:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9566:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9566:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9558:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9605:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9616:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9601:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9601:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9624:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9630:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9620:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9620:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9594:6:4"
},
"nodeType": "YulFunctionCall",
"src": "9594:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "9594:47:4"
},
{
"nodeType": "YulAssignment",
"src": "9650:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9784:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9658:124:4"
},
"nodeType": "YulFunctionCall",
"src": "9658:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9650:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9528:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9543:4:4",
"type": ""
}
],
"src": "9377:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9908:73:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9930:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9938:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9926:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9926:14:4"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9942:31:4",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9919:6:4"
},
"nodeType": "YulFunctionCall",
"src": "9919:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "9919:55:4"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9900:6:4",
"type": ""
}
],
"src": "9802:179:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10133:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10143:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10209:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10214:2:4",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10150:58:4"
},
"nodeType": "YulFunctionCall",
"src": "10150:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10143:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10315:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "10226:88:4"
},
"nodeType": "YulFunctionCall",
"src": "10226:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "10226:93:4"
},
{
"nodeType": "YulAssignment",
"src": "10328:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10339:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10344:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10335:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10335:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10328:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10121:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10129:3:4",
"type": ""
}
],
"src": "9987:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10530:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10540:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10552:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10563:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10548:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10548:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10540:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10587:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10598:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10583:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10583:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10606:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10612:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10602:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10602:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10576:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10576:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "10576:47:4"
},
{
"nodeType": "YulAssignment",
"src": "10632:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10766:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10640:124:4"
},
"nodeType": "YulFunctionCall",
"src": "10640:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10632:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10510:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10525:4:4",
"type": ""
}
],
"src": "10359:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10890:118:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10912:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10920:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10908:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10908:14:4"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10924:34:4",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10901:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10901:58:4"
},
"nodeType": "YulExpressionStatement",
"src": "10901:58:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10980:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10988:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10976:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10976:15:4"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10993:7:4",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10969:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10969:32:4"
},
"nodeType": "YulExpressionStatement",
"src": "10969:32:4"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10882:6:4",
"type": ""
}
],
"src": "10784:224:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11160:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11170:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11236:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11241:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11177:58:4"
},
"nodeType": "YulFunctionCall",
"src": "11177:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11170:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11342:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "11253:88:4"
},
"nodeType": "YulFunctionCall",
"src": "11253:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "11253:93:4"
},
{
"nodeType": "YulAssignment",
"src": "11355:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11366:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11371:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11362:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11362:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11355:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11148:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11156:3:4",
"type": ""
}
],
"src": "11014:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11557:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11567:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11579:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11590:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11575:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11575:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11567:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11614:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11625:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11610:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11610:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11633:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11639:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11629:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11629:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11603:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11603:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "11603:47:4"
},
{
"nodeType": "YulAssignment",
"src": "11659:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11793:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11667:124:4"
},
"nodeType": "YulFunctionCall",
"src": "11667:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11659:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11537:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11552:4:4",
"type": ""
}
],
"src": "11386:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11917:116:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11939:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11947:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11935:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11935:14:4"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11951:34:4",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11928:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11928:58:4"
},
"nodeType": "YulExpressionStatement",
"src": "11928:58:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12007:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12015:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12003:3:4"
},
"nodeType": "YulFunctionCall",
"src": "12003:15:4"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12020:5:4",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11996:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11996:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "11996:30:4"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11909:6:4",
"type": ""
}
],
"src": "11811:222:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12185:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12195:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12261:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12266:2:4",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12202:58:4"
},
"nodeType": "YulFunctionCall",
"src": "12202:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12195:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12367:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "12278:88:4"
},
"nodeType": "YulFunctionCall",
"src": "12278:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "12278:93:4"
},
{
"nodeType": "YulAssignment",
"src": "12380:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12391:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12396:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12387:3:4"
},
"nodeType": "YulFunctionCall",
"src": "12387:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12380:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12173:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12181:3:4",
"type": ""
}
],
"src": "12039:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12582:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12592:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12604:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12615:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12600:3:4"
},
"nodeType": "YulFunctionCall",
"src": "12600:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12592:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12639:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12650:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12635:3:4"
},
"nodeType": "YulFunctionCall",
"src": "12635:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12658:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12664:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12654:3:4"
},
"nodeType": "YulFunctionCall",
"src": "12654:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12628:6:4"
},
"nodeType": "YulFunctionCall",
"src": "12628:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "12628:47:4"
},
{
"nodeType": "YulAssignment",
"src": "12684:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12818:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12692:124:4"
},
"nodeType": "YulFunctionCall",
"src": "12692:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12684:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12562:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12577:4:4",
"type": ""
}
],
"src": "12411:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12942:119:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12964:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12972:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12960:3:4"
},
"nodeType": "YulFunctionCall",
"src": "12960:14:4"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12976:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12953:6:4"
},
"nodeType": "YulFunctionCall",
"src": "12953:58:4"
},
"nodeType": "YulExpressionStatement",
"src": "12953:58:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13032:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13040:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13028:3:4"
},
"nodeType": "YulFunctionCall",
"src": "13028:15:4"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13045:8:4",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13021:6:4"
},
"nodeType": "YulFunctionCall",
"src": "13021:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "13021:33:4"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12934:6:4",
"type": ""
}
],
"src": "12836:225:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13213:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13223:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13289:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13294:2:4",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13230:58:4"
},
"nodeType": "YulFunctionCall",
"src": "13230:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13223:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13395:3:4"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "13306:88:4"
},
"nodeType": "YulFunctionCall",
"src": "13306:93:4"
},
"nodeType": "YulExpressionStatement",
"src": "13306:93:4"
},
{
"nodeType": "YulAssignment",
"src": "13408:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13419:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13424:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13415:3:4"
},
"nodeType": "YulFunctionCall",
"src": "13415:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13408:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13201:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13209:3:4",
"type": ""
}
],
"src": "13067:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13610:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13620:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13632:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13643:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13628:3:4"
},
"nodeType": "YulFunctionCall",
"src": "13628:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13620:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13667:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13678:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13663:3:4"
},
"nodeType": "YulFunctionCall",
"src": "13663:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13686:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13692:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13682:3:4"
},
"nodeType": "YulFunctionCall",
"src": "13682:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13656:6:4"
},
"nodeType": "YulFunctionCall",
"src": "13656:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "13656:47:4"
},
{
"nodeType": "YulAssignment",
"src": "13712:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13846:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13720:124:4"
},
"nodeType": "YulFunctionCall",
"src": "13720:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13712:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13590:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13605:4:4",
"type": ""
}
],
"src": "13439:419:4"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b19565b60405180910390f35b6100e660048036038101906100e19190610bd4565b610308565b6040516100f39190610c2f565b60405180910390f35b61010461032b565b6040516101119190610c59565b60405180910390f35b610134600480360381019061012f9190610c74565b610335565b6040516101419190610c2f565b60405180910390f35b610152610364565b60405161015f9190610ce3565b60405180910390f35b610182600480360381019061017d9190610bd4565b61036d565b60405161018f9190610c2f565b60405180910390f35b6101b260048036038101906101ad9190610cfe565b6103a4565b6040516101bf9190610c59565b60405180910390f35b6101d06103ec565b6040516101dd9190610b19565b60405180910390f35b61020060048036038101906101fb9190610bd4565b61047e565b60405161020d9190610c2f565b60405180910390f35b610230600480360381019061022b9190610bd4565b6104f5565b60405161023d9190610c2f565b60405180910390f35b610260600480360381019061025b9190610d2b565b610518565b60405161026d9190610c59565b60405180910390f35b60606003805461028590610d9a565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d9a565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610dfb565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d9a565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d9a565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610ec3565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610fe7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610c59565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190611053565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610865906110e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590611177565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690611209565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610c59565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610aba578082015181840152602081019050610a9f565b83811115610ac9576000848401525b50505050565b6000601f19601f8301169050919050565b6000610aeb82610a80565b610af58185610a8b565b9350610b05818560208601610a9c565b610b0e81610acf565b840191505092915050565b60006020820190508181036000830152610b338184610ae0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b6b82610b40565b9050919050565b610b7b81610b60565b8114610b8657600080fd5b50565b600081359050610b9881610b72565b92915050565b6000819050919050565b610bb181610b9e565b8114610bbc57600080fd5b50565b600081359050610bce81610ba8565b92915050565b60008060408385031215610beb57610bea610b3b565b5b6000610bf985828601610b89565b9250506020610c0a85828601610bbf565b9150509250929050565b60008115159050919050565b610c2981610c14565b82525050565b6000602082019050610c446000830184610c20565b92915050565b610c5381610b9e565b82525050565b6000602082019050610c6e6000830184610c4a565b92915050565b600080600060608486031215610c8d57610c8c610b3b565b5b6000610c9b86828701610b89565b9350506020610cac86828701610b89565b9250506040610cbd86828701610bbf565b9150509250925092565b600060ff82169050919050565b610cdd81610cc7565b82525050565b6000602082019050610cf86000830184610cd4565b92915050565b600060208284031215610d1457610d13610b3b565b5b6000610d2284828501610b89565b91505092915050565b60008060408385031215610d4257610d41610b3b565b5b6000610d5085828601610b89565b9250506020610d6185828601610b89565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610db257607f821691505b60208210811415610dc657610dc5610d6b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e0682610b9e565b9150610e1183610b9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610e4657610e45610dcc565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610ead602583610a8b565b9150610eb882610e51565b604082019050919050565b60006020820190508181036000830152610edc81610ea0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f3f602483610a8b565b9150610f4a82610ee3565b604082019050919050565b60006020820190508181036000830152610f6e81610f32565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fd1602283610a8b565b9150610fdc82610f75565b604082019050919050565b6000602082019050818103600083015261100081610fc4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061103d601d83610a8b565b915061104882611007565b602082019050919050565b6000602082019050818103600083015261106c81611030565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006110cf602583610a8b565b91506110da82611073565b604082019050919050565b600060208201905081810360008301526110fe816110c2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611161602383610a8b565b915061116c82611105565b604082019050919050565b6000602082019050818103600083015261119081611154565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111f3602683610a8b565b91506111fe82611197565b604082019050919050565b60006020820190508181036000830152611222816111e6565b905091905056fea2646970667358221220276737e5813178b5e0ff45e3f28c71d77a78b9bea738bf82872b9927ca89140964736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xB19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xCE3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xCFE JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xB19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xBD4 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xD2B JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B1 SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xDFB JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x427 SWAP1 PUSH2 0xD9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xEC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xF55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xFE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x765 SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0x1053 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0x10E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0x1177 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0x1209 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xC59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xABA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xAC9 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAEB DUP3 PUSH2 0xA80 JUMP JUMPDEST PUSH2 0xAF5 DUP2 DUP6 PUSH2 0xA8B JUMP JUMPDEST SWAP4 POP PUSH2 0xB05 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA9C JUMP JUMPDEST PUSH2 0xB0E DUP2 PUSH2 0xACF JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xB33 DUP2 DUP5 PUSH2 0xAE0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB6B DUP3 PUSH2 0xB40 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7B DUP2 PUSH2 0xB60 JUMP JUMPDEST DUP2 EQ PUSH2 0xB86 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB98 DUP2 PUSH2 0xB72 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBB1 DUP2 PUSH2 0xB9E JUMP JUMPDEST DUP2 EQ PUSH2 0xBBC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBCE DUP2 PUSH2 0xBA8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBEB JUMPI PUSH2 0xBEA PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBF9 DUP6 DUP3 DUP7 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xC0A DUP6 DUP3 DUP7 ADD PUSH2 0xBBF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC29 DUP2 PUSH2 0xC14 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC44 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC20 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC53 DUP2 PUSH2 0xB9E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC4A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC8D JUMPI PUSH2 0xC8C PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC9B DUP7 DUP3 DUP8 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xCAC DUP7 DUP3 DUP8 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCBD DUP7 DUP3 DUP8 ADD PUSH2 0xBBF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCDD DUP2 PUSH2 0xCC7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCF8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCD4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD14 JUMPI PUSH2 0xD13 PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD22 DUP5 DUP3 DUP6 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD42 JUMPI PUSH2 0xD41 PUSH2 0xB3B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD50 DUP6 DUP3 DUP7 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD61 DUP6 DUP3 DUP7 ADD PUSH2 0xB89 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDB2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xDC6 JUMPI PUSH2 0xDC5 PUSH2 0xD6B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xE06 DUP3 PUSH2 0xB9E JUMP JUMPDEST SWAP2 POP PUSH2 0xE11 DUP4 PUSH2 0xB9E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xE46 JUMPI PUSH2 0xE45 PUSH2 0xDCC JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEAD PUSH1 0x25 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0xEB8 DUP3 PUSH2 0xE51 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEDC DUP2 PUSH2 0xEA0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF3F PUSH1 0x24 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0xF4A DUP3 PUSH2 0xEE3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF6E DUP2 PUSH2 0xF32 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFD1 PUSH1 0x22 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0xFDC DUP3 PUSH2 0xF75 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1000 DUP2 PUSH2 0xFC4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x103D PUSH1 0x1D DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x1048 DUP3 PUSH2 0x1007 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x106C DUP2 PUSH2 0x1030 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10CF PUSH1 0x25 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x10DA DUP3 PUSH2 0x1073 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10FE DUP2 PUSH2 0x10C2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1161 PUSH1 0x23 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x116C DUP3 PUSH2 0x1105 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1190 DUP2 PUSH2 0x1154 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11F3 PUSH1 0x26 DUP4 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP PUSH2 0x11FE DUP3 PUSH2 0x1197 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1222 DUP2 PUSH2 0x11E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 PUSH8 0x37E5813178B5E0FF GASLIMIT 0xE3 CALLCODE DUP13 PUSH18 0xD77A78B9BEA738BF82872B9927CA89140964 PUSH20 0x6F6C634300080900330000000000000000000000 ",
"sourceMap": "1401:11610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3242:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5190:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3091:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6592:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3727:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3974:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:98;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;4530:13;4546:12;:10;:12::i;:::-;4530:28;;4568:32;4577:5;4584:7;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;:::o;3242:106::-;3303:7;3329:12;;3322:19;;3242:106;:::o;5190:286::-;5317:4;5333:15;5351:12;:10;:12::i;:::-;5333:30;;5373:38;5389:4;5395:7;5404:6;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;5465:4;5458:11;;;5190:286;;;;;:::o;3091:91::-;3149:5;3173:2;3166:9;;3091:91;:::o;5871:234::-;5959:4;5975:13;5991:12;:10;:12::i;:::-;5975:28;;6013:64;6022:5;6029:7;6066:10;6038:25;6048:5;6055:7;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;:::-;6094:4;6087:11;;;5871:234;;;;:::o;3406:125::-;3480:7;3506:9;:18;3516:7;3506:18;;;;;;;;;;;;;;;;3499:25;;3406:125;;;:::o;2365:102::-;2421:13;2453:7;2446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365:102;:::o;6592:427::-;6685:4;6701:13;6717:12;:10;:12::i;:::-;6701:28;;6739:24;6766:25;6776:5;6783:7;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;:::-;7008:4;7001:11;;;;6592:427;;;;:::o;3727:189::-;3806:4;3822:13;3838:12;:10;:12::i;:::-;3822:28;;3860;3870:5;3877:2;3881:6;3860:9;:28::i;:::-;3905:4;3898:11;;;3727:189;;;;:::o;3974:149::-;4063:7;4089:11;:18;4101:5;4089:18;;;;;;;;;;;;;;;:27;4108:7;4089:27;;;;;;;;;;;;;;;;4082:34;;3974:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10504:370:0:-;10652:1;10635:19;;:5;:19;;;;10627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10732:1;10713:21;;:7;:21;;;;10705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:6;10784:11;:18;10796:5;10784:18;;;;;;;;;;;;;;;:27;10803:7;10784:27;;;;;;;;;;;;;;;:36;;;;10851:7;10835:32;;10844:5;10835:32;;;10860:6;10835:32;;;;;;:::i;:::-;;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;11371:17;11351:16;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11347:243;11275:321;11155:441;;;:::o;7473:818::-;7615:1;7599:18;;:4;:18;;;;7591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7691:1;7677:16;;:2;:16;;;;7669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;7793:19;7815:9;:15;7825:4;7815:15;;;;;;;;;;;;;;;;7793:37;;7863:6;7848:11;:21;;7840:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7978:6;7964:11;:20;7946:9;:15;7956:4;7946:15;;;;;;;;;;;;;;;:38;;;;8178:6;8161:9;:13;8171:2;8161:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8225:2;8210:26;;8219:4;8210:26;;;8229:6;8210:26;;;;;;:::i;:::-;;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;:::-;7581:710;7473:818;;;:::o;12180:121::-;;;;:::o;12889:120::-;;;;:::o;7:99:4:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:474::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5585:118;5236:474;;;;;:::o;5716:180::-;5764:77;5761:1;5754:88;5861:4;5858:1;5851:15;5885:4;5882:1;5875:15;5902:320;5946:6;5983:1;5977:4;5973:12;5963:22;;6030:1;6024:4;6020:12;6051:18;6041:81;;6107:4;6099:6;6095:17;6085:27;;6041:81;6169:2;6161:6;6158:14;6138:18;6135:38;6132:84;;;6188:18;;:::i;:::-;6132:84;5953:269;5902:320;;;:::o;6228:180::-;6276:77;6273:1;6266:88;6373:4;6370:1;6363:15;6397:4;6394:1;6387:15;6414:305;6454:3;6473:20;6491:1;6473:20;:::i;:::-;6468:25;;6507:20;6525:1;6507:20;:::i;:::-;6502:25;;6661:1;6593:66;6589:74;6586:1;6583:81;6580:107;;;6667:18;;:::i;:::-;6580:107;6711:1;6708;6704:9;6697:16;;6414:305;;;;:::o;6725:224::-;6865:34;6861:1;6853:6;6849:14;6842:58;6934:7;6929:2;6921:6;6917:15;6910:32;6725:224;:::o;6955:366::-;7097:3;7118:67;7182:2;7177:3;7118:67;:::i;:::-;7111:74;;7194:93;7283:3;7194:93;:::i;:::-;7312:2;7307:3;7303:12;7296:19;;6955:366;;;:::o;7327:419::-;7493:4;7531:2;7520:9;7516:18;7508:26;;7580:9;7574:4;7570:20;7566:1;7555:9;7551:17;7544:47;7608:131;7734:4;7608:131;:::i;:::-;7600:139;;7327:419;;;:::o;7752:223::-;7892:34;7888:1;7880:6;7876:14;7869:58;7961:6;7956:2;7948:6;7944:15;7937:31;7752:223;:::o;7981:366::-;8123:3;8144:67;8208:2;8203:3;8144:67;:::i;:::-;8137:74;;8220:93;8309:3;8220:93;:::i;:::-;8338:2;8333:3;8329:12;8322:19;;7981:366;;;:::o;8353:419::-;8519:4;8557:2;8546:9;8542:18;8534:26;;8606:9;8600:4;8596:20;8592:1;8581:9;8577:17;8570:47;8634:131;8760:4;8634:131;:::i;:::-;8626:139;;8353:419;;;:::o;8778:221::-;8918:34;8914:1;8906:6;8902:14;8895:58;8987:4;8982:2;8974:6;8970:15;8963:29;8778:221;:::o;9005:366::-;9147:3;9168:67;9232:2;9227:3;9168:67;:::i;:::-;9161:74;;9244:93;9333:3;9244:93;:::i;:::-;9362:2;9357:3;9353:12;9346:19;;9005:366;;;:::o;9377:419::-;9543:4;9581:2;9570:9;9566:18;9558:26;;9630:9;9624:4;9620:20;9616:1;9605:9;9601:17;9594:47;9658:131;9784:4;9658:131;:::i;:::-;9650:139;;9377:419;;;:::o;9802:179::-;9942:31;9938:1;9930:6;9926:14;9919:55;9802:179;:::o;9987:366::-;10129:3;10150:67;10214:2;10209:3;10150:67;:::i;:::-;10143:74;;10226:93;10315:3;10226:93;:::i;:::-;10344:2;10339:3;10335:12;10328:19;;9987:366;;;:::o;10359:419::-;10525:4;10563:2;10552:9;10548:18;10540:26;;10612:9;10606:4;10602:20;10598:1;10587:9;10583:17;10576:47;10640:131;10766:4;10640:131;:::i;:::-;10632:139;;10359:419;;;:::o;10784:224::-;10924:34;10920:1;10912:6;10908:14;10901:58;10993:7;10988:2;10980:6;10976:15;10969:32;10784:224;:::o;11014:366::-;11156:3;11177:67;11241:2;11236:3;11177:67;:::i;:::-;11170:74;;11253:93;11342:3;11253:93;:::i;:::-;11371:2;11366:3;11362:12;11355:19;;11014:366;;;:::o;11386:419::-;11552:4;11590:2;11579:9;11575:18;11567:26;;11639:9;11633:4;11629:20;11625:1;11614:9;11610:17;11603:47;11667:131;11793:4;11667:131;:::i;:::-;11659:139;;11386:419;;;:::o;11811:222::-;11951:34;11947:1;11939:6;11935:14;11928:58;12020:5;12015:2;12007:6;12003:15;11996:30;11811:222;:::o;12039:366::-;12181:3;12202:67;12266:2;12261:3;12202:67;:::i;:::-;12195:74;;12278:93;12367:3;12278:93;:::i;:::-;12396:2;12391:3;12387:12;12380:19;;12039:366;;;:::o;12411:419::-;12577:4;12615:2;12604:9;12600:18;12592:26;;12664:9;12658:4;12654:20;12650:1;12639:9;12635:17;12628:47;12692:131;12818:4;12692:131;:::i;:::-;12684:139;;12411:419;;;:::o;12836:225::-;12976:34;12972:1;12964:6;12960:14;12953:58;13045:8;13040:2;13032:6;13028:15;13021:33;12836:225;:::o;13067:366::-;13209:3;13230:67;13294:2;13289:3;13230:67;:::i;:::-;13223:74;;13306:93;13395:3;13306:93;:::i;:::-;13424:2;13419:3;13415:12;13408:19;;13067:366;;;:::o;13439:419::-;13605:4;13643:2;13632:9;13628:18;13620:26;;13692:9;13686:4;13682:20;13678:1;13667:9;13663:17;13656:47;13720:131;13846:4;13720:131;:::i;:::-;13712:139;;13439:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "940600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2863",
"decimals()": "432",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2482",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfer(address,address,uint256)": "15",
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "15",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_spendAllowance(address,address,uint256)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.sol": "ERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0xdb25b43421c51349d2758a0a26e25965d62f300cf7b32151bfbd1848865f994c",
"license": "MIT",
"urls": [
"bzz-raw://b076e4864aca7050485ceda0bb23c0c3b7c5f7b9eb5099bd530829f29c19189e",
"dweb:/ipfs/QmNdHdUeazhHZ1zHy5RirGS8QfLwgf4MwaH4UWCbXtA4xz"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
}
},
"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.9+commit.e5eed63a"
},
"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": {
".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": "IERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.9;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// 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);
}
// SPDX-License-Identifier: MIT
// 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;
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "ziltoken"]
fetch = +refs/heads/*:refs/remotes/ZilToken/*
url = git remote add origin https://github.com/EmekaManuel/ZilToken.git
ref: refs/heads/master
DIRCdB9��B�dB9��B����
?mN�oM�Q�D�~��n�[|��4.deps/npm/@openzeppelin/contracts/access/Ownable.soldB9�S�dB9�S�^��2�K.B"R�ǘ�?�[T�A΁��7.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.soldB9�o�dB9�o����
ϸ��c�RR��! �����e8.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.soldB9�'dB9�'���X���Y�?ӑZ��d�r�`pYB.deps/npm/@openzeppelin/contracts/token/ERC20/artifacts/ERC20.jsondB9�J�dB9�J����+t}��OW�Dg�(�K�~22K.deps/npm/@openzeppelin/contracts/token/ERC20/artifacts/ERC20_metadata.jsondB9�4��dB9�4�������ц���ÓG�<�߉�t��h.deps/npm/@openzeppelin/contracts/token/ERC20/artifacts/build-info/b1463aa5d1874a60e3697f6357180a1f.jsondB9�"&dB9�"&���qЎ�lb��^N�I�w��Y�%J.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.soldB9�:,�dB9�:,�������j����� E����E`��K.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.soldB9�2�:�dB9�2�:����L�[F����VPm>��X_3.deps/npm/@openzeppelin/contracts/utils/Context.soldB9�x�@dB9�x�@g�����o#q{K���Sc��X�W�n.prettierrc.jsondBa��dBa��a��%�I��7?��z%>e��rG�tcontracts/MyToken.soldB9�:��dB9�:�����c
��X�Ku�eD%0�4wsT�L�u contracts/artifacts/MyToken.jsondB9�7辀dB9�7辀���&4 �oX��%����)���$f{�)contracts/artifacts/MyToken_metadata.jsondBa�=D@dBa�=D@����\!.�H���Q��O�?�� contracts/artifacts/ZilDoge.jsondBa��@dBa��@���5�ꅿ��$�dΚ�I�#M )contracts/artifacts/ZilDoge_metadata.jsondD�J�k�dD�J�k����,�$��s��&:�g��@��%e�Dcontracts/artifacts/build-info/0b47fde4b9fba6538830bb5ab5b1904f.jsondBCj#I4dBCj#I4���,��}˝���dna)����KD�XF�Dcontracts/artifacts/build-info/13d8ce17a24ea1b65d9d03af6c62e802.jsondB9� ��dB9� ��c�����0����~�]nY��}��scripts/deploy_with_ethers.tsdB9��̀dB9��̀d��޲+�F�^-�M����$���%scripts/deploy_with_web3.tsdB9��dB9��e����uۚCl�j��{�f� X�.Bscripts/ethers-lib.tsdB9�4��dB9�4��f��O���:���V�)��?�(GY�scripts/web3-lib.tsdB9�Q�dB9�Q�i�����暯��T�Y<����=�tests/MyToken_test.sol�9"�Lr���r�Q9�{#��
x���AjC!��=��e���B(��e1���� b�}i��ݿ��/��m9:̡
l��\1yJ����=.\���1QU4O�O(q]3�]�5��K���/�}��`0�>��].����&c������d{|��>��H<�G����'�����P��~�2~����w��/�HK�
x��YmS�H���WL��e���Gܗ�, 9�,� �Vj=/-�Co'� &��Y��1��lR�R��tO?OwO�%�\�0`�/���d�qeo��׵��*�3�ڣl#�
���@��=Y�]�} �5�<ɓX�z�3�Z���q�������+q��+��a}�Ri���(�-�1˳���H��
�Q�ؒyV鲖:/{�����n��Fi^�O*X���|oś
�A���J7�ʌ'��Q�T U՛d<m�WB7Y�s�����?�jUj��3�,0\���� yR�}��|k��ӑ�m�.�2���|�2�_�dT��w'R�?��%Ϫhx���\}�����h!<I�+��I��e�}��/�eA��p5�NTgR��� Z�-�����R�������dr�%�y�F���p)�L� ����-z >��XAW�-����ܪ��R�z����,��+�^��>�d���V��b+�![�N6��/�Y�l��g��w.��(��_:�<9��"=�[l�ұҠ�Z4=7Q�ȅbUnV�< �/��� �?i�`s2T���Z�]�h>�Y�c��E��Nbm:3>m)Xo��4�1j5���w@>��=~n�g���c�Z޺1g��E�㝷��o��[�UD�cN�$������8�S�o��כ��a�\�kR
U$�H���9�@�WA�3K�;"��:�2MtNxF�,��X����� rl�JHQ��"�H�m��D����JT1�~���ty�'{��F��(9]����N�$�H�����@�X7�KRB��B� � �"/ \�H`���G��o 3j�6r�I{Jc��Q���/�Wy�(���"ᣱQ>6�q��ağ�]d�X���3��?!Qc uU7�&���'#c�bx�46����%$�ɫ��@��
#���e���xF~��c���9S�N�,Af�1�t�f�14�2ƞ4�{�cM�*�� ��`k�G�����"G�[6��(%W|Dx�D�y625�\��s5�̳݊fvAo3���x{?<��.��ݞx�<��y��J���K���cz��!FcP �)��a<ij���`�|��6)e�����9�Q6��,Vƴ��T���!��+�n7蒏�/����}�:4���bL�Y1��ȥu����dN?��P��&�ƍw���y��/'�S��>_��=�TqE�.U��7�g<�,�i,yG���rSLKĝ�/�:9c��̜���;fF|�`t�d��|Z���e�L�̤��E3͛�Kx�����pVpè�ʠ�2ȸ]�!Q]���:� �nCinZ�|0���hE�۫�k�~�a��o���.Ks�;]��njQf�7W����K�� �w�e���ת�*>E�t$�yyl=i{��X�&���}�bE�;�
�!�k��w�M�;�%�U#�^m���f��A��_{���0}3}���O͓$%�0=�9(G��Ďi���=^]4��Q5ՍvK7���h-3��ݷw��Ό ���N �ʭ������R����Xao�( ��ͩ� g�M܎�o�o�)�����Z ���ږ�,� �x�Sn�`{��)ߎJeǶ<KDBY�e���0teKaK��fZ:xu�.�e2�z���Yɯ�67 |p��r��Q�y�B؎�����^£a(��Pf��J+�X8�����M���Q�Z��3�7{ﭛ��w�/O�Q��� r���{���8����M�&h/��"��`��gw3�;�<)�g�7�\Q�p|�C#˥�O��p_����� "O1�1re�b�b�J:������FFi�P`���2 w!� ���nT�G/w�8�e`�_��w�G��Υ�^��ܝ�\I��蠙ZPڬ��L�k1�y� ]_r�cE����ʱ��'�(8X�R�um�l5p��W�Rܖ���%�'mʄ
���t�p#���4��� ���Bp� �AfUg��ڻ�z=<��:={�}q��e��9�l'�ؒ��/�������`#j�8R���gh�8L���%�HѰ��e��gJi�����諈*ay�0�XBE�c��!GJ!B
9E�#\��D�0�]F)� ���w�������A5���ݣ����%������v^8s >t3,�:WP�D�� v����33XY"d!u��<!C�s<�x��EJz6EW�����:b�ʶ���FDȖ�
s<.%�e���h*r# �/N��g��������9���ȇ�y5:>������0������^�Ok������?�I
x���;
1@�s��L&�Y�����D��] ������5����Z�ݍ.�Y��T&KE�O�9'��\���SO� HLű�"@DcM! `L��8�)L��׸o]_�<���K}l��� ��q]yk'm!��ݤ�`T�N�SWu�����I�
x�+)JMU01`01���Լ�Ԃ�Ԝ�<��e�k��f~���� Y �] ���
x�+)JMU046`040031Q0H21OKI5I�LKJ435��06HJ2ML2M2�40I��*��cP�0���a5���?K;�bڢ��j��q�Er��y��Ij�a��i�e��qb�Y��Q���Ā��s<����y���7�.�"�V�0�
x�+)JMU046`0400312S,�S ��LR ��LS,S ��̒͌R- ������jO�=p�XJ^���77�x�<�p[5��(����8)�$��� 9� ��� �,�81%�4%)b@�Ԫ�BR���#�ﺴ����s(*�0�
x��SMo�@��_1�N��i��� ���p@�׻�d�z�쇃�����CA�"E�y�v��\��Ξ�x����x�y�Nr�����D{ �o?E��P���U�Jj�2�[ƽ�X1�!T�yP?K.��bo��No��)��D*�v}�M���
g�$�*��%��B��.���bE����p�$}]�?Y��_�R��m�n@Q:�F0�Wk�S�Cǵ�a�Rf��6F ��tޚr�7�Di�luK�A0-(n�<i`�j�DO�4G(����`˚� �c�d����?I6Ss�a��k�kR���j�t���i�r�I|����A�Y����tB�g��A�J��Ƒ
k�vjQ)��P5����9]�i�_�}+q�������9�WL�
��ji}`j�=U|_��
5�OfcѲ����"c�w�9)5���󝺑p��_G�l"���q�~�bI&�ˣ���(=�~kW���e�n��v��G!���m�+���1¢���ig���8z����^�gxIJ߾��G��_�fX
x��iw#G� �_�_���"�����@n�� ���U�U���g�_dr�$�AR��j��5�#<�8<@0%�*D�ann���/��s�a����Wg�����W�s�q��Ͽ��.�~��������M���W�>��{==n����%<�=��½}�1���ё�춟���Ԋ��gbd;?n��g��l��6������f.���7�k��:z���_~~�W�u�7�y�_=�n������( ��� �:�y�*��}������?�ݽN_ܮ���~�v���1޽��>"�,{���v��c�&�����㭝�n�Y";�e�vm�����v���⍲� �T(�
��2�lwq �:�F�*�}z;B�Z��T�u)��t E�R�LJ����5 ��Vd3C*�BѾ�Mk�>���o�������Ji{���I���O;�{�n?Fw7�}�����3��F-oo@2�p�y�yx������n6+�䆮� ��ք�7|%�\�x�5�6�Rdj#���x##+�b���y�7����O����n���c���m�TY^e���"w�0��&U_��0TF��Pu"�2TO��&���9(�{��j�׭�֜M8鸳i�NJ0�V����n}�~߿�p��]!؈́��e` W�Տ��&Z� ĵϥ
������O7�O�sJt�΅�s��y��ݷV�A��Go$<�?ܾ��C�Ԛ�ݷhi���:Ѐ�=��6��8��ԡo�E`YR�{Ϥ��=�?���z�A��&�wNL��`ehI�)��]�Ļ�vwC~n�V(=h��u\횱�Q�2�S�`�mov��?<��� Gl�w:�&�ҷ������F�Iq�U>�W�c0t��x�n��K����
e@D�Hg��Ac������ߟ�.�^gov+|Af `�L�^<Ba@EEX`�].�s��Ro\Ψd���;���P��]��~t�s7���'_ �F�쏷�8'��>.A�������mB6�r�`8�:���c�D��O�ݓ{E^U_���Ƞ˙�a�R#���
΅$�2F5|ӎ�?�Z%$�@XB�1�ŀشU\1K,�FjpA��P���*y4��F J$�_}t\_AE߮�jn7�MlfHr�G�����7z�Bx�Ց_j՘Z��V�^���.�j�{����"��
;���3�J81T$�Up��@���Y*��_�/�!4�z�� ���!\��1C(5 C@��1���N��-����”�����7�����\8FϨ!%X�>�X�L����,�Z��\��ʤ����|:����ʵ��ɒ�p����p���H(<|h�yo���������v����6Z��8�&]���>�۟}�3`��u��:3���b��i �<�^CQ?{ȶ�~];ª��P¤��ʻ�ϊ�2J�����Nkx���d���`�3%c�^!lB��5�Z-�"ڹ���$ڳ�����[�Y:sU�7`�na�{t�qӐ��L�ny��ǍvV���,�����=%��Ɛ�L��!! ��1#M����`�2$h{bL�l�DN !)#A;1�{����l�����Xxmtzv�.�Fy��ރ�=U ;�4<��n�y;�c�xzj� ���s���K��_kмZm�׉=�#�=&������o��'32gM�����qx�CM�ρ)S��A�:�Cൡz |ڏn�5\���r ���'?{�� ӂ�.�x��˽P?M6��)��'G�{�,腙b]�Θ�&V��Ҿ#M�S�~�g-J�$i�Ƈ|�@
V1:ԆҰ��* �:c S=-�7ӗ�Ğ_���[sH���C=�u����l�c�ĩo���0�9���of ��j�K� ��\O-ƖW���&���c;q��Z i��)``�o��D�0#̪f,�;(?db���¾%�Q���پ��پ��Yh ݯ��p�7��ph��ţT��3�,z���ڲ�_�g��Z����8�(9�ə
,ݢ�r�_� ��$��M\��L_�����L�@�k���>�=��D�.�O���!�̳*�aY��*Ѡa�@�bJ����==�e�=<�U�>}�{�U�j}Y ���|��"`�Z��3�c�׈9��d�5�01�'� ���Xs�ݽ�n?�֙>m+����{�F��5W#j��}|�i�[��O���Gks�yq߳#�\j��}��l�erά[����-��>I�r� ��R ╌=a�[��!X�=��T�#f]��%��L�XRR����;���cDY-�N�� D8�K�)��1zY�
Jf��\�� ����^_�P �s��PM�Q�=1�=���m[�s�q���8��o��'Ord�p~8��eZ�T�3�C������MQ�K�
���6����z������ߔ�=�ٯ�!�>�Z"�d`}G�i�@��vs0W*sJ2�m$���DOK���v}�֬��?P��c�Ug����;��ْ�-/��h����sx���R�-s��� 5{��24v�5H��.��M�j_2�j�&¿`�\/o,�7�x�>�2�2>��[������1�}j3c�}筴~����r����i�bv�{*C��ԯ�@U�Rm �!����Y���7���,�+ٺ�(8���=�-���Q�C�u[��;v�-K�#���������\�}k��g����/�����a��K-��ֳ��ڧ���Iy�Lho��p����f��̈́v�P�1s�C�P�i>�R9Bٖ�ڶt۽��0���q��*�C��6)L$�4��h��QePM��U�u���/��@����i4j #�f4v55F?�i4��m4���D��)���� ���`��7L����9���ݴl}k�i�k>--�iK�+R�9j=���E�?-�nւE�_U��{ ٞ5��GPɛy��C���v������ �{5�f�uH L@=�&_����X=�ɕx�'�A�OL�/n�/#�,t���;�Dj�_� ����Z�S^7F��b�8�ne��0;�Q�@�w����tu�A�twB;R[���R�e����o�"�A����
*�� x��� �:�� cv�B���)���aD�S����t*9����I[OS��&�I
>Q腭C��O�����XI � ����=�����+�|V�Bڣ o����~@V�hdB��L�{��� Ж���1Ia$k���թ���Z� ���A�e��}pRb9�3=�ٽب��х����]Ɨ��w+l����mvL ud{N:.��ߛ����|}4�������%'��,���/Iᴉؒ��񂔗�mJya�M\ٔ� p�45�c�ؐ��RZ?}i����*�oI�Qxۚ�d#�� Q�~�D�:��|��p��-�(���� � ��l� �a�y=.X�HO�7��ذ8���YO�O�ā����8z��@�r=û�<k>�֊�/�Z�����3(� hhIq �Nz�X�-�.�9�zy�]��E�A֛�<|�Ug q��� ��8� ��%���Sه���7� �i�Z��.�̱_@�����ڵ���6˞Q<q�Nf�S�={*B���X�C�Tp#�Q����=g��kF�$��a���y^ ɹ�Q_y:8�w<d�R#����� l��]{'�QF�:� �#n���/�$3]� �OKcx�'�9=S݁ʌM�Q'ݵ�r�ީ̌��.
" Wwq�9Kx��4�~���ӧ�Ǜ���G&�q���1=�혾�� ���zе7�3��)��+��>�sM<'z�4X��̍7G��:$�-q'�f3���Y� ��\'���v�1tÉwd��Ży!���ڞ�p��|Q��� FF�q��0|��w!�{�(�$������ o�Y�G����0���@KBHSA����ĕ�IM���RҩN�mW*=�-���s�OrƆ�n��s�d =�,��������OT@+����<�x��_�.��)�a~]�qS�p�]�4�ôM�Q ._�a�Q:� ���q��,J3�[6��3FFә�d��LȎ���y�F��P/��������S�<Z�x���h��iW`���i�g��BO����N��`� �D~7�iаEs��ajc&&��A��P����현���iȸ1OC� ���ǧqZ�[�C��i�����8[z����7p�3�Û�/��.��"��/�N���8��I��]���I!3@��2( ���I�$Pl�s�d��M+a��#�K��4�h''����>�Tǭ���?��y��4���-� -ɼ9ۃŘ%��(�pb ��g���J$�,�]��d�n&r�$B�I��%`��Je7A���sv]���p¹���0� |��t��9a7��]�u�,L�}�]?�,�9B�"�' ���;{sL�6�L7�t��'ݠȿ� �{ȩ7�*@���j�'�c�S<�``�ӫ��Wz"`���[�*������Ab<^Q���H��T�)��t�63�o� '�m<�=C�ufvڽyah��A�8��h.Ϻ��X���0��:�}ϩ���v�XCO���<�� ?F�z,t5���.�|��['p������v}{�l���~���>�|z��lvۏ *zlB����~��t��v�r�h�����^�c�Om��l��(��
��6G�Z>� 5�H���������(����(l�l��-7�� ���Ӥ'�55԰(��� �s����8de|��s�H!%�3NxĈZ�ok��j��5J�g��f�D���K�5o–K�(�[0\����ń�������Gp�����s\&:� F�>i�7�La���A�XJ(���xg��a��.�������جȒ��6$ZF���Xri�e��<�l�J�Ul���r�㍌�\ X�0�H잚��2r���ikSfr)͌���er ��n�0���)�;z��>���{Lm��>���A|
/2:�Q &����Aװ: H������q�r�Wnj�S�'�ݎ��yU�s�{㦴)���-6 |� j�o� juJB�Jb�Ś�Ծ�0�۸"&�&���z��&y����QSǹ�΄�XQx���R���U���ধ��s1��<c�[��^��VAg����=>���zd�,�Z{�i��C0q�K�!V�d�x��6����6D��A�s!�;z��n��@��[K�)��@��_A]�qbC�]��L���iO̔����v���S�O9%���e(�bzJ�֛G&��:��g�xm���3xNDb^����(`
<Bx�S�N��뉚b����i��ml���J������W�LJ�O��&��6�((�f������kȞ~��rV'S� T�^I���7J1t��$��9�Lj��K8�D03�N� Nt����b>كI5=��$�M~�I� Y�3�Ș6 c�'{0����8�DE~;����=�$�a�I�zy����(g��b<�4Ȇ�vlBǠc�#zE���!�l9
���$�\�x� ���=�"�̥v��).�s�6Av��n"�,�%,�q3��IGI��$b2�)�
%��$��\������1Ȱ�I.�)07/��D����@1����9eh�NJ����3`^?�+���lI�*��:�3O��꿷j�ɧ��&����@P�e�Y�eb��u�[�VN�Ή���9}�K��O�ߖ~9�r�VBj����Co\�'�f@�H�o�)��Z�t ��#Z���F)0���(��� L���vO9����I�QV�/ �;�{v'OgɅOS3B�VB�I#��c�/#�����,Qlݗ�D*2�zb�"�$7��y�_Բ���k|LrQ��*�_t.��Tt�:d�z�y_P�:�D#Ӓ��z|Z�PB�cS�ݖ��"��FoB��6Ou�&��V�� ��գ��R#���
΅$�2F5|�F3�GR���TY�z����$7�*���p*���Q'%��L%�v��Ci_�G0���$T �/����7EsW���l?6WH`�)�µ۸�7Wx�\�͋�:�:�+\�+�� �B��I�ڝ�+<�w�P�){ ��z���1ōLh�J���*;����ZOf��:z�BD�$�|�eء%n3*�&Q��{y�:�]��i�a�/?d��M�X�5,�?s���.�E5�R�@��_�|�\h]I� �?�څ �92/ĩ@�j5 B�]��;n�����.Z��ဇP�U ������=Ӿɘ��&��۷�QUW��yc"~Qq�_Zx�:;(`}�w��M2����?ϝo>��.�}���^��l�49���s5`��Q�O<��3�NKi0�%�`�M\�җ�����k���9+��jcUn���#`�n9,})x�Q���x�)I����$#�D=]�����Z��m0�V�L����⚷��s!��M��0�n��^�8yc��<�Q �L �58�D�=�+-Er��N�o���P ��r�\����\׺J0��
��)�ȹvy�e�VȌ��;Gn�w���f��1�IΣop#�xI��Ilө�2Qc��V�6�2 I�����Y�t���F�����W���_���/c���^���9�{R��u¯��� ��4z�ϱ�ҋd1�����/ �>�nov��?<�Л�{�����N�~s���v~��]�SV�l��Y����a�5}}���^4��vŁw�!��ᄒ���[�{}~������f{8}�1��A����e@�c��<i�x�
���x�����~����ǯ�N(��/E�R���O�t�Tn�K@w�����:��n��d�۟��$p����F}p�+�U ��KA��6��A�������%�}S��5��W� o.r���Fz-��O������p{��g�������������_�m�����s0(�9|��0��5�P��?���_o����k�8��o��}�������������踨��� ��L+v�Ek��M+%�ᩓM;laͬH��/]X-o`/��� ��b�h�i��*��Ut�}*����ETe� 4Ui�/ ���⿼:/<�<����<��n?]��������[p���,Z�?b�����?����sZ��I|�=�m�D�sAyJ� c�J��t�w���mtw��n�$ᴇ�@En&J��o���5� $�@awHh�K���=�+�ZEU"{��eRv:y�P�kV�7��S�wdӥ�d��Ě���}]-���.���^�ߕ���7߼�S�]���7�q|ӊ�
�L2j��u.#<*�&o�[n�V_�s@�ydK}Ki�hp��K�A�\�fM�F�
\Y4x6�v�K�-eۧ�զ�+�Ij �&��¼>�ey栓��M# ��4@ �� Rv[��e������%�|���MM�f��k$���Oɨ�?���s$������r۩ݔ����g��~�����f*Me������p=�3`��v�����U�?�\�xY����^'��v�a�{��Nn;t^T~-y������=�y��ğ�bİ���~]uh�9I��4L6U8����_W��n�?�a�_�{o�݌�V��������Z*�D����x}��(�#y��I��ڠr�M� �>G����r�����?'�!�?w�8�6����[�2+�I��f{���;�J �w�F� ����$�f����3"�X�ELj\k@�k��:�'���J��������}S~�x�\���<��SjB5k}Sw��Ν+�~� ����/5O%�O��s�@���5&����[\��ٯ����S�> 6祲����x ���?~��_��$���������M�v��'q�W����W�؀"�("�d\B�b�(�Z��!��\ʤMJ���_@gT22����+!�Fh����֞�d����}h�p ��!I���p`�e6�ŕ�
1� ���W�KޯY�R�R���������sF��)�<i!�ɓX5JI���a�K��q���*"�SJT^(��7���Z�=8�������Ox�Q�8@ ͻ*1�\$��V�
̔0�{;�Q�mާo������ׯ�ޘe ��+��0A�r!Vk�Y���aFP�zc5c_G�&�Kt�QK��:N�#�K�z#�,� ʪ��k<�Oi�?�@�(1*�!fŵ��1fʛ�e���mi3*]�dL�ѣ�J�i�d7 �p��ӱ�^�J1äHꙨ���Ѹe��bJ$���5���L�YR|�^)���U�z�^_JЛ�z�$��t���KeWlI���� N+�2�P����d����ހ2Y�Q�P�� �α��g�l�lu��bF�l�~L�t^��Y�{g.�&��'t����� ��$r�[�jA@v�$�IX��r~ |iO�@��(�u��I���w��⽶���\)
�l���a�R��;�J�iV��Y:�O�mD��6&�Q"� ���@�(i*��L�Ok�rm��0z��P���b�͆�g��38(]9����1��X� ���ݛ�$�8�TE �B��N�����J뫬�Y����b/O���®MZR$RBdo�:� �Ԙ�nRfE�iޞ���E�g�N��{��҄�E�P%+�lD:B`ִW�FPi��K�5�(���H-r�%Z��{b�:վ��` �N�s��P� @
X�'`^g-+G�{E�xi���^A�Wg�<>�]s��C�s�3���FT�C��>����M���Ƽ�&�:�Ē��I�8�i�L!��߫e*�@�f�&�7 b��9�$<'��K��
! �BEW��g?�� f��) Ґ���WM��ڬ0ǡ�8-�;��z �\R2p�'< �VV�Z0��ڸ��<��d�DQ%T�9I51q�Ck�
5B��xsK��T�T� ��O��QOt!����ޤ�B�u>�MJS�2��k�# 0��$)� �y�y�1;IY�� Χl�ORC-3 ��E�����,'�����D`R�N^�D.�Do�((A ���I�m�I>5͵z1����f-�Φ��^��M���)��'OW�\f��#1�VP�C�~a��iD�Q(��r�<�2է�r%OW$B.\%Oy�t �;^�8y�"Q�4'5&����&}�a�u�M�.�c
mb�0�{��Z�T��p�S���T��2i��8yj��YA���U:�A+���S�X�S��,lDR+���*������@c�<�*�s��@ӧ2��r�B�Rh4��Jx�T�:4���uLx�
)���8����Ha�hD�� ��N���n4˞�Й���[�qV��֝>_:ےR���xRW�HkE7���OmZ��MB��O�ھ����}�栮�պ&k�|{]��M�"�ե9l�V�_�.��"��$պ�}���D>��hNoK[iTW���X־�l�����f��@�'h.�`>�����\g��Q%�G��xԦ�\bl�*V����Y݄U�r�H�3��p,yZOR��
�H��s�ִ�����o���Ri��a�9�ϩ��U��@�ui_0�W�Vպ���q���2��l�¦�U^�����s��vݥ��`[.�k�����<�!��:��#PY���&H�.���dQ�$���`J���f]m��{!}��'�7�DR���E$�>YMHk9k+�.Ԣ$� a�����\ mx�Ȣ.���,6�D$KQIǷBn{1�lY|�V0b�0|c�m�k����lV͖��v�k9Z�L�E{sO����k�}��jҟ��Z��G��l���=ɨ|�Q���tu��,�� r�z�Fy�r8��)��B��" �W<�ķ�1�Lg�d��GT�]�dE�"=�����7v��Ͱ�+�+1�W���5�Tb�Dl&�}�Yzx_ S�}E�xk��}Ŗx_�u�c����>�*8%���\�I��e��j%=:!���r����������p�ZK� +Ǎ��c�4�hL୸1iN[��8?�?�[kEX5�䓖���<ʞ����%5#��źYSjM�qכ�Ui���Y�ԐeI�j���XW��ڎ"�Z�_�$�"J �e%� ���c�G����zn.8�v�b
�REb`j� ��Ŵ�t�eA� *��'�M`z�����~�')Y����e��0w��r"�3�UB��6���1�U贜�����kfS<Xi'�FAV�v�3��4@��l|�t|��a
n�����"g��R��L��˘�2^�+ �^S��T00b#6|��يl������ �Vf�WC��5،E����Y��5Vĭ�T,��5I�o�b�4�������y�4��j�m��V�{J6ޱ��r2�o����9�ՊM5�MƷT���-1��*�-ٰ�dXb7�8a��Sa(2 �6�E��r`�<�\M�x>���J�E�=u���$�����?���X�O�ܠ���Py7D��LD�1M���Vysa��9�Dxۢ!��T�s�Lh(��Dx^�H�Rv#�UΜV;�͍��w��qq���5�L<ʍ��S�\I��T�ԏk]�u�|X�kcz4-�Xr �<ӌ�l�7mv��b�e����r�U�J������������I��*x5x$��cv�r������ϸsk �"r�I*i�-��21S~H�V�['O�"� Px���|m�}װ�ܪ�Mr�0�ؓ�X�ֿK׏(�Іp}�$��'0,���r� ��YZ�c:�S��L�����K4����͕��^gK�)���㏋�ʙe�)72��ٓ(弶��.�9�'5i*ak��S������徔>ܗN��e#�/�J���9���e�����d�G�����yƭ���p�`�l)�%T�O����2V�cm�w-���d�mO^#��XyV#�^-c�������m
j�mnd��Zr��q(\>'~j���t���C�8k�H�,\ e�%�Xv����s̬2'B�.8�x'"Ƀ�s2ƽ2l,7 6���5f��ɡ��U�r������-�X�d ��U����A2]��$]yK
�������oI�=%<��l9��<#d�B�U�r��U�,6ZP��;gp嚸��L&��o\�O��i�o�!�O�� q2~�w#��`��Q �{���6�S�☙��D�d��zSd��*kf��H"�+{5�Rl.#�c%s�d@6?�O��TĚ���#ø/R�7�4&YFO)�����Ɲt�z�(L����A���qi7ǕA ӤS�t�N��a=E�ѫ���6����6���҇� ir��\���ƍfY�߷��֢S�������6�'��n0w��'���&�D����6���3y|
߭�-�mH��ս7Cp��k�u Pz��M�����(�6������C���0~���S�]���#�q4?{pd�Y��S��‘M��HޯU���������h�����'��.;�����^�?<��nw[S�f��ꇈ�~X{��r2��8�Ʉ?"ځ?4�'ű���q�CHY��㐖����� Z%��q�� D�����A)�h�i��R p��2�h3�?�:Ꮵ��:�YR ������pgY�q�je��QL[t�2N죥��p�B�Y�2�i����J��*g�������F��h�c��Q��Q��VJ���!��h�LG�������5M��UdG�h͓��*9K������S�S��T��d4U؄-�h��\yϸt�k����Q�kՅ?������t�xc\q�?֑5�8���� ���#PZ�\���`�� K �3B-ilW��Nk�0|���Fj�u�^J�$�bvC��BP�x��)����ǩp�*=n���������+='?r�}����~�������۷�������O��߾��W���qwa�������ۼ"I�}���p�W�~8��w������")Yz:_,<TJi�ɲW�SV�� ~˹��Rq=�0�j'�@�]A �t�;덟���9��KF�<��S<�I��=H*��K�����\W�3���u�^����,�z�J4k�=��׷՟��[��12�e�����]�����*���-\K/���T�� ;��R�@�� hmc��� �P-�!�R`�om� �*�%5��H��!���/ks�ퟓ7����|��E �
c�`�.]�w��`:���ޞ��J@Cb����24����M��� >sq�K��%���^���ΖЯq }������%�ku�K�WU����)���"���������Q֋<a��z��֕3S���+�I�~ɵ��5 u���\�!���ʥhA���jYZ��X#��,dA ]�UEy�j�<��]�E,c�~�yU�v�F��-� F��N��6����J.��3 �����r�?�T{��5�-c���̹e��f����]{��%� �\�JV������_���к�`�-�%�tfN�MnDB� /i9�aٖs���%����Y2ú��(��؊kYGĜx��-M��Qc����-#%+�Q]A��|v�Y��~TN�Y�+�q����0��6Z2���@���M uЁB��s^-��*�����I�ڷ)��2X��:;����K���ˤQ��a���x ���T���y�k��,���p}���/�H��;�G#e�Ґt�q�َ���J\ �/�/���-{wu��z>���u�j[�m�6+�@}J=�����Z4!t�\�e���]�Oq�(Mm��4��Y��޴Y� ��n/� >��ҹ�)c���(��Jr�Z&�V�������؁z`��7�V�ˋE�ү�� ��٫�8g�2ע6�`� ���k?`%�� �&�Ib��Ӆ�*�]��Sd����1R։���$�Xj�����̜��ʖ��J�}[ �"�A��*���SDrA���R^Շ/���w���s��²OH���z���j1���v9%M]NI�INe��EK$�O��.B������J���$i�\�۬��E�Z��ݵ��\� ]���huD�Ԓ�+�5�b���!�(r�3�^�0�ī>\ �$D/���k��Q�J�/(�;�����x.���Rr[�oӉ�W���Q e�U�&v]Z��5���XH���p�p�eo�BJ�Y��.l��nsx�Q�G��[)���5_��� ��u�0Q�g6 S��gFMH/f��q�bKh^�: �~\7�5���r`{0R�Ȏ�`?�*/�T��~ߍ�'s�Xa!u�*�3wB������Y$�ṨẦ�k�O}F����u*�� ���u�]�����י�W���sU�}^~������^�����������oϵ�d��i8���\�����^U,q�\���VbRWIp05�0&��ϝ��58���Yɹ%�^^\�Kj��d�aIN澢�d�[ /+E���b��Ղ_U��FB��յ�W�rQ)j�E���⊛*�sUBh�5g���R#L{�����Y�5�W�,�`��
h�^��Z�0�B�JыK���/�BW�.���)���J�i�Z���K������f��W�^_Qw��2�APoQyů//U�0/j4��3�+E��u�X\^S�I���jI�E�;�~���3�ޢ�_�jEm�o���_�K �*��җb�XIb��m����D'z����Z��Z�����ja褪���A��u�8�����Z0�mA��H�>�H�i�ϴ�^��3Tr8���\��H[gȴ-�71p�6��g�r^�wQ_k�o�6zS�%��/�} �!OB�!�h���a����c�1�X ��7N������u39�<j0T������� �l.&��9����.�>�Dc�H���[�fKAf۸�}.uc���\ul[�_��L�D�҃B?L_���Β�-Z�?������Y�j���YU����I���� ���1p�Ywp~, �ח���G�V\��\��k�������N�q0` ymd#e�>ۦ�B�wI��E��ѮQM3_��U���r]/h�,l��s�ԟ�UB�q�����Q��*���������-�X�'Bf���0�=~�w���� V5��J�Rp��2"KEOq���`V�
��5U�_B^��J�| ��4�*�i�2���J�l'Ly���r��D\�a����$ў �OW��_�sU�T�����2'5��SToS^��n� �~e+E�Q��~��6 ��r~����\��R�t!�l;j��1��t� P�L�턙+�6�(�����H~���EZ��u�� Mc�cXB���t䫔�zq�K�l뢠�k�� W��qy::��X�9t�ΰZ{�PIYuO��q��0��]��E��ҩ��Uh�nLu��a�)��vQ"-�P���H��ڗ�O��QX5L���������Y���h,�5�/E��v��� �h)vq���)ҿU��ENTz��-�X�9�ohP�E}������H��e}�HWgԿ�.%�e��|�X�1�=��Js������ppe�x��i:?��Ӵ�2k~0^�y�J�Lc8�R(tYU����Z�٨�7�S&Ua��0�z�;-Q�=0ɖ�y7�2MU‹ji�i�Wa��_ϐ����$��Ψ?q* �{L$�u����^�V�޴���S]�u��/.+�L��_\X}I��/@��/����|..��wMd��[D��~�(����^�PW� ��FN�S� G��T�C�y<C5�ҁ��%F|.�g./��{��p��,J��-��>�c�q&��v(C5���z��sL���>���+=֠��0�s�q^��/��^����.rU ��� ݼ}��H������W����R/�ł�kw��^q� �@��\� �@�J^0B��R_� �J�wvޚ8p�r�Сؠ��2%��i�'���+F[1�(miv�o91��9�yr�sJ� ��s6a�����)���h R����8���E3�4_|������/i�*l��]�Q��C�/���PQ�_��Pw�I�ˋ�f�g!��i�������`��ZZ
��Щ>`DU�����2��� ��#��`G�I?���m��� �$����0�ϖ���l�p���W��� $T;^qQ`���"_���GE^]��j��Ec� $�QT���T侓V3�R.��`K�\�%��0צt��g �/o\�b�o3�bYc�y����n4H?��%�QN�>�!wL��������O�j�-���(�> ���a߹b:�:�Ķ$4�:��5{䷓��E�Dz_P%�'���NO��(MOe�� mj�Pj�o�E�v_�D�E�B��DL�κ����G &M��Mk*+e�~vrz�`A�N3Ԏ�+@d5��};μ�&�&Cy�����0�[�Na/�\d'� ?�4�ݪ���9�s���i������w5�^�����>33mŖX9A�g�d9�}�n�ч6&0fy=5�ƴ�O��v�v��P��(~7��8m����v8�3U�~�HA]��)�=n��+*+��y�����'����I����G�HJo7;�t��y���=���H3Q� �Q�6���̗�;t�zi?(�H3���\��r�r�j������ʑ�ڜ��2�Ox Q�ً��a�.:)] �;�4)t�>�v�R~]���rT聁A�a`������S��P0���o�((��FxG�"ݦ�H�ta#������f�5E�Me��ٓ5�o��e�bN�N6��HX�zj�$<o,;5IX4�c�-��)/�^4�W�i�r��Iz~�Z�b�W��a^] ��|�0�l4d�>�� ��d*Y#��$SI�k�HQ�����I��8�!��"��03� >�<��E=����ˆ����<�u/�b�V1��W>VEj'9xl����(����Վy�AX�\g%�s{Y?e�*H��|��"��PT�����q �]k ߮�[A�pϪ�ף'�����t�<�t e�y����^��W�z.�5�S ��������Ǝ45o��Hш+ $��TZG"H8)ɴ
�A�i�;d>5��T����3�L�ż6���ѩW�O'����7����w�S<X�<��k�d�K��ֳa��!Wr)\׳;�YWҐ�\_���w�SmZ�f[_-����4t�hߡg�_�@ o���Z,@�%PT�W �Hp� �+P�>�7�����QX��z��3�7�}�޳R#`�;1��sYW"�q��H��G�Ah�,F��բ�f�.D3�`��e�s��%]����b�U|:Dc�R��ܬ�h_E؉hFL��(�l�\��۸"�4���~؋����ہ���Ln�lz�� 8�sVr?C�s���6V�N���˺����C#cS�S����8�;���t�h!0�(i�A1��e]s�Ջ���7n
N4�tG'�el � Q���e'���u�1ߗ�~:Ds���B�IC�…��!�A��qPtuT7�i {�h�J�����z�����:DsII�h��1��(I���4���f��2A��g#�щh.����س�脈f�jDs�|� C4$L&=:I��&�,H� sl�ԉ�{]��͂�S�.��'��'�f܍�NL)����L�1����B��zϧ�k�o��|R��b^� Zs,��*��5�s�|�����A�yU�9�6�~R�y��CZ,z����o�����2�jT�xݷ�y��S���់��$ _��:���<G���ĥ�G����w�a{WW���ZƮ��\��J܇g�Ʌ����4V��ZT`�\*.Ђ0��+�����_����z�>�V��O�f篘3�-����f�͛7R�%�M�G�V3J���9�Lj$3 ���Q^~5��n��a)-g� *=(�[Je��yc��q�Y)g[F@�[�<����si�L(���ĺ��73W*�*Nfغ�B��Ƃ3��ϱe�O�*?�1:C|*AfVA9e9�YS�.|07��-�۾A�#�3��H�Q���L�1�/��/�j�b��ŠWF� X�V~�J
�2�C��ĉ�3��88^N�2��f�MV")n��3�%��(C�������x$�LɖiO���f&,|
��hI��Pj�9"�"��F��6 y0�փ��`Q+pH:� ��'��*3V~d #�,����*3���k>{����0� A��B���̽�� �T�b�M�tʨ!0Z�6�>4�@��y����8 Z;soa�0��"B���'o����w���¿�\�� !��Fل􈏀�(aoP!P�a(�4�a�c� 3�� ��(�Ό0WX���7J�7�l��I �b��H�L$@H�Y,��Bq
3 ��#��(9D}0����L��$_�W
%�K�P*H�[!��`Q@�����{J`4($���褘�B�:L � �B5����~�P�͔F�&CWy�(E�L`2�
#(,� (�(�C��F����K~s��Y*�u� h�
�㬾����<0-�O P6P^G�C�R�*��D^�ub���7y9�H�j&m]Z�zQ 7�ā1fq
%��O���T�Y�^RM�����D+�83T�\�RIHY'���z��K�²:" � Z'�ჺ�@�a(
~(d�dw �������i#>��tI�'h�8Ԡ.��@eT|�����5,Hh�Z�B{(2!�p � �%��2��4} f�t��uƈ�����dh���A��!���2%�L@�Ȃ���(��a�Q7 �Apn�A;�bȭ
[��1�:�^�*K�5 #�ތJ � �\+L�:w ���p���+�����aB+ f�� b����0@���B^_2��e�y�Lf�CD��4>��)�
�Z� i򟥒'{�(_ �^�L)4;PX��P��\v�]b�$��@>;A����Ak�4��@�:���g�9 ��l"��]IC�+��,���JZ�JX� ��Z�r� | Z�6|��� �@�A���k�������ط(>&n>~�4H ��(�0��T��zNQS@@騡I��`Z���3� ����e�$M��sL�����tj��� �
&���G�͕#G.q :UAA��G�i�
.a�^(�d��;��,��ʵ��k �=�?>4�2�1i�� ��$Nc��`����� fPO���� L�<�'*��_���� ��SI7��SR+�]�-�k� � e
Ԅ0�� K0�f_0����Rk f�\9�J�,c��g�d*p���-����O�ND�h<�>�Xz�T]��o��>��)>�鑏'�+0���
��hT��ԅ"h ��I�u����e̕t�>&��� ,~Zh�n:��5�j���?��@��� ��H:*a4s�'��h�Cm��?ڟ�8�/��{������DP�m;���Si��"o$h��h��”�m�@����$����׌8@�RA)�,�d��‡�dJ��ؗ�2��@�pV��� ~�y�������B4L��%�����J������0�Zǟ�����x�]ǯf�w�������v{���O��c��9{��/���n�����W�����������z���]�(�������c�{w�}|�w${���v��c����i���������}�����o���U[����ݫ���D��������]t���w7ʚ6�f�@�VxG>}�m�oo�;'��-o�{�n��f��k#7z��k =xw#M+�90i�O(��'����C�����h�h��jQ�X�����򍤭�-�_�vI�i��X?>�߯a�F�"�`^e*َ���Z��������o��
([��4!U�����HV�)9�Y~�p����V� Q>�m���Tl������ eG<���I\�*�=��Bg��������S�U���[������憵�.�*�Y�٭� ��wۏ7���nmu�Pv$3;Y�m;����,(;������ct�pC��e5�E���n�����C\�nXk��V1 eG��}��N``�W��֭����4�Í�Ce�T�܎��{�tCU�t[UU�Pt�lo�*��*'��ح�]|�}Bɑ�ժ)�l5�g�!����r{wCu;K ]C�����ct���ӧ��7࠴K�.��{NU������1�ծ9m��u��u1϶���Y�v�����v
��*¡�8�-oo���y����]���j�XZՎ�Oww��n�l7y�&v���$��h@�F0:���3%�� �A��G@�!�0c'����ʺ7��ҏ H�w����vj��"�P-���H��ax��S��𸻽�1���}����K�k>>��b<�{�3����n��:f�lt�l���?ұ��> +)1rǸ�A6k��dI ][I�f�0��4{���#�3L*��XS\�bK�B����,#��BI���2R�T4�Zq��7���aj�G��&rC�fC�FJj)�tD �YUH�-Q� jc��Vt����H��d����&3G�1|���X�h�5Yo��\�������l�f��jim6K��T�W�0;|��D�)5f��r�b����5_E��,aTt%4���bA��H��X�eL<Li ;�0�J�2��ɍ�FI�fK�X�������T�a�j��rE�F�!ZuL�i@��؊��l6�C֠��,7��X/W� �4v-�F�%_c`Ҙ�.�(�aX���L�K�G08@/�"�cb<i�nHV��Dq�bt)W��H��b�f�ljy�a.�2�/�Vn)�J�x ��ؘ}���R�E�͒�8L. c������75�㫌f���j)�F�k�չZJk���T����� �3�� e�:�`�6�1���p�4��"he%��-�2���YOhF6 ����%��k �3x*^��%-F��a�csc�B� �aĮ�^�(LWK�1L�(�˥Z�כH�@Z�:����P�="on@�rCAU�Hh0b �C|%�\�x �-{@�YņZ��oddATma#D��v6SO0�/�q��L�! ���t��pq�!�z�7Uϵ��f���u�ۇj{{b)��-��}$�� ��m �ta�p�� 0n]��N "�������� 3���p�q�Fx�q�t�C�[��G���--���{�b����|�GB�Q�ø
3��.v�q��{��bܜȣ�{���M���0�핇�8��G��!��aG���~{�Vǘ��w�z�}��WLw�����e׾�LwN��1�y�_n���흗�:�y� �h��>�����?�����U�=���v�u�\owW8uѰEg|�\~{���K�$�G���}����%����?>�u�US���i�e���Yӭ��8���!����&U�7����g}ݳcD8U�٤ˆ��q��iK�}�j߭Y����q������Lԁ�J����>YI�6;�??��g�Keъ|��St���w���/Uj�O��Sq��ִZE����f�]Kaz�y������������.�h>�D30K��X��{��1��B�������Ԇ��܇�j �\n-Y�e��75kCX, n�f�Jm`@�^�(�����- �$� n��nP�l�>�nnx�| �C��;S�&�Sn�3�3vE��[��}�NC�8��H�J�����[g��� a\Ⱦu�h�46��*�ALk#魳��xC�����[ٙmc�ۭCf���mc#խC�}6��Ƞs+/hy�Y?n?�Ɔ�[����b�Q�V^��y���v�8nRC�C�†&��>�T���*�������1^�sG�b���
e@D�Hg�����ϟp�^������v����ۇ�
_��š�.�y�N>ˆ��N��r�.y��*u��L�Rg��U��t1x�}��ʍ=i=c��S2�Oqv����'u 0}�A�����*�߮����m�kM!�|&���_*?�Z������9��Ѻ�ow3�n�K �Z��)����]��R��՚��>[��hy�0�S�6�4�3z�@A�1��~�}Q<. '���E����xs{��ʅs�R�TM{���~];���Jq�� ט��cZ���+%
Nݟ����gJ��+���a�f�0��D���x`���dc��'ԊHAdۧ�CɆ'�h{�
?#��&/����/m5q3Z�b�����V�rbz�Q�_��ڮ4=J�3<��N��CQ�D�?�ޣm�������z ���!��&3Q��YY�5�d�|��9L�`�` E�� �x�����x��F+��C^F��Zө̐A) G1P�����N�E߿>�hÃ9���o)�_O�mJu� &�g��)m&�� ġ̰��Ww@�5�-w�,I�*��b����;�S�"�M���{�]���j~ڪ �x�%��}®��hҔ�Y�@��.B��V���f��~������:��[?<6���Dg�')�!I������O�t5��[|�5�����3�
���~=ު�އ��O���u��K8�<T��^ ��w���K x���bZ�0�-D=
L%��K�~��F�|�P
��<�t ���!B���'�i�7��CW����&�xɄ�J���&�#�@���^��P3���0�/��y=��k�w,�p'5O|�)��ޯ�+Hx�)�G8ޖp
!@�}$$�qט��~>�{��G9�YZ���������Sͻ�IV= j��=�p^O��c��-^�拋����Av�^m�O����F#,��E\m�Po�� �l_���r6�f��)��
��k��R+ؾ�$T+�#�g>�K��Ё��CG��_���z�]9N�(��5D�>�v��S�����h�ĕ�z��hCZ>C�b� -��H=))���C/�����^�Iϩ�dj�Wl���������)=&l��=��N^��$���S����<��<&a�6��c�v�_(����\v^��o�,�l�]��xȩ ��Z� z�����0gf|�b�,�B/�*af��B2Qr�BS���m�ܞ�6������\X�PmS�z :h�t7orx oq��7%����Z�e�ߌ���^�ɱע)7��ꠗ���o� O����'�~��_M?^R<�1�ȒS�3���6���AA����
8GU2A����Q������ӣ&�{f�'�������� �#=0͂H��� %3وi��>&#=�����fzB��ČO�N�v���O����`���u����/0�^���s�-������O� �"�s\!ؙl����t�X���g�d��3��Bm; w�yR�ʷզ�?��ns��5��7�<*lܳ�Y����֗�� ��"��b�=a�q'�57'���خ<�7|�E_�� �@�L4l��`(�>��:��>H%P�s�ς��C!�𗐯<�J�&�L%h��� |���W%�v���xq�0��=,��<���9G�}�"[�t l�>ȸ͑�t\�̿���� �'�V��6k���Uy�#tp��-��6�-?RF@>N��?��Xk�I^����8?��1@��BR�3��'�����PF�nc3Me��6�i���k�/1���nC L&���/�@Y��op��E�(�M�� cl�z�q��z||�3%�5kr�7G��SNA���i��|���� �˛:N�)�6�IS�]Q�@Qo��6̚��� tM� � ���̺�,�2i�#���u��ٞ�+����(Ć�I�� =�¯<��(��d}���_]�<M��DC�\x�H_P 9�yT �� ������Q`8^���\����B��R��V�#B�3��D ��Č
s&2�l��۝$~ ��!2��Mq0r�2ɡ���� ���|�`͍ 6��RN�U6�ļPQ��RFh��٧�T��K,�!$dr�AA!�'�����;��ƻg���m���EX=�N�e�*܄��IM2䱥��ޣ5�i��'�@�`��I_�ä��[-�JE���D+;3�8>����C���
�����8�l1@b�7G~�t�;�=v0��"ڕ��E���3��{}� �����D�<�&;�D�YQ7��<T���bjJ5`A��#�Ki#lw�j�
2��}l��\�<k��%6�N\\"]M*.��_��4��4qi, .�T3;��dO�ä�� Ɏs��֓ '9#�� ������y�g��c�H���FT2��;��3�N�J0��� �4���v�'�:�T����O�;����0��11��)�f<<��)�����#����dK G1 N}y�g^y׏Ӫ�4�@�Fd�������@��y\a��C�:��7�}��x�o3B=\���0G6B[�����:�s_��0�mhg�Z� ٔG�0���裄f�H���Cd�����r`,��I�aTzVq��x 7������~����S�v<VŀC��Uu��=/�Ƥ;�S%4��)�>17���\��+��맰��[������d�(G�<V�{���;ʧ��1���َ����.�}B���)���|�ӊi;�L�Ȥz�2Ë�_VL�����1m����S&�0&��Ŵn���Ĵ�_XL[����%pL[P�Ec����1�^~�1mn|��/2�-����Ic�M[b�8J3���ic'/&���
�.����|Lۻ;@�� ��x-]����2ӹ$<]�6�1ma��bڒ��Ӗl���Ǵ%��Ĵ��ӎi#E}�1m�|k�SŴ[ �!S#�41mlx�����a1����1m��IĴ�!/+�-̘�\�
���1m��3��Ƿ48���=��k��V�`I�=�m���k<���  ��<窅 ����b�.h�]57wy��m^����7F}��g�1�G�R��c�x����ـ�����ߪ�|G�<��O��e�lrL���Ϻ5���4���ݏ�hǼiCl�͹��]96������ʽ���v�V�|�6�Lv�����<��P(��yX��.����b�������%��e��I���:@_�9fm`�b���c6�d�����������M�z�=E�/�%�zN5wp�[��>�g ���ڈ��wYoPk�@��� �*O��,�������Ӂp�>y�r��@lH����W-�˜�+0��T�D����S�h"X%^qz6���m�9�Wf#p$�6�[�^��h�\8��f#�>N�F�xE�1m��|�AZ�Z:�����F���ah@�+��CkL��!x�%�g�3�Y�3�}��1�荁+Oc�Ug�c2 ?ᝎE��3<�V�)o|�ؙxvh�|����.�V���e�r*ZN@���)s�$6��k0�Q_�u�Q_��Ϝ9@N�9��m\-{Z;�;N��h���G���Z�ľ��Ar8I��qJ�L�a�� �0���]��t_�i�)&���TS�2`�ܠ^�'+?����=���Եq@x�\���Ns�D�m|إ�HM��T�� �:�3�1 ���2��l�C����S�q�}�Pw��F�*�7{����9���� �]��r�\R@�b��|�ビ��:��\H�)h�p�s�P��|C��5���\h��>Ap�w��)ތ��.���*]뾛��HŞ�TOc�j�'8q�5���2�F�5>�VU���_�ݩ��@��������X���w�rT5��T�׻��0��-1,���8��s�^j�F�#�i���si�'R�ؼ�|��
��F�)B5�nC��R��Ƈ�jR�JT`��l��'��r�Ɇ��cEM�L�hw|�8N�F3��6��R����~��=��.�{��/=`c������1ԞV���kg�����r€ �~��Mgs�'�
!�X� ��Ra۫��DŽm2�V����7*��w������є�(�ؤǖq+�L��:��[�~;̤u� ��e��L��>̤��_�a&�*}���p��{�N�0�ᔫn�� f�-(ꡎ�U'{� �ғ-��t�9��Rf"���w���`r=�a&�⩭_�a&���dm|u�U�=�FeA���mTT��ݨ,��/r�2��L�Q��qr�5��f"�$��6*��_�a&�@<��L���3���=�D0A���L^�t�6��Wg#0o�<�������ĥ����/m���F�>N�F�x������\�{�F��_�a&�@<-� �^���\�g�����<���l.�I���_�� ����Ӱ���tv�6��"2���}��� @�����rJ�?���Ba�x�x�x���=����n����9��[:�d�g8��[��C�}���P�pP�8P�U��#�L�)�9��$���r��y!����bd���`w� ɽw��>Hh�C
��s�,`���L��4J����=ɱ�W�]���O��3���J�G���$�U/��3!����Ό�R�+�39��W+��/v_�P�w_�iB3��P����@�6��OjW�P�spK���6�9�K����]��؜`^ڎZ�(;��-��;j���Z蔙�Bk0����3�:�ȗ��Vh�;���!�wOxG-�w�[]���������V�[=x9;j���$���Q+ &z�;j��,�@V(�~��M��X*F��Ajgщ ��N�6>v7��)��E�Z��I+�'[��w҂K��
~�S^�"p���9m'�$�����u� ���v'm���;i�z����?��v�
�uBOs'-��{q � [?�����S;�*�NZ����`U�v��D�4;i%%��v�J
�����/c'- �����T�_[��F�n���w*�����2`��Գ�����ˀ��ȗ�+����2`]�/g'm"O!���
�����
+���wV�9G.o��fSfvJN�sF�8��oѤ6�uSX/��4��z�<���˯5�$9�'M������b4Ir�5�5���B4��͠_^4 �;I�w�n�h���d�I�IB�g�& ��9�$���/$�$<6bm|�����$���O-�)淪�r��Ԯ�Ӌ&�#�z���vͿ�h�8���/'�$�>�h�d���h�d����;�$WSG�t�]�(����2��I��񶒅�=J� �ht͟��w�M��̵;���Ƈm&K *���~�� e�m�}� e ��� eRj:���m�9�����6�I����7�I�7[�T���g��{$7�<��5�"O��hn��H���N�[���$�쮛R��*��t���gfN_� ���R J2H����^n���*�{#�� .���e����2�\l�����L;`K�)��i��g�A�]$�EB�'��lr8u$�ږH�d�F"�j��(�%�5�����?,���|X�����a���-��L��&ݢ�0�6?s!��P ���[4fݤx�x�����P�Co�\�@��-n�h�<�-�� �h$�����2^�~�t(�a1 ���2�]
�Rm�h�z�- ��_
d�}�[4�p�P ��g�E�b�[4!�s�F`k�-�����x�F�}�-���@��A\
�J����~���[4�^��F�Mo�h$��h4Rox�F#�yn�h���1�c{1��g�E��"��D�|�h qCp�s� {�6����>+ܰ�� /��Te���4n#�l�� �Y�� �<5�y��X��K�>K_yܜd���X{�s�X.��Ri2$��s?�D�Ғ�<c�9ɘZ:�!��y�����-c� ~-�+Lt�3е�؋(����Q��{��ο'���0���H��\M+@��h�mu��VĈ��V�^G�Hl�V$�J ��5�ˆ4Zt�iE���a��ٻ7E �!�5w ��\ �a)CQxǥ0~^(z���zΤ{�!p��^N�q`��~z a,O��i���m�`L�%|�.i1���廿<�u��ǖ \a��ى�����xg�Zh9߂Z�a��$��56��b�h!ҝ���5��������fEy�X�7��� �xuTA_��3�Y�/��rв�n�w�O9�a"/<<��y/D��M��8h*�x�ZDj�ų6V��<�X92��س�2�1S�V^EC�/��&_�;�L���l�"�yľD�;m�ɺ�M�����>�n��Y���9�+62:�"2 ���x����N�n}�9x�B +9�7�����~2�$�~�g6��� ��]��f)��X��~J����P��Ýi����y�7�Ud�a���'��|nD1�#����S�Ls����8��� OG3O��V����
9������g%� R牖 *�s�7�t�q�~���� �89s[~z|��?�<�?f��g��8�܄0�Q��8������{<j$bՎ���ˡF;��*i~�+����s��N�y�
�x�f{�`��n2�F���MJ[���_�a�oR<���O��^K+�gb�/���覚��?G�p�l�T>��} P ˬJ��Eu2��� ��]��<������f��9GB5,�����kNZ#�c� ����.:|`���F���*VP�螌� F�4��Z�{i���b #Ĵb��*b,p��3c��1N#ƣ~��l�����/�
C��c��G�~��6���/� ��_��Ŧ_�q��ʘU[{�%�Ć˙��S���T-����_��c*bms6��.P���u�h��/k��e)fj��^0s��
c/9nް^�'��,��������y�n�)}���*��[\-6H����X%����5� B<n��P�"�cy��e����?���}�9n��r)F��Y_�����O0SγE���vc�7�g�D��- ��hY�SO�΅��T����)Q�h 7s������O��.4��� V˔�#R�A|�s�-?�y?3��PR
�d&�QF�R>�[ \㦀�*k�4p�a �6�]#.�O�=;I��sgI�~���bW���C���>�={W�y g��W�"�V�
Q
�Չfۣ�O0��Ckض�����R�gi ����YZ�>�s<��
f3�8�T�m�|���`2/��M�EY�l �t�\R��!>y�E���m��߼�����_~�\�,��p����;����U)M�+'��2��&���̔��J[jn�.*��� �"6��A��l9��*��)Ჸg������csRֻ�8L��Zi+b�L�:�o㌟��n�t��I��#������۔ �����߯��u0ŁkR$l�٥w^,"�3��sD,}����y[�~�]Qһ�#�݊��,���<a?��Z�A�����K>\�t�N��M8 \�s[�3��}��q�n��q�5$!H0��۠4���(.5�a��i�?aؾl�vk�I�S�k �����scˆF�KiL�!��N_
5s^�H��8��y>�̃�� �2����݆w���l�bBt���<���v�����N��V"/���*?��E'dt��u2�D=���s�t�\���H�t*ob+��uL�)&朶�y-��㷞x��+��gH�D�UϤ�����K'8�.M&�'DM��`P��B���S��ɚ�%*��
����3�� �P����)r��|@�}��rqH0Z���>��PvC�� �56Jr��i%�O�� FRtl}�x%����qu�z;n��'��=���ң�uQ9N��f/7D�6���+�hI�C"�uᏪ���Gm� ��8;"�?&�p�K$O<����|���/�ȳ��w�t��udY�������hz�#��#9w�2;]��I[8��EVEV�<���2/xQ*g;����J%�)y&���]��q
F"ܦ���YcN��q��0��j��Z�Tl�'� u�&څ~m�g�L��!�F�8�B�!z���,�ѳ�+:�٭zk��C�S!z��WL�y����݄��v����l,�1�b6�n�C
pZD�RS�*=��%�S#z r�=�@��㹑'C�xn�9!z<^�㹏Gw�>؛d% ��eD�����^�5��������O�C��p��~����AD�*朶����Է���%YQ��B�D���N���sA�x�cf 5�産�#Y��"����(o�C����r�*=�+yN��{gD��"1��+�s�N3�=����J��d�Eνri��'›]����%������Z�^�sZ��k�f�~"�ٵ�I���V�����V?���]�?�!�Z���r�����<Y>�ē@�}�t8hxD7��0��L���M���|��"
P�H�b�G�\�!��JW\D(Y�
��2��� ��9aJ*t��>����pN�����œ��/����wĈj�)-�e�X�*��%۽�ۚfLƖ��b]3�얱��1׆ �n�w�>�?c�t�H��if��.g�myh��1�0Lp�8��_�[̤ �祷�Jļ�:�H�H6[�d-��d됟�?�>+�D�<�w-�>�眶�*���ɷ�J��)��1q:��v�:�� w� |��;d^=�n= )� �r�oh�F�9ā�D����Py0As���Z1����+)�f� �-�sg����%7^yƬs�1#�t�N#<ù"m�1��9�D8�;�c-�C�� pwk����姦H�h��S��0Gz�躚Vx��+c��jG�(�s�
i���x5^�cr�?�$�0d������`kh�M����(1{���-��Y�PW�F`�)����櫤,��g5m�M4o(o�$�% �fК3@�@E�9/YV�%BW�e��YH��m�@�.��/ D���(���A�ŁԯH 9���#Aֶn.Yb?;���.I,?�ݟ8]�����G�G;L��']�h���ןD���ʂ�et�l ����ϑj."K9�!�H8ɜո1���7]�sV�U�ma����NW-Y�*;NZ?Q�qJۥ\�d��Z��D�ܮ�,�B�אJ�TC*����m�"�!�y��a�%�J��e���􀐑�� ��S�X�+�I��W�Ox͋����6���r�EG�k�ط+��!��P��M��;'(.���%(d�����O)� �2�&YC�#��̑j)";��!�H8I�b���Viy���+�S��S9
�s�Q�8���OR@5�8i�b$N�Wx�5,� N�y�4UA����ş��4� +7�3 ��}k�A;�O�Z �xs��ZSn�)�� j����Ꮆν��Ye��p����x���V5(-:�z�"�q����ˋw��/���|�����_� �ϻȶ &��|��FЂ�G�8���S���k\�"{zYp�RI �V>���T�;Z]x���Ihq��oz��5�(���J;ھ"���Z]���s�C�ܶ��i�Ł�L�}G��⍽���U�m�5��2�w�in4\�Lzf2��3��JZ�xf�+�n$�-�� ���w����җB��5���d{{�ۤ8�ͽ��>���s�t��.8s8�<�k?�d]��� E�'��+P��_A{^�_�yɂ���kE�td�;:A[�=��T�|ũ�9��=�m���b������$�Jo�MZ���&H�����
Zpڽ����W���[��h�/��[����p#Ѥ�}q����� ^&�9m�V|;~A=�x�[~A�b��� ��_A~���W�� ��-m�5r�E#���/�o.8�'w��8�?ם��YFvw�q���"X�M�*b����\��Ĺ�������4�%�Wq|�Q�����W�4p!���!�����[��rPx$o�����V���&`A�_b�Ţ�*w�yNۀ�\����0�O�Ta�C�g�� ���7���q��)=D~1�Rk��RHF�In�'Le �%��s���' ��5��1�w?�@�}���������2:J��M�ʧ�d�(� �V7�&����*���Z�Y`(�� ���b(O���ډԌJL0��GOr &&�qD�ύ��������kY)g=���V��Υ��UF�,�ua�͹�;/T!���pY���À��� ���'!��+�'9�ߥ2� ��*��BOr��,Г���/0��D�˂I�I68xQ�$��ݒ�'��ѓ�=�=�}t﹤���ґ����iГD9z2J}�9 �k��z�{� w��|w�e�$4,ɖm��ѓ��EO.���=ɭ4焞�X^���䆉��I��ðS�' g�
=)�����Dp�^%z��˽ �4z���W�d��7LߦГB؈�)���f!�~��VN�ȟ-zRDQ11�Z]"K�S����Г�KhJC�GO
�x��� ��ГQ�+f��炞���Aj��)�G�ӏܤAOқFO��zr�h�N���B�z���=Rgd�U�ѓB3PG��e^z�2�Gh�6�Z��bܢE$��^P��Ӣ'�B��!�$��c�@Z�j��LJv��M�'��<N���R�p�hu��#� Yp�RI �9���T�{.�I`}ʏ ��b��I������©���qܤ�N%2����q�xc#�WXu�9Y�*�ʊ��خ��K�xY�^�r�*VU�Ef}VU�,$7��1�O3dZ�����rܤ��_b�4�����:)�;�U'�S�XFL8�`��4@���M�%Zu�(o7I��q���l �=�S:��7�V�$��p�Q�k�fxs.�N
o��.�{��N
��&A� �-�&I N���2��:p�š�Zu�ƪ�ˆ�N���p�I���nR"L`�I�8�׈����_
oB�7��$e�7�+�ʻ�ت��ٿ{n:�L���)W�$�g���Bmr�I)��: \L9�B�7�����Yu�'�MF���i�žϪ�R��Yu�t��#y���T�Nқ�M��̪� E�u�&%W��$t��N
:)5NO�y ������Zol�I��g���*�8D~eؤ7��V�獄�5\Q�,�?�̛��0)5~��#�o�}�XUo�7�a�χ�g�m�%�cӬ5I����Z��$sc�-��E�yTV^;�ʝ�uɌYnw+���L88W�B���:��h�e����T���i����t� i!�8X�t�N��wR��� ��`AFi`ADy˰ ҞW ��^�&�Ԟ�)�C��D�������L�yV�,Hz� wQ����:b�P$�eXi�iaAKm��I,�,b�%0�=�J'1,Hq�O R��)n�`A���A�Л(����&DxӰ R�_aA��{�0}��)�?��:p>�A�Z�u"�� �˖m������‚�H����<,HqYxe�������W�4(������t1s�t�Aᑼ��#7i`A���aA$�/ Z,��P\� ��2+���w,5,Hi��gf^z�2.Hi�6� RZ��b܂贄A%�_dq�4�� cp�緣M�iы�S{|���P��G��n; �B� ȑp��Ԣ�7�+Z������ 5��4����rjJ'����/]N-,Cy�EՔA�0�t�6�-�G%����.����yV��&W�R�U"WE�������p���N�X+�y�E�+3^H_�Wev���r��L��T����e��X�O�T��3P*�cv��s��,X� M��%� B. ��(o@I����Ƕ K �\�)��ML�$���Q�kNkxk�@�|l��p��w[^WM�qI /Hx�J҂�(�����T�FY�j�c!�RYkWP*#uj���NO����9(�`l J-8�J�}8>�4����We�p+�Ro @��2��D$p>�WD�l�Zh�E�&�6
�.ƾq[OĀ�����)�#�p2e����-;�V<fR(O9(<�7�~t������$�/�\,�@��vg�����r�f̦Pj-A���Ax���xP������h�>�q��}׿^P��S(�ۑ6=H��P7��v@��O�#�d�(� ��6�F��\#�g�֧�Ԗ�/P�<���z���:tR��[O",����,c��b�$Y
�*p�>3Ns�2[�R��Ȅ*�2��,��Pn�������T�5-�NBX�V�Nj%q�X�t�9tR;�tR����/0{霝?{�_tR;!�@'�򖡓�=�:���n칆Ԟ�)��N�z�:I��A'��W��0��3�N�7�.���Ŗ�� Ӱ���-C'I N �\j_tR[�� : ����2۱.��:i���N��YA'�1�齉8��;w�$08fSW�&Hx��IR�_����-oa�^*#nh���?iD�)H"��I#b�HǸsjuq����z�I�N*b@~��I#���d��(�53 �鳁N%c� 5t��#y��G.A'�MC'I�_:�X4^'t�p'�
:i�w+@' �"5t��f�|��L��F��F�_��E{�Y�[�K���O��$7;S�fgZm�G �)+�� ���֓[ :�������E� ����E��\�4�2�d��(� ��6�Fol�_P��W�S �@'��mŶ��E򋡓���������/�L㙽�����%i��%�2:"J}1�RqfK��ܗ^啫*'�c�]Y���UU:o˼B����R�1�� ��s�9��i9��h�W�P��%Φ��8y����S�����&@1�/ؐս: %&h�`(��1��=�CiY %�C��S:�����&��0�Q�+�lX&�e�n��&��c���2��2�f�0"�e %i�i1�Km���P'�j�n���ؿ��|�n�ˁ� CiAL�
Ciq#� `(�0�s�n+b��5� �4����W e�p��������������
���PZ�6��EX��`(��)��&��PZaӬ�@��a(����4Hy>�w[e^b��S
��M�U����Mc(I�_C�X4^'�����無�B���e&���V{ܿ[�� ���eeH�5|c�k�g���ms�H~] %~�c�)�߷�م6=
�e���9���ݸA��r����p2 e���sE�\�����F�����ؔ�w�������
Tb��ܺM�i��&�"�M�P_�g77�9�e���*��Z��;m��%˅f��sYؼ�y!a������bg�f�I��{v[�t hL7�p�<h�:��h�z�>�9۹����n���|u�I�b�ӬbQ��A��=�4阌 A��ٽ�S:���, h�('MF��8��g�t,������c���2hd! ̅o4IZp�=������N�sMB,/WMZ�yjФ�]HO�t��;#Ф�l4�ĒU�7 ��l�
� o4I��+h�Wx�Y�r��X.�I!>��G���t�p"��I'ed/�wN�.2�6
�UJ��)��<h!�|N��R_3� qa�3M��,f���}�Aᑼ��#7i@����A�$�/�g�R�x��I'�:+Ф��}gs25h����� �K]V���J����8��g1n�2�D��@��,8�,�����M��uն�#^4I@����&��7�+Z��ZY.tȂC�Jbp-�hX[�f5���/<y�'���(Z�����t�G>Y�,a1LZ�g#��&��9� *��9xk�UJ�C�1U�˭2Z�<^g&�aW��+���jw�!�rܤ3̬��t��K�,���9~:ܤs�� n�yK�~�қ�?�4u��I!�7I����$�yոI}��Ԟ�)��ML��$��p�Q�+�fxf͙�&=s�p����b˸I���H"�e�$i�iq�Km���M:�nҹ�3̅�+ujܤ֝7�q �s�Mz� l7�G�q�^�4K�M�&I~�M�
��.�@�R�p/�����)7�#�g���RG��1�Z]�o������.��p!��Mz)��H���&����4H��7�5���Ը�S
��M�]"�d �i�$I�K�&����Mz��Y�&aX.W�Mz��c��Mz#a�e�%^z�2���⋗��>�a��)��!�a����4�S� F�$HdQ��� &Y�
�ͺ�&<%�����X�"����;����|���Ż�GZq�����6����I�q$� 6���Pe��8(��;�w���s%7xU �gs�ˤ)�u!�L��(��<Mh������A�N$u�Θ�ჼC�~� �U 0��W�[��%�A�9�D���"�y�� U�����蔎lwGǵO�"���AQ��e�@ ?|T5�P����cs�b�]���iX�"����AA N�Zj_>�;=^�{�� ��l��'ca8�$�0�d� x����
�N����.�қ��+x$�e|PP�_�A��{�Hq��B�v���6u�v��@�\�A(~�� ��:�[O�V�!uR�[�A-Y���@8>(N}�L�4�\�A�)3��A�ɛN?Z�T��2>(H�K���ƫ�A���9რ��-� �)���O��]V-�BE�f��%�-F��b�bT�����U�R�
w�}z��H+�]ʹ�*֋���������p�Mo��@�$`�@X' �c��������"�pAY�㶒�ʥve^ʝ̪����>sy%�Jgb Zq.� �/�$������� �����m��8H@|�V�>?���w�k��$�@y�ࠠ=��Yt ۤ��ґ���8 "S���T�8�Sv����<�A�E�"8����$y�ӹ<���r!�[����&�
p�[���Uf98H0\P:18� ���
��,F� .��8� �^�7&fSW�&Hx�� R�_�A��{�H�����!��eʥ���q)"x�wN�."�6
U�l۾���̓��H��A � ��f�A*6� �\���rPx$o:��MpP �ipI�K�����q!�Y��@s�
� ��]�A�I-h��}Y<�{������w����5��"�4��I��||E����o��Ş���]��?�}�vu��xݜ���~~��M�>��ǟw��v?�u�SS���{�ۛ�g��\���`_�s���/M�@���W��\�><�u�G�-�o� ��V=�����]�}��M�PkW��+�<ҡ�i��������x�*���;��zS]����/���(ޖ��������ה�{�W������ݏ&~|��C���0����nm�+ȝw��T���������q�]�z�S6���7����D%jo�omh��E��:tjU�ilcW+�]V?6��=W��:ӽ�W{Gq��5�Q��%�v �����T�k�:B�)�<�a�WH㛋���.�ɯ!W�@�)K���C��Ǐ�r�`5;`gz/\��`�� ���������?���nW��p�{V0�C|#2V�o�v��L )��"+L��Mf ����y���}mE�_��<��ƶ"���̊R�,ׅ��yg���,��eƜ��2���5�E��x=ڵw(�?~|���1?t���xs�6@{ �&��P�_7��Zp�Mp� x<�v���+;������*��i���~�����ÆfW�
�Py��%(�j6Q�V&\�&�"@2���׽bO7p�,m&��;�����n.�* ޯ�Z�n�B�"c �ue���~�x
Mw�@�zs�p϶���uJ/���`�vhL�IF�1pL5�[~�"�ɵ�"Z >�F�3���o'+X����Ia�&x`:�s�
����+;oO��t�7F!�S�G�t-�z�c&oF��6/�W�L�‰9�>d���(�1���j(�2�i�aT��T�ɺ���4[M�h5�-�(n�=q?v+pz[�T�W�#���1V�S�a%VՋ�&�sd����I�)�h~�4 �����yq��5S8� ��uv�qŸ��޽)j��OB|S�W�"[-�^I�4�^n�;+��Ƶ̵��+ϘuN2f���z#���s��u��|=z�������$2>����������!�/���$; �`R�e|��߽����n꘏��W��e�no�P���z(:~����ˑX�����!���FH�E ��W�;���)��KJ��KD�ײ��r�j��򟾹�����ǟ���4ΙR��{���g���_.�z�ۇ�����]|�S����_���G������C��ehB#�#ly�c��x�-�+k*�N0��v�2��*��}��Y��܀��2�{W�Rs�uQ��}f!����lK��Z�������2_J����E^�ٿyh֦�*���;�N�I�{P��F??�s`�p��?i;���g� �k���O�6=jY��yӈ�><�4>7�xH�$��Uf� S2i �w�Ȫ��
�g��BY�/J��l�?��Y�D^2%���=<��=|��_/��-چ�z���/��BO��ŝ���K1_���U�yzi|Nϛ(
A�(�������i"���h,��ݠ�_.>��*���3C����X�o(�_#�����`�aB.>�}:��z�1�1kdX����II����%�b�ޓ��4�7֌ݛ�J!�Ж���k��+�PE3+�JW\W��y�2�wd�h�����d���3 �E!�����;VT呎z��ܻ��a9�W�]=jr�s���V��{�n�{_ܵ�����U�=�4� � �e��_0�˝a�5&��
Vm�,���ۜ+��B�I.TY��b�f���]������V��l�؆�m~q�`&؆���6,���� �q�m
ʢ�UiTV�~�vw^j��"����;V��2F*�gU����]���l�h��ɶaI԰��/nԤ�aa�����UY���8;���l ��"ϼ��ځ�ډ\�0Ynw+���L88W�B���:zLQ[�7�>|��7ś��c;90;�� /���OI.��� ���U��^��z��`��ɕ�T�c��U�k�!V�F+N�� �]��rWf����%��l��?���}����!�����!��F��q�4 ��g������Czi�k�ֶ�U63>3Ns�2[�R���`���aNe)��r;nw,g3��j�q�&��ai�_�4L�8\ܯ�L�b��*Ӑ^��!�q��}�U^��r�9�ە/X^U��� !ϝ�)Ua�c'�b��f�i�~z�Ä��|��"�l��
���ŭÔy��]��:,�����q����(/sm S"ϵ(4+w�p���6l�s. �W9�2Pѝ�E�;;3p�?�7�t�����������a�SFK{5�b)�_�aH/�s W>�”� -$ t4�ҒAD����UF˜g���d�����*����1 Ð#�Ɇa~Ȱ��/n�L:,��t�a1�_�eH/�s-�ҽP��p�bz��H����{��~S������*ݼ�)��ݾ���ƹ�tu�y����.gN�z�����'h��J���\#w�ڞ^#���m�|�[5��������Y&w_�YX���������� ������a��/�����Gt�?�U�ZL���#,r���7��#z�!����� ~�9�1� c�ဈ��j�s �����b\�pOj�J� xZZ�w����v����3�<W�L����L+]-X��)�UY_�����d���Bg��؅���Z�jWJW��������������(��,\u"\u�L���/�U�s��ռ�ۣ�-`4�ƒ��J>�����!m�*>ŋ���
�o�% W���х7���.eU仺6���esB�W�ֆ�NK&�pf��u�ټ���:r� ������
�;+��j��VV�j�=m2x$ [�e� �P��<G�o%ó�DYsL�Y�O2�}���=����>}�З��������k�+�Dݲ"V7�.)<��us�O?�S�Vd�,��gw{��<�l����2�[�{���&D�� }���~E�g,<�L�9�G�ҁ��sFĞӻ�};�<dz~{L5�/�Czڈ�;}����Z�}.3x͛~=rY?��8\��H�>;>AWD�b�-�Q}���"Į�\�}���L�u�B_ �k���������C�F>���u���.B���'z��X�Y���l�bu���:������<��vu;|Q[nPf�q���6r�xk��'xq�/<]+T�r��[��t��+�-��|<Z2�h�~�#� �<��B��&��}x&��j��P����P�J�P ��>2 �n5�9��|��4^�l��+�g�>^3�; ���H��y� �_h��1e �Y�;�)|]��O�_d�7r{���}�޷d�|G��>k��j����u%nWy�6�ڷ�I�;���k�+��QPu�n �r�w��S��_�f��x�������d��[E���Ʉ��: �E��׻ڋ����ң��AO��WѺ�4��b�� �$���<��F���������R�7"���F�C}̌��8�j
�s`y�Μ�4�1[1W@䟱��w��"@�Ap��'����;�����km)�6*�v��l�j�ط��,Q�`�Bm��hi��� ��EV6����fY���vY��“�C �j7~R��� ��6c��0P����Xޱ���yz���$���^��[/��X�PR4%�'6/$X@����m�\�"+J��,�T�9Pjn�D�~s�������f$AV��:���}qK� h���O��cJ�����N�u�(��懴�^°��i{��o-���Q=[��k���A>x%[���'洯H־�n���p������3#:���i摖�r��K^�2/ ��qUY���S���0CV��� O�s��-\a ����ь �6�fr0�'
�m�Rm�b�V��?r~9�N�>F�13�D�sA�d����*�ۊ�u�N�w*k�'���:��v/i�
��}������0���0g%x'�e/e�B��ф"�8�������P "JX^ֵ֮x9���,����u��雪ݮZd;���p>7�W��]�y-@���,T#9�*�3�����,+�֍���'󇙤�6�����s��{P
�H�K��ȃ���ʉ0f�Z��-F��S���<�H���"�س������i��Y�'��� X��3�(+W��cڂ�f������c�䱪|�Gw�C��.a�'M1��X�àL����%���,�E?�4�V��ܗ��Ľ�Q��c�{]ݏ�@E�s��k�ɾ�Z]]=OVP�#4�����0��qd� ���F�G��o^Bg����tQ*U�x�c�� Z�^y[y+D&�#�R�;S�܀�����ضg?�Q��i�%���$���1��F�
�P`Yx7��d�anU�<y=�O��T�3�����8�Y��d������xC�_B��G\dC�;$I$�E���pkf�" e�grOY;aC=��ɖ+�AR��y�����y�����N'�_��e��ά��P�dȳ�,���d�DH]��T2<�k ;h�Pr��.��w�e��ﲁ�R��H�q)B& ,%=!��H=]�v��쯨�W�����k��0a��s�^[A����;j�Wa�M�C���ʪ��Y䣶�ժ���i�
��K�҇�Gs9�mf�C�`⡒6�C�p>L8����g�5��0�[b�e�߶��#��O�Sx��OT���5�^ 7�*p#/c�(v�;��Z����<F�ʺ�k.FPpZ�t�i>ha{|�l�niE�lp���j-��-md�DD�l�J�ln��s?�Mq&�����9OT=+�Q��1'�c��a���?��ba0g��5�&7�J�z-��@ �!"���ū<�]�UAY����?&�9Tn>�� eh?��8�����L�1ȁŠb!��P6L�U���U��%�5�F�"��Y� S�媨i�������@���3����ɾ�}��t`��?���?�H��n�6x��E�p�Tsh,-�vYg�G�, �*�찘�.�2j�ee$Ψk
3�Sk�HN�
r��
�w�7e����j$�""�ki�!�5)u�#k�A,D]�������f�i.����o��߀����d���+>��P7�'�\������c�z
��J�Z t�����k�
m�EL�,�G�Ǻ $},�. �q�Z�׮��\D�G�����[C6�����"�͞GK����ء�Fx�e�/����⑯�/��<�T��C~�ˣ�y�G9��Q��7���/����`�)����?�,���zҦ]Q�� ��H� X�����L�����؟��
��9 a]�LC�}���Y�#3��#+�~d����Y ��h�9ȣ\�~��r�#���Gn�~�j�~D�0������� ��Yuyt0�Zƣ��Ey���E<*p��tvj� 夜⅂^���|z�G���Q�<*��C�2e�xTs����Ff�r4S~�����Q_��!^,2��G;�WE�<�}��;����c�F�ژ��/�ـ�������|�/�eA?vf�~��˪)H���ڵۅ\��]e���.jWY�v�����L@-�E-�0�z(��9er^�?����%t��,����f�\�$�B���0r��q�.�S��Z*����������m�h�������/�'�.�S�.~��?~������w����?�]������7��w?|O����.�ǟ~����d��w���t��������oi�۫?^��7����?���k�~��������ÿ�^��nuL_ _�����G�^�+`�����ɒw�k_R��X�v��.7��2Z��ֈ�[y�+�]��ݽ�w��W�E�ދ��;��uv� ����8;D���������WԉXQw{�o�u�j��Ŋz}���⽢�7�΁a�������W�5Xrys����½��n_��:~mo�y������o��5�G��;ys}�g���Ʋ+�N�WT��Xc�oo��5B�x��]��~Ie"}�~{ۓgn�E��vV ���߭ey���k~�jE�kc"h���������� ��;�n�s4�>���� �p��?��H��]�@ң=+�સ�� �}����Gꈷ�~��{*�d�j�q�޴��vr�܁�+�r]���+{���`��n�����_��n���]����=�zw�n��f�н>Z���9��izH����U��ā�� @�)'��]+ŏ�=���2bv���^ݚC����t[���X4Q�T?3���g[A�i�ᾴC~�Օi��>�sb�h�46B8��-��w3�r��ҿv�!���^�; ��{��S9c��XN)fs@��9p3�wHy*(�?�77��Nd���m��9`���=�C�vr���|��^�:_0�~���Z�~7lv]e��N�n��&������gOmd{����G���EjA�S�.�n�������n�=g�+������=;��'�O]n�"�o�}d�m� ŧ�(�U3���k2����T]��7t��~h۠��n z����m�B&`̙���������B���.M�Գ��>m>��>���vRIJt2��~��+K��6�b̛��߾?��0k�+���[͹>Ԓܗ77{Q3�O��!���@��rp�Pm�ܬ�`^+��q��~�@�o��u�8�CW�Õ�C��Plc���������L�t"�I��Ӈ�Mrs��)�1-v���r�k�Xv�q�;H�۷�#O��+Z��w�ǂ�����5�"/zJ(z��C���?�?�z� u�U�@�"G4�+��i��0ݪ�:ӹ�<p�q��ݥ�xZ�Z};lJ�I�K��;�j_�ei�5��?��@�<���"3
�������/}=����˨���8�2��3�_M �0�2�z�ѭ(<��&ʘ�P�'�mK��@< J��pƾ7^�T�i��l@LT;�^˨��HG̍�9�O����ۚ?z��S� 9����l��o5 ��~��!M�����j�g�h�l�����׉f)9�֡�õ�@�i���ʫ���l�t�m�u �D����:5���s��8��݊�s� ���H���F�À�W��#&�7�C���?�V}K�_$c/�:U{}��d��������-����;\����J]_9ohi�~���>`�L�g��ܳC�(�t(��GE ;�܄i�1>l��!�0�ѻ�5TDw�7�������]���BC�:���O�
;j�45B�ݵsjܵ^� t��lص^ɕ��ܖ�q�fܾs�v��?D�{s�^���0�C���0��1��Z�����w�w7�V_�ruO����;����-.Z{���5.Z{��cW7����k/:#��$��A��I�����g�7���C�'�{�L��ANS�vp��]`�84ؽރ�_�Z] 9�+��ۿ���5ퟧs�Tv�כH?]��OW����߈-p����}m�M�݈�}�S� � �h�$ ��OYכ���V/"Wn$�ς��Ƃu� �vVĞuW?D��z�R�kO=W$�!�FB�2ת.��I�no�W���N�8m<,f�=������Z�K��Fި+Z��^�+u{����w�m%���_�bˆ���%�:���E��w�m�����7�Ȫ��N��sä��.��ǸȻ�-̶�]�f�����E��ߘ�"β�\�=�\^p�u*s@����w��=aG����ƽk?�.�5>t������O��2&6`w�����uB� G����ϙ��n���Q�w8�׹��νp�)�پ��AC�A<��?(Ye�37{�T�VuBO��q��^�CxN���/����:z�ӝW���ǿq������
,�k���?�*� $���;��ᦻ���-��eW�����y�� ��w��y�7׸������s=�� ��`��F�M����v���VX�������,o���V��3еXŠ�-��guE�81� c2t��:���&���{R��O��#�t^[wo:T0s��e�u��
M�}��o�yS����gێ���G�X�YS�Ȕ����ؗ|��'��j(m�� �g0�q��������Gs�zh�2��|$XwO7��O}p?�A���v0ٌۥ��3�Jݓ���]�nH%���� wr�����$}3��f�L2�TL�C�z8�9Z�;��1�&xЈ�~�,��]��ڳ'��=��X3)G �����i���O�41�����ȳ�\4��� ޭ���p �^���
�/���ᾭ�71�3��Q.̨F��0('4�~8�>[y:�1��=�FJ�VT��U#�Lx]#�n��'���4Ǫ��4�{�摪ٞ='-ss�v���#����)D�j4�4a5Z(gI�v�@��2{=Z�B]�͖ٛ۽���̐�ͼ�5��zv3ﯞnfT��|��� � ��b��(�3S�N�h5�� ���ۉZ��9��h#gМ�PF�)g��o��a�0#�]]jx�;5��8+��;~�灨�н��{���&��ދ=gz/nD��6�I���S�����(��?�bw�t�հ�J�X�#��Ǹ����>�h�t�rV�#En��:��ۛ�*�}C:;U��]����q7��=�us��5��� �fO���+Z��~�\��K��2�U;��o�$���s}5:3��}C�O��_V�\��i�j�R�����A���Yw��Fd�Y�iyg?�?�&���!H��t� ��UW���lh$�lH=k\������XѸ����?5���� �}�6�^u���oX�fsq�k��M�g� �C��,Q��'�Y*�ظ[���[�i�-����Z��(�=��N�c��~Cur4tpR)���������?���]��d��r�v�0L
�nE�8(p�5���Dp����؊��
��Љ��R� �������=8��m\`P��ҽ9 ��u�F��)B��p��Z�x;B�G�R^��XWh@T�
�$�Y�Y�r��� ?�,��?�9�ᇿ?�������h��;�:tf^����vN^ɡ��Y�M?���s\�=G����`w�'|Ǵpc��Xl��;�cV��f�9��Yx������>���<�;& ��m| ͵�x�a�r��\��z
�����C�q�V�K��-������N��i�S �]�?k`s}7�]�'>�ߎ��p6��� ֒p#lV|7eH\δu��YEhn:��1& �MPX��'�6ڐ�\���ܘX{��g,Lc=&Y��;_/�[��� ln9
Mt��� ͭB�n�+�/4㼛�1�-����������ҁͭ�>ݟv�9n�O�75���z�[��縥�����q����|���g���p�q{uȨo�?�F8���#���ݟ����-~��h���=ރ�C�O� �8�ÂIN�7�z��������7��\����]����@�=n O[�_�^���7�߳ks%�����~��{��-�{F��/�����E���g�1^xuɭg���/ٷ[�'�V��]r8���|����7���R�_ro{:��% ����)/��&���2�����0�,�R�~��_� �� �唆I��%��g^͸�>c�d�s��%7|R����������N��^\*1_��dȡi���P\]J1���[�f�􇂪*u9Is�on`7�k5�8H8*v�� ��E��M/����jH�aoD����z�D G���-��/�5���!�îR�Zh��N]Z8x ����y�p�� ��g] F�i,�k.�D��'p�w�=�&|DKz���b G�c ��zQC�q)�Z�s^��b(t�@��I%�2a��ƒ�pP���[��)ڇ� -����`��(��bc.}k8Ckk�HĽ�Z{��������}�.�8t��#0R��Ck xu|�0h�����]��.\�6�==dXO"�.��Q�K%�0g�vwLzhHm��0���H�> ��XF�YK����_ B*�48k�p ��B!PJ2&�u ���m��n�]���^ڛ~�'�J�f�A���)7��
'����=�� �7h+>�6w ��qXm�f�G�b�b5����ޟa+e�h�Kq���9s�҄�(����[�� 8r��aI����Ҩ_�4�qTHB(��
+{�� ?��j���k���
( !�%u�Y\Հֵ um|& �q���2��� T1������^��T>Т�Y�-��}�4XC�u���X���b���6{�����EFh��y�=J�b�Rf!Ԇ�� ď6@���P��2�!&Q��5�����$4H�!.���kh��M��9����p�-�P_����3�
5A�5�%7�{��"�P�L.�S�=
���.����s�jϞ�E���f�X|ך�ʵ k<2��H�/͐>Ro�-[��C�71��<�o�U+L�x��ƃ�*<���[0i������eTz�!�A�'��x�R0q�-�xz)y�6�����hN5���y�,:\j�r�ml�E/��j�7�d���`o3�
�v' Ph;u}ih±��k�D��. ԙ�{�J�!&��S��Bm��1�@p�9}��-ꥠ� ��7pk�
-�}5�D"��f_�z��A�
R���x��{΂�C���k[�4DM��Zb49*�&� KL��4��
� ���Nt)�[:�=�<�S@�1dMT���[�\��3..%���"��������2-��
�Su�
�2D��XU��kD�,D_U���T�Ip0_��P�GO�o�Ex
u��p*�*���~�C
M+WR��D�����qNa�sL�8f@��%�N8:@�Z����AQű4�]W���*[�o��0�*Ю� 2��j�ro�����`� �@��^���n���:�38j�l�b\��pS�ސ�ZP�|��d����"]�=o�@}�3$H�)<����x�������Xb��W�y��ߎWFo����D��i��$^�1�<|Lt/9A�� �Q��*��X�#���X3F��'���iTK��M�*h9���Y�O��4��� �)ch�N�k�h{V�@�4=u��k�h0�0�¨ɓ��V�nb���9z4�`��K �?zְ�`�@���̗7�� ? ���DAG� �?zP-/���FW��O��{� ����~�x������(f(��al��M%h��*��E�$�Qfʐ-E���h�lb�e��W�2�վW�)��!� �T�$�h��Ϡ�b��Gj�'H0Lj�Y�׼ �] 5�2� [���º>M��e�Y�m8��q�\�Ȗ�[P��i�L 9X�1N5򜮌��F'�D1��,�\�pA ocR���X<�vAw{��y�0줛��n�[���N���4�6p�7��8�Z��EhJ�P8:�' ST F����S��o�����;�N��~��0b�u.B���� �����!4�8��'@�� ��B�'Q
аJ��U4 �&�%4�X9�ٛ����&�h�*52�F�`ǥ��H��I�.��1-���]b2�B\MN����IT �C�nBR�Sz2���-a��E���!و�`�*��h��� # �j"a^����5mk�j0��h`��a 5"� ч�z�M�?���x��$=��4�c8VC����x��NcƳ�q��H4�^I�b��K�20Zr�Jh$�ƏL%r��XL4�U��`�.��1f,X��^�H�VX�G�U膡ib��M���p[�x�1��,�Z�t����� �&Ɔ�VPaC� �4�Z�M����q3L���U��!*������]b���V[O�v��s�R� ��g�#nѵ�`�
�1�L4��[���Pܢ�c��)��ƁE��ι��my{J�7?;���S�~vOʣ�
�U�h8ew������PtC-����8߀�)�Z�C���ټ`?��$��E�c�����}=��2@���l�T,���&�jm��
[�����oi&Ñ nJ��,K�x�,5^Q����y�t4+"� �x�z��W���?N����[�逺��a�Z`}���(6^��g�65���(gʒK��F����`���)�/[��� ����HM������w��4O�ᾆ�=�8S|�s�jpP�%�B2c�1��� o0�8E%��Ds�]�ǃ zu�=�;Dϓaw{|����̳0g����#��. G���>�G����=���>�����B��G����m#(��<��2��\ ��4(�����8*����=Jj�Dq ɞ�����J*���)ԭFxQ���- J%�=@�%�J��g�itk��<i��6� FwAe`��&XZ�&�2����4Š`��e �+��`pF{<hj�o�}�N5���p���^�ߒ^��-7�ț[��`W��\�g�xW�Z�% R���8�h5N�0Y�i� �V�X�T�)ԒQLIy6MR��*@ݔ��h������z%��m�=�=���43kp��apc� %�S�\�P��P���j=>��0���`&*�6̰҄���SI�w�CT�;���(�<�7�
51�}�S! ~��F��� )���ɬ)Kq�r �ZY�ڠ��!��&yS0X��1X
�`����(�j�Mu�n5‹Z&����V����f�8�Û=EjpP(epd4����;5!�K��.X|��FA�҂ь.��S����2X'�/Ԓ�� ؋�I������ ���k�%Fs�S�(p��O�BA��Hi?-IȨ�^ѯ���V��
ҥ5���$�Z�jD�)�!�j��h�<յWy���`�4F�`�t����z8�
�@ђv�lC��T���bqRH;�Mp�D8J��|J�v�"a ?l% I���d�v�)ԭFxQ��R�K�9o�&��X#]���+Â#24r��0L�����ć�';d�'1!�ˍ(�'��^M���cO���2��E|ѓ8�� s�e4��US�Ca Dn샆�q1��p,J�M�Q�9���(�&8��@�:����M� �#.����;�y�:Mc ����t�l$Mt⁇�O
� �.�-�� ��X,��Cu�u��P�wM9��4�p�i��YS��@�$�K��.}YKf�9
��5���)k~�G�4J�� ��/�17�ujl�O�St�Q�&��*�A�� �]K� �J(�h~�����4����$G���-�z�J�N`)GP\��Q� =��hp|�Ѹ�Z ���k��`�zKQ<�o�~�(Z �`0D�Yj�F
*�%e)��Ie������7���mAfi���� ��%�#�Ƅ��ÉZ�p��b&=�W;����0D��pF%��NIg <%�I��q�����4F���!:r(-��v��f��@~���3�M�n8�/�cb��A7Q/0��("<� ]����I`��&M��UT8�
@ 3Ks�NS�ͅ$�#�d5����'�� �����R��!� c�7��{���% >;�(�Q��D�,�@�0��'f��Mu�m�<H`;�)Z-�.\��\�G��l�J�s^(��C�J�{d0��N/к[8B���H /�q+=U�n��1��^W�������RҚ�� ·*R��g���A�=N�aIMs���NI͂΃S � N��T�P�2褣��!P���� ��ҘBr�0��&a�[2tpP��XF�����{��q⫶��-�O8���@�'�fC��0G��7y̥�UI/�)���vx�m�<��z� ��� �K�Csui��z��lJ��!�g��ز� �0�2 �
Tp<R���z�O�d �>�A�f��*
�X_��I�"Z�P�|��B�4�CirF��s�W_�c�$P3j_}�3)��R8���}2hKۜNa�|��h��q'�Qu-a��h�'�ȢVT3Mc[<r*�Q4�0����м�F��H!"�Q~��4����{7��E4�*Dh4N�yF`��B��������L!�p��hk��m_m�'�A�cc�����#O0�J��{�[^�G|��$H)ď&�"L�s�r �=(����s��� +ذ}�i�� Q�~1]��u�G��\ꤢF 69 4�u8��9iJ;�����74/��|ߑ����hȡC�CڙSb���m����C!E��B�^����c �59|8Q���k��<MG�ЕQ��8J��{ǣ )q��('.�aB�)tnCZ\�DP��z2�l�������a�T���N8� �SA�'`G
�(��rx�HNŅ�7���#I��4��#����ن� � �h5"Q�0?A#))�������H3(d�F���� ����4�LǠ��RԑM�Z����H�i��%v��8żpt���Z#�����
)�,DߘP@�� a�C�Z#%&�U�J�1p��Ȧ��JK�]d�Jc�FԴ&��8��&Z��~k�>א14��G�3G�#�l��p$�,�ލn!�#1
���n�r�c HY?���@�۶FmK1��t�� �x�4��p�G!���G����-=�� �G ����\(�� ��zKݣh��p"Bu�t�(X��i��NA)BB�PGҨg
�R�4X���N��S�c����#%}�|pBy���"��He1$�#H v��ș��|d�F�5�&�#C�N�TR��B���� B:��# �:��ў'"�}Gj�8��3p�N)8�H��u�&�Z�G4�p�(B��Sl9��ą��k���+��h)��l��V1ou�
Lx
i�h�ӑf'5�8�P4��&� ��WA��CqN70Rf��bΤ�H�a���Ҙ
N9R8�nt[��5u�Ʃ!�H��R�^��"����AD� , ��5���`��t�A/��`j0��t�O�n�:�W�
S���?u�!C����Fh�)�D� �(c.0�2<�\�6F�z��c[i|5���̂��F;�g'd߬A�#qѬ�p$A5�C8����f�oh^�P��#MmA �A�#)�$�ػ�m �D�#���ZL<��B��e�‘Z�o�l7bn�#��y2WuGZ�V8���4K��X<�M�E��7YG��)ؑV��4��`Z-��#�T�i�����i��eudSǶ�8�3����I����{,PN7X0��P.��L��)*i�i���ġM�慘�l:�:�v��;�"|���w���bؑ�J�H�x*]_�v�Aǂ�uL�Ox>l�רE$00�MG:R<[�D8�
;<�6��� �����IL�3: I�CL�Z:���Qؑ�}չ�m��5J`_���u,� F��N��h8 i� '��ؑ���{x$�,!c�H9( J��h�慶�#����r���������5>���G�����Gz|�g�GzV�H��ԨŃ����D�Jd�^�E�#�h|$�\� >���Gz|$H�j�e�#�l|��u�W���{�Աb�.r�GzS�Ho��$���c�#��}d�\CƶFp*�b�c�&r�)Ɉ�ލn]�g�B!�((�#� miAyAG$ǐmē��55ڣ<(�Sw (�GJ9‘ܛY�'u�QP�oIr^x$�'�
)�(�l
���#���F����p�I@���VZc2��PРtK:�5���0`����g��2�fu�@䌳}"0�`�Jx��:�G�=PF��=���l/tJ�W]��r�~tA�OE�5ڷ��b5�ex��* B�H�@p�m��>��Q�#4/��D��4��P�� �g��� �ar�p}���>����c]�/��/� ���/ه��o~��_^^���(ޗ�㛇w���+o˟>�y�y����U@� N��u,����T����w՛wo˦���c�vt��WX
���X���m�z��~���X����������������?���� ɚ�۷���W�n�������u�Z��?����_޵� �:�3R]����*���"�"�4�+�1�P0 XlYQ�{fa0`{�l_l7��3����Xv�[ũ�Fp���D����O�C�n9�"��y2|)���< =�����#��Jx���8��k���z�~CZ�H��')�*��!a �riVI�Jr��Ja �f�S�4K��������d��ܖX���P��G��.:dc�B"��#p��6� �2��C*�(�Mm�u�g��d��b����Ÿb� �=��y����Sx[��[ĒO
5��X�<�=�V��!c���2D�g�������#fs��,�|�q�J���1�����q��`�'.�.U�-��;�x���z!�<郖9��g �;�����3J�{c�vh��#�!�'�u鹫c�#�1�^p��O^ /�Jc�u�[%�1��Z��fiNք&�b�C+YZ��b"+���Kp�z�U�����nj�\�X�8��i k���g%M��Qӥ��z��vU ����I^��+��ƄH���%I* �܍@��څ�dx�S ��M���;:,/`���3;.���� C�������5��qF[���e�Q�g��@�Jlq���
L$�e ��֯zf0Te��\�Z;?�1��1��<۶�1�|�Y�`���>8Q���@?�,K�;��2���6�4~ �Mk/l۩�*a{lh��kl� C�y�QO��1�@��g�;0�vp;���(��L�9���9�T�>i��|�WF�:7啃G��fˍ˲wI���a(E���c@�*a��ƚlC�y_u]F�������*�ѻ����Bҝؼӹ��3�r;��_���_M�?��}x�����
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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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