Mumbai Testnet

Contract

0x68E36bEeDA1644258973E532029fc3a2806bBA8b

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
Fulfill267754592022-06-16 20:12:24651 days ago1655410344IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095061.85682251
Fulfill267754372022-06-16 20:10:34651 days ago1655410234IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095121.85682252
Fulfill267754282022-06-16 20:09:49651 days ago1655410189IN
0x68E36bEe...2806bBA8b
0 MATIC0.0000951.85682253
Fulfill267754252022-06-16 20:09:34651 days ago1655410174IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095061.85682253
Fulfill267754252022-06-16 20:09:34651 days ago1655410174IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095061.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095081.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095061.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095061.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095031.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095041.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095041.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095041.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000094951.85682253
Fulfill267754182022-06-16 20:08:33651 days ago1655410113IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095061.85682253
Fulfill267754112022-06-16 20:07:23651 days ago1655410043IN
0x68E36bEe...2806bBA8b
0 MATIC0.00009511.85682253
Fulfill267754112022-06-16 20:07:23651 days ago1655410043IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095021.85682253
Fulfill267754112022-06-16 20:07:23651 days ago1655410043IN
0x68E36bEe...2806bBA8b
0 MATIC0.000095041.85682253
Fulfill267754052022-06-16 20:06:23651 days ago1655409983IN
0x68E36bEe...2806bBA8b
0 MATIC0.000097961.91425003
Fulfill267754052022-06-16 20:06:23651 days ago1655409983IN
0x68E36bEe...2806bBA8b
0 MATIC0.0000981.91425003
Fulfill267753812022-06-16 20:02:23651 days ago1655409743IN
0x68E36bEe...2806bBA8b
0 MATIC0.000098061.91425002
Fulfill267753812022-06-16 20:02:23651 days ago1655409743IN
0x68E36bEe...2806bBA8b
0 MATIC0.0000981.91425002
Fail267753702022-06-16 20:00:33651 days ago1655409633IN
0x68E36bEe...2806bBA8b
0 MATIC0.000054861.91425002
Fulfill267753632022-06-16 19:59:23651 days ago1655409563IN
0x68E36bEe...2806bBA8b
0 MATIC0.0000981.91425002
Fulfill267753632022-06-16 19:59:23651 days ago1655409563IN
0x68E36bEe...2806bBA8b
0 MATIC0.000097961.91425002
Fulfill267753552022-06-16 19:58:22651 days ago1655409502IN
0x68E36bEe...2806bBA8b
0 MATIC0.0000981.91425002
View all transactions

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xA2684570...fA9121340
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AirnodeRrp

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at mumbai.polygonscan.com on 2021-12-19
*/

// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.8.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/interfaces/IAuthorizationUtils.sol

pragma solidity 0.8.9;

interface IAuthorizationUtils {
    function checkAuthorizationStatus(
        address[] calldata authorizers,
        address airnode,
        bytes32 requestId,
        bytes32 endpointId,
        address sponsor,
        address requester
    ) external view returns (bool status);

    function checkAuthorizationStatuses(
        address[] calldata authorizers,
        address airnode,
        bytes32[] calldata requestIds,
        bytes32[] calldata endpointIds,
        address[] calldata sponsors,
        address[] calldata requesters
    ) external view returns (bool[] memory statuses);
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/authorizers/interfaces/IAuthorizer.sol

pragma solidity 0.8.9;

interface IAuthorizer {
    function isAuthorized(
        bytes32 requestId,
        address airnode,
        bytes32 endpointId,
        address sponsor,
        address requester
    ) external view returns (bool);
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/AuthorizationUtils.sol

pragma solidity 0.8.9;


/// @title Contract that implements authorization checks
contract AuthorizationUtils is IAuthorizationUtils {
    /// @notice Uses the authorizer contracts of an Airnode to decide if a
    /// request is authorized. Once an Airnode receives a request, it calls
    /// this method to determine if it should respond. Similarly, third parties
    /// can use this method to determine if a particular request would be
    /// authorized.
    /// @dev This method is meant to be called off-chain, statically by the
    /// Airnode to decide if it should respond to a request. The requester can
    /// also call it, yet this function returning true should not be taken as a
    /// guarantee of the subsequent request being fulfilled.
    /// It is enough for only one of the authorizer contracts to return true
    /// for the request to be authorized.
    /// @param authorizers Authorizer contract addresses
    /// @param airnode Airnode address
    /// @param requestId Request ID
    /// @param endpointId Endpoint ID
    /// @param sponsor Sponsor address
    /// @param requester Requester address
    /// @return status Authorization status of the request
    function checkAuthorizationStatus(
        address[] calldata authorizers,
        address airnode,
        bytes32 requestId,
        bytes32 endpointId,
        address sponsor,
        address requester
    ) public view override returns (bool status) {
        for (uint256 ind = 0; ind < authorizers.length; ind++) {
            IAuthorizer authorizer = IAuthorizer(authorizers[ind]);
            if (
                authorizer.isAuthorized(
                    requestId,
                    airnode,
                    endpointId,
                    sponsor,
                    requester
                )
            ) {
                return true;
            }
        }
        return false;
    }

    /// @notice A convenience function to make multiple authorization status
    /// checks with a single call
    /// @param authorizers Authorizer contract addresses
    /// @param airnode Airnode address
    /// @param requestIds Request IDs
    /// @param endpointIds Endpoint IDs
    /// @param sponsors Sponsor addresses
    /// @param requesters Requester addresses
    /// @return statuses Authorization statuses of the request
    function checkAuthorizationStatuses(
        address[] calldata authorizers,
        address airnode,
        bytes32[] calldata requestIds,
        bytes32[] calldata endpointIds,
        address[] calldata sponsors,
        address[] calldata requesters
    ) external view override returns (bool[] memory statuses) {
        require(
            requestIds.length == endpointIds.length &&
                requestIds.length == sponsors.length &&
                requestIds.length == requesters.length,
            "Unequal parameter lengths"
        );
        statuses = new bool[](requestIds.length);
        for (uint256 ind = 0; ind < requestIds.length; ind++) {
            statuses[ind] = checkAuthorizationStatus(
                authorizers,
                airnode,
                requestIds[ind],
                endpointIds[ind],
                sponsors[ind],
                requesters[ind]
            );
        }
    }
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/interfaces/ITemplateUtils.sol

pragma solidity 0.8.9;

interface ITemplateUtils {
    event CreatedTemplate(
        bytes32 indexed templateId,
        address airnode,
        bytes32 endpointId,
        bytes parameters
    );

    function createTemplate(
        address airnode,
        bytes32 endpointId,
        bytes calldata parameters
    ) external returns (bytes32 templateId);

    function getTemplates(bytes32[] calldata templateIds)
        external
        view
        returns (
            address[] memory airnodes,
            bytes32[] memory endpointIds,
            bytes[] memory parameters
        );

    function templates(bytes32 templateId)
        external
        view
        returns (
            address airnode,
            bytes32 endpointId,
            bytes memory parameters
        );
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/TemplateUtils.sol

pragma solidity 0.8.9;

/// @title Contract that implements request templates
contract TemplateUtils is ITemplateUtils {
    struct Template {
        address airnode;
        bytes32 endpointId;
        bytes parameters;
    }

    /// @notice Called to get a template
    mapping(bytes32 => Template) public override templates;

    /// @notice Creates a request template with the given parameters,
    /// addressable by the ID it returns
    /// @dev A specific set of request parameters will always have the same
    /// template ID. This means a few things: (1) You can compute the expected
    /// ID of a template before creating it, (2) Creating a new template with
    /// the same parameters will overwrite the old one and return the same ID,
    /// (3) After you query a template with its ID, you can verify its
    /// integrity by applying the hash and comparing the result with the ID.
    /// @param airnode Airnode address
    /// @param endpointId Endpoint ID (allowed to be `bytes32(0)`)
    /// @param parameters Static request parameters (i.e., parameters that will
    /// not change between requests, unlike the dynamic parameters determined
    /// at request-time)
    /// @return templateId Request template ID
    function createTemplate(
        address airnode,
        bytes32 endpointId,
        bytes calldata parameters
    ) external override returns (bytes32 templateId) {
        require(airnode != address(0), "Airnode address zero");
        templateId = keccak256(
            abi.encodePacked(airnode, endpointId, parameters)
        );
        templates[templateId] = Template({
            airnode: airnode,
            endpointId: endpointId,
            parameters: parameters
        });
        emit CreatedTemplate(templateId, airnode, endpointId, parameters);
    }

    /// @notice A convenience method to retrieve multiple templates with a
    /// single call
    /// @dev Does not revert if the templates being indexed do not exist
    /// @param templateIds Request template IDs
    /// @return airnodes Array of Airnode addresses
    /// @return endpointIds Array of endpoint IDs
    /// @return parameters Array of request parameters
    function getTemplates(bytes32[] calldata templateIds)
        external
        view
        override
        returns (
            address[] memory airnodes,
            bytes32[] memory endpointIds,
            bytes[] memory parameters
        )
    {
        airnodes = new address[](templateIds.length);
        endpointIds = new bytes32[](templateIds.length);
        parameters = new bytes[](templateIds.length);
        for (uint256 ind = 0; ind < templateIds.length; ind++) {
            Template storage template = templates[templateIds[ind]];
            airnodes[ind] = template.airnode;
            endpointIds[ind] = template.endpointId;
            parameters[ind] = template.parameters;
        }
    }
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/interfaces/IWithdrawalUtils.sol

pragma solidity 0.8.9;

interface IWithdrawalUtils {
    event RequestedWithdrawal(
        address indexed airnode,
        address indexed sponsor,
        bytes32 indexed withdrawalRequestId,
        address sponsorWallet
    );

    event FulfilledWithdrawal(
        address indexed airnode,
        address indexed sponsor,
        bytes32 indexed withdrawalRequestId,
        address sponsorWallet,
        uint256 amount
    );

    function requestWithdrawal(address airnode, address sponsorWallet) external;

    function fulfillWithdrawal(
        bytes32 withdrawalRequestId,
        address airnode,
        address sponsor
    ) external payable;

    function sponsorToWithdrawalRequestCount(address sponsor)
        external
        view
        returns (uint256 withdrawalRequestCount);
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/WithdrawalUtils.sol

pragma solidity 0.8.9;

/// @title Contract that implements logic for withdrawals from sponsor wallets
contract WithdrawalUtils is IWithdrawalUtils {
    /// @notice Called to get the withdrawal request count of the sponsor
    /// @dev Can be used to calculate the ID of the next withdrawal request the
    /// sponsor will make
    mapping(address => uint256) public override sponsorToWithdrawalRequestCount;

    /// @dev Hash of expected fulfillment parameters are kept to verify that
    /// the fulfillment will be done with the correct parameters
    mapping(bytes32 => bytes32) private withdrawalRequestIdToParameters;

    /// @notice Called by a sponsor to create a request for the Airnode to send
    /// the funds kept in the respective sponsor wallet to the sponsor
    /// @dev We do not need to use the withdrawal request parameters in the
    /// request ID hash to validate them at the node-side because all of the
    /// parameters are used during fulfillment and will get validated on-chain.
    /// The first withdrawal request a sponsor will make will cost slightly
    /// higher gas than the rest due to how the request counter is implemented.
    /// @param airnode Airnode address
    /// @param sponsorWallet Sponsor wallet that the withdrawal is requested
    /// from
    function requestWithdrawal(address airnode, address sponsorWallet)
        external
        override
    {
        bytes32 withdrawalRequestId = keccak256(
            abi.encodePacked(
                block.chainid,
                address(this),
                msg.sender,
                ++sponsorToWithdrawalRequestCount[msg.sender]
            )
        );
        withdrawalRequestIdToParameters[withdrawalRequestId] = keccak256(
            abi.encodePacked(airnode, msg.sender, sponsorWallet)
        );
        emit RequestedWithdrawal(
            airnode,
            msg.sender,
            withdrawalRequestId,
            sponsorWallet
        );
    }

    /// @notice Called by the Airnode using the sponsor wallet to fulfill the
    /// withdrawal request made by the sponsor
    /// @dev The Airnode sends the funds to the sponsor through this method
    /// to emit an event that indicates that the withdrawal request has been
    /// fulfilled
    /// @param withdrawalRequestId Withdrawal request ID
    /// @param airnode Airnode address
    /// @param sponsor Sponsor address
    function fulfillWithdrawal(
        bytes32 withdrawalRequestId,
        address airnode,
        address sponsor
    ) external payable override {
        require(
            withdrawalRequestIdToParameters[withdrawalRequestId] ==
                keccak256(abi.encodePacked(airnode, sponsor, msg.sender)),
            "Invalid withdrawal fulfillment"
        );
        delete withdrawalRequestIdToParameters[withdrawalRequestId];
        emit FulfilledWithdrawal(
            airnode,
            sponsor,
            withdrawalRequestId,
            msg.sender,
            msg.value
        );
        (bool success, ) = sponsor.call{value: msg.value}(""); // solhint-disable-line avoid-low-level-calls
        require(success, "Transfer failed");
    }
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/interfaces/IAirnodeRrp.sol

pragma solidity 0.8.9;



interface IAirnodeRrp is IAuthorizationUtils, ITemplateUtils, IWithdrawalUtils {
    event SetSponsorshipStatus(
        address indexed sponsor,
        address indexed requester,
        bool sponsorshipStatus
    );

    event MadeTemplateRequest(
        address indexed airnode,
        bytes32 indexed requestId,
        uint256 requesterRequestCount,
        uint256 chainId,
        address requester,
        bytes32 templateId,
        address sponsor,
        address sponsorWallet,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes parameters
    );

    event MadeFullRequest(
        address indexed airnode,
        bytes32 indexed requestId,
        uint256 requesterRequestCount,
        uint256 chainId,
        address requester,
        bytes32 endpointId,
        address sponsor,
        address sponsorWallet,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes parameters
    );

    event FulfilledRequest(
        address indexed airnode,
        bytes32 indexed requestId,
        bytes data
    );

    event FailedRequest(
        address indexed airnode,
        bytes32 indexed requestId,
        string errorMessage
    );

    function setSponsorshipStatus(address requester, bool sponsorshipStatus)
        external;

    function makeTemplateRequest(
        bytes32 templateId,
        address sponsor,
        address sponsorWallet,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes calldata parameters
    ) external returns (bytes32 requestId);

    function makeFullRequest(
        address airnode,
        bytes32 endpointId,
        address sponsor,
        address sponsorWallet,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes calldata parameters
    ) external returns (bytes32 requestId);

    function fulfill(
        bytes32 requestId,
        address airnode,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes calldata data,
        bytes calldata signature
    ) external returns (bool callSuccess, bytes memory callData);

    function fail(
        bytes32 requestId,
        address airnode,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        string calldata errorMessage
    ) external;

    function sponsorToRequesterToSponsorshipStatus(
        address sponsor,
        address requester
    ) external view returns (bool sponsorshipStatus);

    function requesterToRequestCountPlusOne(address requester)
        external
        view
        returns (uint256 requestCountPlusOne);

    function requestIsAwaitingFulfillment(bytes32 requestId)
        external
        view
        returns (bool isAwaitingFulfillment);
}


// File verify/0.3.1/@api3/airnode-protocol/contracts/rrp/AirnodeRrp.sol

pragma solidity 0.8.9;





/// @title Contract that implements the Airnode request–response protocol (RRP)
contract AirnodeRrp is
    AuthorizationUtils,
    TemplateUtils,
    WithdrawalUtils,
    IAirnodeRrp
{
    using ECDSA for bytes32;

    /// @notice Called to get the sponsorship status for a sponsor–requester
    /// pair
    mapping(address => mapping(address => bool))
        public
        override sponsorToRequesterToSponsorshipStatus;

    /// @notice Called to get the request count of the requester plus one
    /// @dev Can be used to calculate the ID of the next request the requester
    /// will make
    mapping(address => uint256) public override requesterToRequestCountPlusOne;

    /// @dev Hash of expected fulfillment parameters are kept to verify that
    /// the fulfillment will be done with the correct parameters. This value is
    /// also used to check if the fulfillment for the particular request is
    /// expected, i.e., if there are recorded fulfillment parameters.
    mapping(bytes32 => bytes32) private requestIdToFulfillmentParameters;

    /// @notice Called by the sponsor to set the sponsorship status of a
    /// requester, i.e., allow or disallow a requester to make requests that
    /// will be fulfilled by the sponsor wallet
    /// @dev This is not Airnode-specific, i.e., the sponsor allows the
    /// requester's requests to be fulfilled through its sponsor wallets across
    /// all Airnodes
    /// @param requester Requester address
    /// @param sponsorshipStatus Sponsorship status
    function setSponsorshipStatus(address requester, bool sponsorshipStatus)
        external
        override
    {
        // Initialize the requester request count for consistent request gas
        // cost
        if (requesterToRequestCountPlusOne[requester] == 0) {
            requesterToRequestCountPlusOne[requester] = 1;
        }
        sponsorToRequesterToSponsorshipStatus[msg.sender][
            requester
        ] = sponsorshipStatus;
        emit SetSponsorshipStatus(msg.sender, requester, sponsorshipStatus);
    }

    /// @notice Called by the requester to make a request that refers to a
    /// template for the Airnode address, endpoint ID and parameters
    /// @dev `fulfillAddress` is not allowed to be the address of this
    /// contract. This is not actually needed to protect users that use the
    /// protocol as intended, but it is done for good measure.
    /// @param templateId Template ID
    /// @param sponsor Sponsor address
    /// @param sponsorWallet Sponsor wallet that is requested to fulfill the
    /// request
    /// @param fulfillAddress Address that will be called to fulfill
    /// @param fulfillFunctionId Signature of the function that will be called
    /// to fulfill
    /// @param parameters Parameters provided by the requester in addition to
    /// the parameters in the template
    /// @return requestId Request ID
    function makeTemplateRequest(
        bytes32 templateId,
        address sponsor,
        address sponsorWallet,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes calldata parameters
    ) external override returns (bytes32 requestId) {
        address airnode = templates[templateId].airnode;
        // If the Airnode address of the template is zero the template does not
        // exist because template creation does not allow zero Airnode address
        require(airnode != address(0), "Template does not exist");
        require(fulfillAddress != address(this), "Fulfill address AirnodeRrp");
        require(
            sponsorToRequesterToSponsorshipStatus[sponsor][msg.sender],
            "Requester not sponsored"
        );
        uint256 requesterRequestCount = requesterToRequestCountPlusOne[
            msg.sender
        ];
        requestId = keccak256(
            abi.encodePacked(
                block.chainid,
                address(this),
                msg.sender,
                requesterRequestCount,
                templateId,
                sponsor,
                sponsorWallet,
                fulfillAddress,
                fulfillFunctionId,
                parameters
            )
        );
        requestIdToFulfillmentParameters[requestId] = keccak256(
            abi.encodePacked(
                airnode,
                sponsorWallet,
                fulfillAddress,
                fulfillFunctionId
            )
        );
        requesterToRequestCountPlusOne[msg.sender]++;
        emit MadeTemplateRequest(
            airnode,
            requestId,
            requesterRequestCount,
            block.chainid,
            msg.sender,
            templateId,
            sponsor,
            sponsorWallet,
            fulfillAddress,
            fulfillFunctionId,
            parameters
        );
    }

    /// @notice Called by the requester to make a full request, which provides
    /// all of its parameters as arguments and does not refer to a template
    /// @dev `fulfillAddress` is not allowed to be the address of this
    /// contract. This is not actually needed to protect users that use the
    /// protocol as intended, but it is done for good measure.
    /// @param airnode Airnode address
    /// @param endpointId Endpoint ID (allowed to be `bytes32(0)`)
    /// @param sponsor Sponsor address
    /// @param sponsorWallet Sponsor wallet that is requested to fulfill
    /// the request
    /// @param fulfillAddress Address that will be called to fulfill
    /// @param fulfillFunctionId Signature of the function that will be called
    /// to fulfill
    /// @param parameters All request parameters
    /// @return requestId Request ID
    function makeFullRequest(
        address airnode,
        bytes32 endpointId,
        address sponsor,
        address sponsorWallet,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes calldata parameters
    ) external override returns (bytes32 requestId) {
        require(airnode != address(0), "Airnode address zero");
        require(fulfillAddress != address(this), "Fulfill address AirnodeRrp");
        require(
            sponsorToRequesterToSponsorshipStatus[sponsor][msg.sender],
            "Requester not sponsored"
        );
        uint256 requesterRequestCount = requesterToRequestCountPlusOne[
            msg.sender
        ];
        requestId = keccak256(
            abi.encodePacked(
                block.chainid,
                address(this),
                msg.sender,
                requesterRequestCount,
                airnode,
                endpointId,
                sponsor,
                sponsorWallet,
                fulfillAddress,
                fulfillFunctionId,
                parameters
            )
        );
        requestIdToFulfillmentParameters[requestId] = keccak256(
            abi.encodePacked(
                airnode,
                sponsorWallet,
                fulfillAddress,
                fulfillFunctionId
            )
        );
        requesterToRequestCountPlusOne[msg.sender]++;
        emit MadeFullRequest(
            airnode,
            requestId,
            requesterRequestCount,
            block.chainid,
            msg.sender,
            endpointId,
            sponsor,
            sponsorWallet,
            fulfillAddress,
            fulfillFunctionId,
            parameters
        );
    }

    /// @notice Called by Airnode to fulfill the request (template or full)
    /// @dev The data is ABI-encoded as a `bytes` type, with its format
    /// depending on the request specifications.
    /// This will not revert depending on the external call. However, it will
    /// return `false` if the external call reverts or if there is no function
    /// with a matching signature at `fulfillAddress`. On the other hand, it
    /// will return `true` if the external call returns successfully or if
    /// there is no contract deployed at `fulfillAddress`.
    /// If `callSuccess` is `false`, `callData` can be decoded to retrieve the
    /// revert string.
    /// This function emits its event after an untrusted low-level call,
    /// meaning that the order of these events within the transaction should
    /// not be taken seriously, yet the content will be sound.
    /// @param requestId Request ID
    /// @param airnode Airnode address
    /// @param data Fulfillment data
    /// @param fulfillAddress Address that will be called to fulfill
    /// @param fulfillFunctionId Signature of the function that will be called
    /// to fulfill
    /// @return callSuccess If the fulfillment call succeeded
    /// @return callData Data returned by the fulfillment call (if there is
    /// any)
    function fulfill(
        bytes32 requestId,
        address airnode,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        bytes calldata data,
        bytes calldata signature
    ) external override returns (bool callSuccess, bytes memory callData) {
        require(
            keccak256(
                abi.encodePacked(
                    airnode,
                    msg.sender,
                    fulfillAddress,
                    fulfillFunctionId
                )
            ) == requestIdToFulfillmentParameters[requestId],
            "Invalid request fulfillment"
        );
        require(
            (
                keccak256(abi.encodePacked(requestId, data))
                    .toEthSignedMessageHash()
            ).recover(signature) == airnode,
            "Invalid signature"
        );
        delete requestIdToFulfillmentParameters[requestId];
        (callSuccess, callData) = fulfillAddress.call( // solhint-disable-line avoid-low-level-calls
            abi.encodeWithSelector(fulfillFunctionId, requestId, data)
        );
        if (callSuccess) {
            emit FulfilledRequest(airnode, requestId, data);
        } else {
            // We do not bubble up the revert string from `callData`
            emit FailedRequest(
                airnode,
                requestId,
                "Fulfillment failed unexpectedly"
            );
        }
    }

    /// @notice Called by Airnode if the request cannot be fulfilled
    /// @dev Airnode should fall back to this if a request cannot be fulfilled
    /// because static call to `fulfill()` returns `false` for `callSuccess`
    /// @param requestId Request ID
    /// @param airnode Airnode address
    /// @param fulfillAddress Address that will be called to fulfill
    /// @param fulfillFunctionId Signature of the function that will be called
    /// to fulfill
    /// @param errorMessage A message that explains why the request has failed
    function fail(
        bytes32 requestId,
        address airnode,
        address fulfillAddress,
        bytes4 fulfillFunctionId,
        string calldata errorMessage
    ) external override {
        require(
            keccak256(
                abi.encodePacked(
                    airnode,
                    msg.sender,
                    fulfillAddress,
                    fulfillFunctionId
                )
            ) == requestIdToFulfillmentParameters[requestId],
            "Invalid request fulfillment"
        );
        delete requestIdToFulfillmentParameters[requestId];
        emit FailedRequest(airnode, requestId, errorMessage);
    }

    /// @notice Called to check if the request with the ID is made but not
    /// fulfilled/failed yet
    /// @dev If a requester has made a request, received a request ID but did
    /// not hear back, it can call this method to check if the Airnode has
    /// called back `fail()` instead.
    /// @param requestId Request ID
    /// @return isAwaitingFulfillment If the request is awaiting fulfillment
    /// (i.e., `true` if `fulfill()` or `fail()` is not called back yet,
    /// `false` otherwise)
    function requestIsAwaitingFulfillment(bytes32 requestId)
        external
        view
        override
        returns (bool isAwaitingFulfillment)
    {
        isAwaitingFulfillment =
            requestIdToFulfillmentParameters[requestId] != bytes32(0);
    }
}

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"templateId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"airnode","type":"address"},{"indexed":false,"internalType":"bytes32","name":"endpointId","type":"bytes32"},{"indexed":false,"internalType":"bytes","name":"parameters","type":"bytes"}],"name":"CreatedTemplate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"airnode","type":"address"},{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"string","name":"errorMessage","type":"string"}],"name":"FailedRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"airnode","type":"address"},{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"FulfilledRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"airnode","type":"address"},{"indexed":true,"internalType":"address","name":"sponsor","type":"address"},{"indexed":true,"internalType":"bytes32","name":"withdrawalRequestId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"sponsorWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FulfilledWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"airnode","type":"address"},{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"requesterRequestCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"address","name":"requester","type":"address"},{"indexed":false,"internalType":"bytes32","name":"endpointId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"sponsor","type":"address"},{"indexed":false,"internalType":"address","name":"sponsorWallet","type":"address"},{"indexed":false,"internalType":"address","name":"fulfillAddress","type":"address"},{"indexed":false,"internalType":"bytes4","name":"fulfillFunctionId","type":"bytes4"},{"indexed":false,"internalType":"bytes","name":"parameters","type":"bytes"}],"name":"MadeFullRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"airnode","type":"address"},{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"requesterRequestCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"address","name":"requester","type":"address"},{"indexed":false,"internalType":"bytes32","name":"templateId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"sponsor","type":"address"},{"indexed":false,"internalType":"address","name":"sponsorWallet","type":"address"},{"indexed":false,"internalType":"address","name":"fulfillAddress","type":"address"},{"indexed":false,"internalType":"bytes4","name":"fulfillFunctionId","type":"bytes4"},{"indexed":false,"internalType":"bytes","name":"parameters","type":"bytes"}],"name":"MadeTemplateRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"airnode","type":"address"},{"indexed":true,"internalType":"address","name":"sponsor","type":"address"},{"indexed":true,"internalType":"bytes32","name":"withdrawalRequestId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"sponsorWallet","type":"address"}],"name":"RequestedWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sponsor","type":"address"},{"indexed":true,"internalType":"address","name":"requester","type":"address"},{"indexed":false,"internalType":"bool","name":"sponsorshipStatus","type":"bool"}],"name":"SetSponsorshipStatus","type":"event"},{"inputs":[{"internalType":"address[]","name":"authorizers","type":"address[]"},{"internalType":"address","name":"airnode","type":"address"},{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"bytes32","name":"endpointId","type":"bytes32"},{"internalType":"address","name":"sponsor","type":"address"},{"internalType":"address","name":"requester","type":"address"}],"name":"checkAuthorizationStatus","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"authorizers","type":"address[]"},{"internalType":"address","name":"airnode","type":"address"},{"internalType":"bytes32[]","name":"requestIds","type":"bytes32[]"},{"internalType":"bytes32[]","name":"endpointIds","type":"bytes32[]"},{"internalType":"address[]","name":"sponsors","type":"address[]"},{"internalType":"address[]","name":"requesters","type":"address[]"}],"name":"checkAuthorizationStatuses","outputs":[{"internalType":"bool[]","name":"statuses","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"airnode","type":"address"},{"internalType":"bytes32","name":"endpointId","type":"bytes32"},{"internalType":"bytes","name":"parameters","type":"bytes"}],"name":"createTemplate","outputs":[{"internalType":"bytes32","name":"templateId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"address","name":"airnode","type":"address"},{"internalType":"address","name":"fulfillAddress","type":"address"},{"internalType":"bytes4","name":"fulfillFunctionId","type":"bytes4"},{"internalType":"string","name":"errorMessage","type":"string"}],"name":"fail","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"address","name":"airnode","type":"address"},{"internalType":"address","name":"fulfillAddress","type":"address"},{"internalType":"bytes4","name":"fulfillFunctionId","type":"bytes4"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"fulfill","outputs":[{"internalType":"bool","name":"callSuccess","type":"bool"},{"internalType":"bytes","name":"callData","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"withdrawalRequestId","type":"bytes32"},{"internalType":"address","name":"airnode","type":"address"},{"internalType":"address","name":"sponsor","type":"address"}],"name":"fulfillWithdrawal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"templateIds","type":"bytes32[]"}],"name":"getTemplates","outputs":[{"internalType":"address[]","name":"airnodes","type":"address[]"},{"internalType":"bytes32[]","name":"endpointIds","type":"bytes32[]"},{"internalType":"bytes[]","name":"parameters","type":"bytes[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"airnode","type":"address"},{"internalType":"bytes32","name":"endpointId","type":"bytes32"},{"internalType":"address","name":"sponsor","type":"address"},{"internalType":"address","name":"sponsorWallet","type":"address"},{"internalType":"address","name":"fulfillAddress","type":"address"},{"internalType":"bytes4","name":"fulfillFunctionId","type":"bytes4"},{"internalType":"bytes","name":"parameters","type":"bytes"}],"name":"makeFullRequest","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"templateId","type":"bytes32"},{"internalType":"address","name":"sponsor","type":"address"},{"internalType":"address","name":"sponsorWallet","type":"address"},{"internalType":"address","name":"fulfillAddress","type":"address"},{"internalType":"bytes4","name":"fulfillFunctionId","type":"bytes4"},{"internalType":"bytes","name":"parameters","type":"bytes"}],"name":"makeTemplateRequest","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"requestIsAwaitingFulfillment","outputs":[{"internalType":"bool","name":"isAwaitingFulfillment","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"airnode","type":"address"},{"internalType":"address","name":"sponsorWallet","type":"address"}],"name":"requestWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"requesterToRequestCountPlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"requester","type":"address"},{"internalType":"bool","name":"sponsorshipStatus","type":"bool"}],"name":"setSponsorshipStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"sponsorToRequesterToSponsorshipStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sponsorToWithdrawalRequestCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"templates","outputs":[{"internalType":"address","name":"airnode","type":"address"},{"internalType":"bytes32","name":"endpointId","type":"bytes32"},{"internalType":"bytes","name":"parameters","type":"bytes"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x6080604052600436106100f35760003560e01c806376428c9b1161008a578063acbe180011610059578063acbe180014610390578063addf027c146103cd578063ca31d586146103f6578063f8fa73a114610433576100f3565b806376428c9b1461029a5780637e7166f3146102d95780638a33be0114610316578063a81e9f7914610353576100f3565b80633c7fe5e3116100c65780633c7fe5e3146101db57806350743bb9146101f757806352e41f99146102345780636e6be03f1461025d576100f3565b80630a631576146100f85780631d414cbd146101375780631decbf181461016057806332393f2b1461019e575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a91906120e5565b610470565b60405161012e939291906121fb565b60405180910390f35b34801561014357600080fd5b5061015e60048036038101906101599190612265565b610542565b005b34801561016c57600080fd5b5061018760048036038101906101829190612362565b610671565b60405161019592919061244c565b60405180910390f35b3480156101aa57600080fd5b506101c560048036038101906101c0919061247c565b61099c565b6040516101d291906124f0565b60405180910390f35b6101f560048036038101906101f0919061250b565b610b7a565b005b34801561020357600080fd5b5061021e600480360381019061021991906120e5565b610d2a565b60405161022b919061255e565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906125cf565b610d4d565b005b34801561026957600080fd5b50610284600480360381019061027f9190612669565b610e3e565b60405161029191906124f0565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612781565b611171565b6040516102d093929190612a56565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612aa2565b6113ff565b60405161030d9190612ae8565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612b59565b611417565b60405161034a919061255e565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190612265565b61151c565b604051610387919061255e565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190612c08565b61154b565b6040516103c491906124f0565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612ce3565b6118b6565b005b34801561040257600080fd5b5061041d60048036038101906104189190612d23565b611a41565b60405161042a9190612f12565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612aa2565b611be0565b6040516104679190612ae8565b60405180910390f35b60006020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020180546104bf90612f63565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90612f63565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905083565b6000463033600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815461059390612fc4565b9190508190556040516020016105ac9493929190613076565b6040516020818303038152906040528051906020012090508233836040516020016105d9939291906130c4565b604051602081830303815290604052805190602001206002600083815260200190815260200160002081905550803373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fd48d52c7c6d0c940f3f8d07591e1800ef3a70daf79929a97ccd80b4494769fc7856040516106649190613101565b60405180910390a4505050565b60006060600560008b81526020019081526020016000205489338a8a6040516020016106a0949392919061313d565b60405160208183030381529060405280519060200120146106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906131e8565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff1661079685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506107888d8a8a60405160200161076d93929190613268565b60405160208183030381529060405280519060200120611bf8565b611c2890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e3906132de565b60405180910390fd5b600560008b8152602001908152602001600020600090558773ffffffffffffffffffffffffffffffffffffffff16878b88886040516024016108309392919061332b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161089a919061338e565b6000604051808303816000865af19150503d80600081146108d7576040519150601f19603f3d011682016040523d82523d6000602084013e6108dc565b606091505b508092508193505050811561094157898973ffffffffffffffffffffffffffffffffffffffff167fc0977dab79883641ece94bb6a932ca83049f561ffff8d8daaeafdbc1acce9e0a88886040516109349291906133a5565b60405180910390a361098f565b898973ffffffffffffffffffffffffffffffffffffffff167fc7143b2270cddda57e0087ca5e2a4325657dcab10d10f6b1f9d5ce6b41cb97fc60405161098690613415565b60405180910390a35b9850989650505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613481565b60405180910390fd5b84848484604051602001610a2494939291906134a1565b60405160208183030381529060405280519060200120905060405180606001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200185815260200184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081525060008083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101556040820151816002019080519060200190610b30929190612002565b50905050807fba204bad31c4ec4b9b54164af94ae10c4e7312f22c0f9c065d6319c928ec9e7a86868686604051610b6a94939291906134dc565b60405180910390a2949350505050565b818133604051602001610b8f939291906130c4565b60405160208183030381529060405280519060200120600260008581526020019081526020016000205414610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090613568565b60405180910390fd5b6002600084815260200190815260200160002060009055828173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fadb4840bbd5f924665ae7e0e0c83de5c0fb40a98c9b57dba53a6c978127a622e3334604051610c70929190613588565b60405180910390a460008173ffffffffffffffffffffffffffffffffffffffff1634604051610c9e906135d7565b60006040518083038185875af1925050503d8060008114610cdb576040519150601f19603f3d011682016040523d82523d6000602084013e610ce0565b606091505b5050905080610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613638565b60405180910390fd5b50505050565b60008060001b600560008481526020019081526020016000205414159050919050565b600560008781526020019081526020016000205485338686604051602001610d78949392919061313d565b6040516020818303038152906040528051906020012014610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906131e8565b60405180910390fd5b6005600087815260200190815260200160002060009055858573ffffffffffffffffffffffffffffffffffffffff167fc7143b2270cddda57e0087ca5e2a4325657dcab10d10f6b1f9d5ce6b41cb97fc8484604051610e2e929190613685565b60405180910390a3505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161415610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613481565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906136f5565b60405180910390fd5b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90613761565b60405180910390fd5b6000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050463033838d8d8d8d8d8d8d8d6040516020016110529c9b9a99989796959493929190613781565b60405160208183030381529060405280519060200120915089878787604051602001611081949392919061313d565b604051602081830303815290604052805190602001206005600084815260200190815260200160002081905550600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906110fe90612fc4565b9190505550818a73ffffffffffffffffffffffffffffffffffffffff167f3a52c462346de2e9436a3868970892956828a11b9c43da1ed43740b12e1125ae8346338e8e8e8e8e8e8e60405161115c9a99989796959493929190613853565b60405180910390a35098975050505050505050565b60608060608484905067ffffffffffffffff811115611193576111926138e9565b5b6040519080825280602002602001820160405280156111c15781602001602082028036833780820191505090505b5092508484905067ffffffffffffffff8111156111e1576111e06138e9565b5b60405190808252806020026020018201604052801561120f5781602001602082028036833780820191505090505b5091508484905067ffffffffffffffff81111561122f5761122e6138e9565b5b60405190808252806020026020018201604052801561126257816020015b606081526020019060019003908161124d5790505b50905060005b858590508110156113f757600080600088888581811061128b5761128a613918565b5b90506020020135815260200190815260200160002090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168583815181106112da576112d9613918565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050806001015484838151811061132c5761132b613918565b5b60200260200101818152505080600201805461134790612f63565b80601f016020809104026020016040519081016040528092919081815260200182805461137390612f63565b80156113c05780601f10611395576101008083540402835291602001916113c0565b820191906000526020600020905b8154815290600101906020018083116113a357829003601f168201915b50505050508383815181106113d8576113d7613918565b5b60200260200101819052505080806113ef90612fc4565b915050611268565b509250925092565b60046020528060005260406000206000915090505481565b600080600090505b8888905081101561150b57600089898381811061143f5761143e613918565b5b90506020020160208101906114549190612aa2565b90508073ffffffffffffffffffffffffffffffffffffffff16635d51dbdc888a8989896040518663ffffffff1660e01b8152600401611497959493929190613947565b60206040518083038186803b1580156114af57600080fd5b505afa1580156114c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e791906139af565b156114f757600192505050611511565b50808061150390612fc4565b91505061141f565b50600090505b979650505050505050565b60036020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b6000806000808a815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90613a28565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c906136f5565b60405180910390fd5b600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590613761565b60405180910390fd5b6000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050463033838d8d8d8d8d8d8d6040516020016117979b9a99989796959493929190613a48565b604051602081830303815290604052805190602001209250818888886040516020016117c6949392919061313d565b604051602081830303815290604052805190602001206005600085815260200190815260200160002081905550600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061184390612fc4565b9190505550828273ffffffffffffffffffffffffffffffffffffffff167feb39930cdcbb560e6422558a2468b93a215af60063622e63cbb165eba14c32038346338f8f8f8f8f8f8f6040516118a19a99989796959493929190613853565b60405180910390a35050979650505050505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611944576001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc2e532a12bbcce2bfa2ef9e4bee80180e4e1b1f78618f0d20bc49a648b577c5683604051611a35919061255e565b60405180910390a35050565b60608686905089899050148015611a5d57508484905089899050145b8015611a6e57508282905089899050145b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613b46565b60405180910390fd5b8888905067ffffffffffffffff811115611aca57611ac96138e9565b5b604051908082528060200260200182016040528015611af85781602001602082028036833780820191505090505b50905060005b89899050811015611bd057611b988d8d8d8d8d86818110611b2257611b21613918565b5b905060200201358c8c87818110611b3c57611b3b613918565b5b905060200201358b8b88818110611b5657611b55613918565b5b9050602002016020810190611b6b9190612aa2565b8a8a89818110611b7e57611b7d613918565b5b9050602002016020810190611b939190612aa2565b611417565b828281518110611bab57611baa613918565b5b6020026020010190151590811515815250508080611bc890612fc4565b915050611afe565b509b9a5050505050505050505050565b60016020528060005260406000206000915090505481565b600081604051602001611c0b9190613bbd565b604051602081830303815290604052805190602001209050919050565b6000806000611c378585611c4f565b91509150611c4481611cd2565b819250505092915050565b600080604183511415611c915760008060006020860151925060408601519150606086015160001a9050611c8587828585611ea7565b94509450505050611ccb565b604083511415611cc2576000806020850151915060408501519050611cb7868383611fb4565b935093505050611ccb565b60006002915091505b9250929050565b60006004811115611ce657611ce5613be3565b5b816004811115611cf957611cf8613be3565b5b1415611d0457611ea4565b60016004811115611d1857611d17613be3565b5b816004811115611d2b57611d2a613be3565b5b1415611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613c5e565b60405180910390fd5b60026004811115611d8057611d7f613be3565b5b816004811115611d9357611d92613be3565b5b1415611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613cca565b60405180910390fd5b60036004811115611de857611de7613be3565b5b816004811115611dfb57611dfa613be3565b5b1415611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390613d5c565b60405180910390fd5b600480811115611e4f57611e4e613be3565b5b816004811115611e6257611e61613be3565b5b1415611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613dee565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611ee2576000600391509150611fab565b601b8560ff1614158015611efa5750601c8560ff1614155b15611f0c576000600491509150611fab565b600060018787878760405160008152602001604052604051611f319493929190613e2a565b6020604051602081039080840390855afa158015611f53573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa257600060019250925050611fab565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050611ff487828885611ea7565b935093505050935093915050565b82805461200e90612f63565b90600052602060002090601f0160209004810192826120305760008555612077565b82601f1061204957805160ff1916838001178555612077565b82800160010185558215612077579182015b8281111561207657825182559160200191906001019061205b565b5b5090506120849190612088565b5090565b5b808211156120a1576000816000905550600101612089565b5090565b600080fd5b600080fd5b6000819050919050565b6120c2816120af565b81146120cd57600080fd5b50565b6000813590506120df816120b9565b92915050565b6000602082840312156120fb576120fa6120a5565b5b6000612109848285016120d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061213d82612112565b9050919050565b61214d81612132565b82525050565b61215c816120af565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561219c578082015181840152602081019050612181565b838111156121ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006121cd82612162565b6121d7818561216d565b93506121e781856020860161217e565b6121f0816121b1565b840191505092915050565b60006060820190506122106000830186612144565b61221d6020830185612153565b818103604083015261222f81846121c2565b9050949350505050565b61224281612132565b811461224d57600080fd5b50565b60008135905061225f81612239565b92915050565b6000806040838503121561227c5761227b6120a5565b5b600061228a85828601612250565b925050602061229b85828601612250565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122da816122a5565b81146122e557600080fd5b50565b6000813590506122f7816122d1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612322576123216122fd565b5b8235905067ffffffffffffffff81111561233f5761233e612302565b5b60208301915083600182028301111561235b5761235a612307565b5b9250929050565b60008060008060008060008060c0898b031215612382576123816120a5565b5b60006123908b828c016120d0565b98505060206123a18b828c01612250565b97505060406123b28b828c01612250565b96505060606123c38b828c016122e8565b955050608089013567ffffffffffffffff8111156123e4576123e36120aa565b5b6123f08b828c0161230c565b945094505060a089013567ffffffffffffffff811115612413576124126120aa565b5b61241f8b828c0161230c565b92509250509295985092959890939650565b60008115159050919050565b61244681612431565b82525050565b6000604082019050612461600083018561243d565b818103602083015261247381846121c2565b90509392505050565b60008060008060608587031215612496576124956120a5565b5b60006124a487828801612250565b94505060206124b5878288016120d0565b935050604085013567ffffffffffffffff8111156124d6576124d56120aa565b5b6124e28782880161230c565b925092505092959194509250565b60006020820190506125056000830184612153565b92915050565b600080600060608486031215612524576125236120a5565b5b6000612532868287016120d0565b935050602061254386828701612250565b925050604061255486828701612250565b9150509250925092565b6000602082019050612573600083018461243d565b92915050565b60008083601f84011261258f5761258e6122fd565b5b8235905067ffffffffffffffff8111156125ac576125ab612302565b5b6020830191508360018202830111156125c8576125c7612307565b5b9250929050565b60008060008060008060a087890312156125ec576125eb6120a5565b5b60006125fa89828a016120d0565b965050602061260b89828a01612250565b955050604061261c89828a01612250565b945050606061262d89828a016122e8565b935050608087013567ffffffffffffffff81111561264e5761264d6120aa565b5b61265a89828a01612579565b92509250509295509295509295565b60008060008060008060008060e0898b031215612689576126886120a5565b5b60006126978b828c01612250565b98505060206126a88b828c016120d0565b97505060406126b98b828c01612250565b96505060606126ca8b828c01612250565b95505060806126db8b828c01612250565b94505060a06126ec8b828c016122e8565b93505060c089013567ffffffffffffffff81111561270d5761270c6120aa565b5b6127198b828c0161230c565b92509250509295985092959890939650565b60008083601f840112612741576127406122fd565b5b8235905067ffffffffffffffff81111561275e5761275d612302565b5b60208301915083602082028301111561277a57612779612307565b5b9250929050565b60008060208385031215612798576127976120a5565b5b600083013567ffffffffffffffff8111156127b6576127b56120aa565b5b6127c28582860161272b565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61280381612132565b82525050565b600061281583836127fa565b60208301905092915050565b6000602082019050919050565b6000612839826127ce565b61284381856127d9565b935061284e836127ea565b8060005b8381101561287f5781516128668882612809565b975061287183612821565b925050600181019050612852565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128c1816120af565b82525050565b60006128d383836128b8565b60208301905092915050565b6000602082019050919050565b60006128f78261288c565b6129018185612897565b935061290c836128a8565b8060005b8381101561293d57815161292488826128c7565b975061292f836128df565b925050600181019050612910565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b600061299282612162565b61299c8185612976565b93506129ac81856020860161217e565b6129b5816121b1565b840191505092915050565b60006129cc8383612987565b905092915050565b6000602082019050919050565b60006129ec8261294a565b6129f68185612955565b935083602082028501612a0885612966565b8060005b85811015612a445784840389528151612a2585826129c0565b9450612a30836129d4565b925060208a01995050600181019050612a0c565b50829750879550505050505092915050565b60006060820190508181036000830152612a70818661282e565b90508181036020830152612a8481856128ec565b90508181036040830152612a9881846129e1565b9050949350505050565b600060208284031215612ab857612ab76120a5565b5b6000612ac684828501612250565b91505092915050565b6000819050919050565b612ae281612acf565b82525050565b6000602082019050612afd6000830184612ad9565b92915050565b60008083601f840112612b1957612b186122fd565b5b8235905067ffffffffffffffff811115612b3657612b35612302565b5b602083019150836020820283011115612b5257612b51612307565b5b9250929050565b600080600080600080600060c0888a031215612b7857612b776120a5565b5b600088013567ffffffffffffffff811115612b9657612b956120aa565b5b612ba28a828b01612b03565b97509750506020612bb58a828b01612250565b9550506040612bc68a828b016120d0565b9450506060612bd78a828b016120d0565b9350506080612be88a828b01612250565b92505060a0612bf98a828b01612250565b91505092959891949750929550565b600080600080600080600060c0888a031215612c2757612c266120a5565b5b6000612c358a828b016120d0565b9750506020612c468a828b01612250565b9650506040612c578a828b01612250565b9550506060612c688a828b01612250565b9450506080612c798a828b016122e8565b93505060a088013567ffffffffffffffff811115612c9a57612c996120aa565b5b612ca68a828b0161230c565b925092505092959891949750929550565b612cc081612431565b8114612ccb57600080fd5b50565b600081359050612cdd81612cb7565b92915050565b60008060408385031215612cfa57612cf96120a5565b5b6000612d0885828601612250565b9250506020612d1985828601612cce565b9150509250929050565b600080600080600080600080600080600060c08c8e031215612d4857612d476120a5565b5b60008c013567ffffffffffffffff811115612d6657612d656120aa565b5b612d728e828f01612b03565b9b509b50506020612d858e828f01612250565b99505060408c013567ffffffffffffffff811115612da657612da56120aa565b5b612db28e828f0161272b565b985098505060608c013567ffffffffffffffff811115612dd557612dd46120aa565b5b612de18e828f0161272b565b965096505060808c013567ffffffffffffffff811115612e0457612e036120aa565b5b612e108e828f01612b03565b945094505060a08c013567ffffffffffffffff811115612e3357612e326120aa565b5b612e3f8e828f01612b03565b92509250509295989b509295989b9093969950565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e8981612431565b82525050565b6000612e9b8383612e80565b60208301905092915050565b6000602082019050919050565b6000612ebf82612e54565b612ec98185612e5f565b9350612ed483612e70565b8060005b83811015612f05578151612eec8882612e8f565b9750612ef783612ea7565b925050600181019050612ed8565b5085935050505092915050565b60006020820190508181036000830152612f2c8184612eb4565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7b57607f821691505b60208210811415612f8f57612f8e612f34565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fcf82612acf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561300257613001612f95565b5b600182019050919050565b6000819050919050565b61302861302382612acf565b61300d565b82525050565b60008160601b9050919050565b60006130468261302e565b9050919050565b60006130588261303b565b9050919050565b61307061306b82612132565b61304d565b82525050565b60006130828287613017565b602082019150613092828661305f565b6014820191506130a2828561305f565b6014820191506130b28284613017565b60208201915081905095945050505050565b60006130d0828661305f565b6014820191506130e0828561305f565b6014820191506130f0828461305f565b601482019150819050949350505050565b60006020820190506131166000830184612144565b92915050565b6000819050919050565b613137613132826122a5565b61311c565b82525050565b6000613149828761305f565b601482019150613159828661305f565b601482019150613169828561305f565b6014820191506131798284613126565b60048201915081905095945050505050565b600082825260208201905092915050565b7f496e76616c696420726571756573742066756c66696c6c6d656e740000000000600082015250565b60006131d2601b8361318b565b91506131dd8261319c565b602082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b6000819050919050565b61322361321e826120af565b613208565b82525050565b600081905092915050565b82818337600083830152505050565b600061324f8385613229565b935061325c838584613234565b82840190509392505050565b60006132748286613212565b602082019150613285828486613243565b9150819050949350505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006132c860118361318b565b91506132d382613292565b602082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b600061330a838561216d565b9350613317838584613234565b613320836121b1565b840190509392505050565b60006040820190506133406000830186612153565b81810360208301526133538184866132fe565b9050949350505050565b600061336882612162565b6133728185613229565b935061338281856020860161217e565b80840191505092915050565b600061339a828461335d565b915081905092915050565b600060208201905081810360008301526133c08184866132fe565b90509392505050565b7f46756c66696c6c6d656e74206661696c656420756e65787065637465646c7900600082015250565b60006133ff601f8361318b565b915061340a826133c9565b602082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f4169726e6f64652061646472657373207a65726f000000000000000000000000600082015250565b600061346b60148361318b565b915061347682613435565b602082019050919050565b6000602082019050818103600083015261349a8161345e565b9050919050565b60006134ad828761305f565b6014820191506134bd8286613212565b6020820191506134ce828486613243565b915081905095945050505050565b60006060820190506134f16000830187612144565b6134fe6020830186612153565b81810360408301526135118184866132fe565b905095945050505050565b7f496e76616c6964207769746864726177616c2066756c66696c6c6d656e740000600082015250565b6000613552601e8361318b565b915061355d8261351c565b602082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b600060408201905061359d6000830185612144565b6135aa6020830184612ad9565b9392505050565b50565b60006135c1600083613229565b91506135cc826135b1565b600082019050919050565b60006135e2826135b4565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000613622600f8361318b565b915061362d826135ec565b602082019050919050565b6000602082019050818103600083015261365181613615565b9050919050565b6000613664838561318b565b9350613671838584613234565b61367a836121b1565b840190509392505050565b600060208201905081810360008301526136a0818486613658565b90509392505050565b7f46756c66696c6c2061646472657373204169726e6f6465527270000000000000600082015250565b60006136df601a8361318b565b91506136ea826136a9565b602082019050919050565b6000602082019050818103600083015261370e816136d2565b9050919050565b7f526571756573746572206e6f742073706f6e736f726564000000000000000000600082015250565b600061374b60178361318b565b915061375682613715565b602082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b600061378d828f613017565b60208201915061379d828e61305f565b6014820191506137ad828d61305f565b6014820191506137bd828c613017565b6020820191506137cd828b61305f565b6014820191506137dd828a613212565b6020820191506137ed828961305f565b6014820191506137fd828861305f565b60148201915061380d828761305f565b60148201915061381d8286613126565b60048201915061382e828486613243565b91508190509d9c50505050505050505050505050565b61384d816122a5565b82525050565b600061012082019050613869600083018d612ad9565b613876602083018c612ad9565b613883604083018b612144565b613890606083018a612153565b61389d6080830189612144565b6138aa60a0830188612144565b6138b760c0830187612144565b6138c460e0830186613844565b8181036101008301526138d88184866132fe565b90509b9a5050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a08201905061395c6000830188612153565b6139696020830187612144565b6139766040830186612153565b6139836060830185612144565b6139906080830184612144565b9695505050505050565b6000815190506139a981612cb7565b92915050565b6000602082840312156139c5576139c46120a5565b5b60006139d38482850161399a565b91505092915050565b7f54656d706c61746520646f6573206e6f74206578697374000000000000000000600082015250565b6000613a1260178361318b565b9150613a1d826139dc565b602082019050919050565b60006020820190508181036000830152613a4181613a05565b9050919050565b6000613a54828e613017565b602082019150613a64828d61305f565b601482019150613a74828c61305f565b601482019150613a84828b613017565b602082019150613a94828a613212565b602082019150613aa4828961305f565b601482019150613ab4828861305f565b601482019150613ac4828761305f565b601482019150613ad48286613126565b600482019150613ae5828486613243565b91508190509c9b505050505050505050505050565b7f556e657175616c20706172616d65746572206c656e6774687300000000000000600082015250565b6000613b3060198361318b565b9150613b3b82613afa565b602082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613ba7601c83613b66565b9150613bb282613b71565b601c82019050919050565b6000613bc882613b9a565b9150613bd48284613212565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613c4860188361318b565b9150613c5382613c12565b602082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613cb4601f8361318b565b9150613cbf82613c7e565b602082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4660228361318b565b9150613d5182613cea565b604082019050919050565b60006020820190508181036000830152613d7581613d39565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dd860228361318b565b9150613de382613d7c565b604082019050919050565b60006020820190508181036000830152613e0781613dcb565b9050919050565b600060ff82169050919050565b613e2481613e0e565b82525050565b6000608082019050613e3f6000830187612153565b613e4c6020830186613e1b565b613e596040830185612153565b613e666060830184612153565b9594505050505056fea2646970667358221220676885739082779c7c3a56d4cb0620330353f0affbc341448620168f4aa1b15b64736f6c63430008090033

Deployed Bytecode Sourcemap

27785:12352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17649:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;22692:688;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36627:1463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;18633:587;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23827:778;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39863:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38653:685;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33511:1776;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19608:736;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;28325:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14196:736;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28026:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30678:1954;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29266:544;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15385:962;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21709:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17649:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22692:688::-;22811:27;22900:13;22940:4;22964:10;22995:31;:43;23027:10;22995:43;;;;;;;;;;;;;;;;22993:45;;;;;:::i;:::-;;;;;;;22865:188;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22841:223;;;;;;22811:253;;23171:7;23180:10;23192:13;23154:52;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23130:87;;;;;;23075:31;:52;23107:19;23075:52;;;;;;;;;;;:142;;;;23314:19;23289:10;23233:139;;23267:7;23233:139;;;23348:13;23233:139;;;;;;:::i;:::-;;;;;;;;22800:580;22692:688;;:::o;36627:1463::-;36865:16;36883:21;37161:32;:43;37194:9;37161:43;;;;;;;;;;;;37006:7;37036:10;37069:14;37106:17;36967:175;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36939:218;;;;;;:265;36917:342;;;;;;;;;;;;:::i;:::-;;;;;;;;;37440:7;37292:155;;:144;37426:9;;37292:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37311:91;37338:9;37349:4;;37321:33;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37311:44;;;;;;:89;:91::i;:::-;37292:133;;:144;;;;:::i;:::-;:155;;;37270:222;;;;;;;;;;;;:::i;:::-;;;;;;;;;37510:32;:43;37543:9;37510:43;;;;;;;;;;;37503:50;;;37590:14;:19;;37693:17;37712:9;37723:4;;37670:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37590:149;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37564:175;;;;;;;;37754:11;37750:333;;;37813:9;37804:7;37787:42;;;37824:4;;37787:42;;;;;;;:::i;:::-;;;;;;;;37750:333;;;37995:9;37969:7;37937:134;;;;;;;;:::i;:::-;;;;;;;;37750:333;36627:1463;;;;;;;;;;;:::o;18633:587::-;18782:18;18840:1;18821:21;;:7;:21;;;;18813:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;18932:7;18941:10;18953;;18915:49;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18891:84;;;;;;18878:97;;19010:126;;;;;;;;19043:7;19010:126;;;;;;19077:10;19010:126;;;;19114:10;;19010:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18986:9;:21;18996:10;18986:21;;;;;;;;;;;:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;19168:10;19152:60;19180:7;19189:10;19201;;19152:60;;;;;;;;;:::i;:::-;;;;;;;;18633:587;;;;;;:::o;23827:778::-;24110:7;24119;24128:10;24093:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24083:57;;;;;;24010:31;:52;24042:19;24010:52;;;;;;;;;;;;:130;23988:210;;;;;;;;;;;;:::i;:::-;;;;;;;;;24216:31;:52;24248:19;24216:52;;;;;;;;;;;24209:59;;;24362:19;24340:7;24284:157;;24318:7;24284:157;;;24396:10;24421:9;24284:157;;;;;;;:::i;:::-;;;;;;;;24453:12;24471:7;:12;;24491:9;24471:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24452:53;;;24570:7;24562:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;23977:628;23827:778;;;:::o;39863:271::-;39988:26;40124:1;40116:10;;40069:32;:43;40102:9;40069:43;;;;;;;;;;;;:57;;40032:94;;39863:271;;;:::o;38653:685::-;39108:32;:43;39141:9;39108:43;;;;;;;;;;;;38953:7;38983:10;39016:14;39053:17;38914:175;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38886:218;;;;;;:265;38864:342;;;;;;;;;;;;:::i;:::-;;;;;;;;;39224:32;:43;39257:9;39224:43;;;;;;;;;;;39217:50;;;39306:9;39297:7;39283:47;;;39317:12;;39283:47;;;;;;;:::i;:::-;;;;;;;;38653:685;;;;;;:::o;33511:1776::-;33787:17;33844:1;33825:21;;:7;:21;;;;33817:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;33916:4;33890:31;;:14;:31;;;;33882:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33985:37;:46;34023:7;33985:46;;;;;;;;;;;;;;;:58;34032:10;33985:58;;;;;;;;;;;;;;;;;;;;;;;;;33963:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;34105:29;34137:30;:66;34182:10;34137:66;;;;;;;;;;;;;;;;34105:98;;34285:13;34325:4;34349:10;34378:21;34418:7;34444:10;34473:7;34499:13;34531:14;34564:17;34600:10;;34250:375;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34226:410;;;;;;34214:422;;34752:7;34778:13;34810:14;34843:17;34717:158;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34693:193;;;;;;34647:32;:43;34680:9;34647:43;;;;;;;;;;;:239;;;;34897:30;:42;34928:10;34897:42;;;;;;;;;;;;;;;;:44;;;;;;;;;:::i;:::-;;;;;;35009:9;34987:7;34957:322;;;35033:21;35069:13;35097:10;35122;35147:7;35169:13;35197:14;35226:17;35258:10;;34957:322;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;33806:1481;33511:1776;;;;;;;;;;:::o;19608:736::-;19744:25;19784:28;19827:25;19905:11;;:18;;19891:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19880:44;;19963:11;;:18;;19949:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19935:47;;20018:11;;:18;;20006:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19993:44;;20053:11;20048:289;20076:11;;:18;;20070:3;:24;20048:289;;;20118:25;20146:9;:27;20156:11;;20168:3;20156:16;;;;;;;:::i;:::-;;;;;;;;20146:27;;;;;;;;;;;20118:55;;20204:8;:16;;;;;;;;;;;;20188:8;20197:3;20188:13;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20254:8;:19;;;20235:11;20247:3;20235:16;;;;;;;;:::i;:::-;;;;;;;:38;;;;;20306:8;:19;;20288:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;20299:3;20288:15;;;;;;;;:::i;:::-;;;;;;;:37;;;;20103:234;20096:5;;;;;:::i;:::-;;;;20048:289;;;;19608:736;;;;;:::o;28325:74::-;;;;;;;;;;;;;;;;;:::o;14196:736::-;14445:11;14474;14488:1;14474:15;;14469:433;14497:11;;:18;;14491:3;:24;14469:433;;;14539:22;14576:11;;14588:3;14576:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14539:54;;14630:10;:23;;;14676:9;14708:7;14738:10;14771:7;14801:9;14630:199;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14608:283;;;14871:4;14864:11;;;;;;14608:283;14524:378;14517:5;;;;;:::i;:::-;;;;14469:433;;;;14919:5;14912:12;;14196:736;;;;;;;;;;:::o;28026:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30678:1954::-;30932:17;30962:15;30980:9;:21;30990:10;30980:21;;;;;;;;;;;:29;;;;;;;;;;;;30962:47;;31208:1;31189:21;;:7;:21;;;;31181:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31283:4;31257:31;;:14;:31;;;;31249:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;31352:37;:46;31390:7;31352:46;;;;;;;;;;;;;;;:58;31399:10;31352:58;;;;;;;;;;;;;;;;;;;;;;;;;31330:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;31472:29;31504:30;:66;31549:10;31504:66;;;;;;;;;;;;;;;;31472:98;;31652:13;31692:4;31716:10;31745:21;31785:10;31814:7;31840:13;31872:14;31905:17;31941:10;;31617:349;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31593:384;;;;;;31581:396;;32093:7;32119:13;32151:14;32184:17;32058:158;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32034:193;;;;;;31988:32;:43;32021:9;31988:43;;;;;;;;;;;:239;;;;32238:30;:42;32269:10;32238:42;;;;;;;;;;;;;;;;:44;;;;;;;;;:::i;:::-;;;;;;32354:9;32332:7;32298:326;;;32378:21;32414:13;32442:10;32467;32492:7;32514:13;32542:14;32571:17;32603:10;;32298:326;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;30951:1681;;30678:1954;;;;;;;;;:::o;29266:544::-;29535:1;29490:30;:41;29521:9;29490:41;;;;;;;;;;;;;;;;:46;29486:124;;;29597:1;29553:30;:41;29584:9;29553:41;;;;;;;;;;;;;;;:45;;;;29486:124;29707:17;29620:37;:49;29658:10;29620:49;;;;;;;;;;;;;;;:84;29684:9;29620:84;;;;;;;;;;;;;;;;:104;;;;;;;;;;;;;;;;;;29773:9;29740:62;;29761:10;29740:62;;;29784:17;29740:62;;;;;;:::i;:::-;;;;;;;;29266:544;;:::o;15385:962::-;15686:22;15764:11;;:18;;15743:10;;:17;;:39;:96;;;;;15824:8;;:15;;15803:10;;:17;;:36;15743:96;:155;;;;;15881:10;;:17;;15860:10;;:17;;:38;15743:155;15721:230;;;;;;;;;;;;:::i;:::-;;;;;;;;;15984:10;;:17;;15973:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15962:40;;16018:11;16013:327;16041:10;;:17;;16035:3;:23;16013:327;;;16098:230;16141:11;;16171:7;16197:10;;16208:3;16197:15;;;;;;;:::i;:::-;;;;;;;;16231:11;;16243:3;16231:16;;;;;;;:::i;:::-;;;;;;;;16266:8;;16275:3;16266:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;16298:10;;16309:3;16298:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;16098:24;:230::i;:::-;16082:8;16091:3;16082:13;;;;;;;;:::i;:::-;;;;;;;:246;;;;;;;;;;;16060:5;;;;;:::i;:::-;;;;16013:327;;;;15385:962;;;;;;;;;;;;;:::o;21709:75::-;;;;;;;;;;;;;;;;;:::o;10480:269::-;10549:7;10735:4;10682:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;10672:69;;;;;;10665:76;;10480:269;;;:::o;6631:231::-;6709:7;6730:17;6749:18;6771:27;6782:4;6788:9;6771:10;:27::i;:::-;6729:69;;;;6809:18;6821:5;6809:11;:18::i;:::-;6845:9;6838:16;;;;6631:231;;;;:::o;4521:1308::-;4602:7;4611:12;4856:2;4836:9;:16;:22;4832:990;;;4875:9;4899;4923:7;5132:4;5121:9;5117:20;5111:27;5106:32;;5182:4;5171:9;5167:20;5161:27;5156:32;;5240:4;5229:9;5225:20;5219:27;5216:1;5211:36;5206:41;;5283:25;5294:4;5300:1;5303;5306;5283:10;:25::i;:::-;5276:32;;;;;;;;;4832:990;5350:2;5330:9;:16;:22;5326:496;;;5369:9;5393:10;5605:4;5594:9;5590:20;5584:27;5579:32;;5656:4;5645:9;5641:20;5635:27;5629:33;;5698:23;5709:4;5715:1;5718:2;5698:10;:23::i;:::-;5691:30;;;;;;;;5326:496;5770:1;5774:35;5754:56;;;;4521:1308;;;;;;:::o;2792:643::-;2870:20;2861:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;2857:571;;;2907:7;;2857:571;2968:29;2959:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;2955:473;;;3014:34;;;;;;;;;;:::i;:::-;;;;;;;;2955:473;3079:35;3070:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;3066:362;;;3131:41;;;;;;;;;;:::i;:::-;;;;;;;;3066:362;3203:30;3194:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;3190:238;;;3250:44;;;;;;;;;;:::i;:::-;;;;;;;;3190:238;3325:30;3316:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;3312:116;;;3372:44;;;;;;;;;;:::i;:::-;;;;;;;;3312:116;2792:643;;:::o;8130:1632::-;8261:7;8270:12;9195:66;9190:1;9182:10;;:79;9178:163;;;9294:1;9298:30;9278:51;;;;;;9178:163;9360:2;9355:1;:7;;;;:18;;;;;9371:2;9366:1;:7;;;;9355:18;9351:102;;;9406:1;9410:30;9390:51;;;;;;9351:102;9550:14;9567:24;9577:4;9583:1;9586;9589;9567:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9550:41;;9624:1;9606:20;;:6;:20;;;9602:103;;;9659:1;9663:29;9643:50;;;;;;;9602:103;9725:6;9733:20;9717:37;;;;;8130:1632;;;;;;;;:::o;7125:391::-;7239:7;7248:12;7273:9;7293:7;7348:66;7344:2;7340:75;7335:80;;7452:2;7447;7442:3;7438:12;7434:21;7429:26;;7483:25;7494:4;7500:1;7503;7506;7483:10;:25::i;:::-;7476:32;;;;;;7125:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:126::-;1062:7;1102:42;1095:5;1091:54;1080:65;;1025:126;;;:::o;1157:96::-;1194:7;1223:24;1241:5;1223:24;:::i;:::-;1212:35;;1157:96;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:::-;1470:24;1488:5;1470:24;:::i;:::-;1465:3;1458:37;1383:118;;:::o;1507:98::-;1558:6;1592:5;1586:12;1576:22;;1507:98;;;:::o;1611:168::-;1694:11;1728:6;1723:3;1716:19;1768:4;1763:3;1759:14;1744:29;;1611:168;;;;:::o;1785:307::-;1853:1;1863:113;1877:6;1874:1;1871:13;1863:113;;;1962:1;1957:3;1953:11;1947:18;1943:1;1938:3;1934:11;1927:39;1899:2;1896:1;1892:10;1887:15;;1863:113;;;1994:6;1991:1;1988:13;1985:101;;;2074:1;2065:6;2060:3;2056:16;2049:27;1985:101;1834:258;1785:307;;;:::o;2098:102::-;2139:6;2190:2;2186:7;2181:2;2174:5;2170:14;2166:28;2156:38;;2098:102;;;:::o;2206:360::-;2292:3;2320:38;2352:5;2320:38;:::i;:::-;2374:70;2437:6;2432:3;2374:70;:::i;:::-;2367:77;;2453:52;2498:6;2493:3;2486:4;2479:5;2475:16;2453:52;:::i;:::-;2530:29;2552:6;2530:29;:::i;:::-;2525:3;2521:39;2514:46;;2296:270;2206:360;;;;:::o;2572:529::-;2739:4;2777:2;2766:9;2762:18;2754:26;;2790:71;2858:1;2847:9;2843:17;2834:6;2790:71;:::i;:::-;2871:72;2939:2;2928:9;2924:18;2915:6;2871:72;:::i;:::-;2990:9;2984:4;2980:20;2975:2;2964:9;2960:18;2953:48;3018:76;3089:4;3080:6;3018:76;:::i;:::-;3010:84;;2572:529;;;;;;:::o;3107:122::-;3180:24;3198:5;3180:24;:::i;:::-;3173:5;3170:35;3160:63;;3219:1;3216;3209:12;3160:63;3107:122;:::o;3235:139::-;3281:5;3319:6;3306:20;3297:29;;3335:33;3362:5;3335:33;:::i;:::-;3235:139;;;;:::o;3380:474::-;3448:6;3456;3505:2;3493:9;3484:7;3480:23;3476:32;3473:119;;;3511:79;;:::i;:::-;3473:119;3631:1;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3602:117;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3380:474;;;;;:::o;3860:149::-;3896:7;3936:66;3929:5;3925:78;3914:89;;3860:149;;;:::o;4015:120::-;4087:23;4104:5;4087:23;:::i;:::-;4080:5;4077:34;4067:62;;4125:1;4122;4115:12;4067:62;4015:120;:::o;4141:137::-;4186:5;4224:6;4211:20;4202:29;;4240:32;4266:5;4240:32;:::i;:::-;4141:137;;;;:::o;4284:117::-;4393:1;4390;4383:12;4407:117;4516:1;4513;4506:12;4530:117;4639:1;4636;4629:12;4666:552;4723:8;4733:6;4783:3;4776:4;4768:6;4764:17;4760:27;4750:122;;4791:79;;:::i;:::-;4750:122;4904:6;4891:20;4881:30;;4934:18;4926:6;4923:30;4920:117;;;4956:79;;:::i;:::-;4920:117;5070:4;5062:6;5058:17;5046:29;;5124:3;5116:4;5108:6;5104:17;5094:8;5090:32;5087:41;5084:128;;;5131:79;;:::i;:::-;5084:128;4666:552;;;;;:::o;5224:1451::-;5349:6;5357;5365;5373;5381;5389;5397;5405;5454:3;5442:9;5433:7;5429:23;5425:33;5422:120;;;5461:79;;:::i;:::-;5422:120;5581:1;5606:53;5651:7;5642:6;5631:9;5627:22;5606:53;:::i;:::-;5596:63;;5552:117;5708:2;5734:53;5779:7;5770:6;5759:9;5755:22;5734:53;:::i;:::-;5724:63;;5679:118;5836:2;5862:53;5907:7;5898:6;5887:9;5883:22;5862:53;:::i;:::-;5852:63;;5807:118;5964:2;5990:52;6034:7;6025:6;6014:9;6010:22;5990:52;:::i;:::-;5980:62;;5935:117;6119:3;6108:9;6104:19;6091:33;6151:18;6143:6;6140:30;6137:117;;;6173:79;;:::i;:::-;6137:117;6286:64;6342:7;6333:6;6322:9;6318:22;6286:64;:::i;:::-;6268:82;;;;6062:298;6427:3;6416:9;6412:19;6399:33;6459:18;6451:6;6448:30;6445:117;;;6481:79;;:::i;:::-;6445:117;6594:64;6650:7;6641:6;6630:9;6626:22;6594:64;:::i;:::-;6576:82;;;;6370:298;5224:1451;;;;;;;;;;;:::o;6681:90::-;6715:7;6758:5;6751:13;6744:21;6733:32;;6681:90;;;:::o;6777:109::-;6858:21;6873:5;6858:21;:::i;:::-;6853:3;6846:34;6777:109;;:::o;6892:407::-;7025:4;7063:2;7052:9;7048:18;7040:26;;7076:65;7138:1;7127:9;7123:17;7114:6;7076:65;:::i;:::-;7188:9;7182:4;7178:20;7173:2;7162:9;7158:18;7151:48;7216:76;7287:4;7278:6;7216:76;:::i;:::-;7208:84;;6892:407;;;;;:::o;7305:817::-;7393:6;7401;7409;7417;7466:2;7454:9;7445:7;7441:23;7437:32;7434:119;;;7472:79;;:::i;:::-;7434:119;7592:1;7617:53;7662:7;7653:6;7642:9;7638:22;7617:53;:::i;:::-;7607:63;;7563:117;7719:2;7745:53;7790:7;7781:6;7770:9;7766:22;7745:53;:::i;:::-;7735:63;;7690:118;7875:2;7864:9;7860:18;7847:32;7906:18;7898:6;7895:30;7892:117;;;7928:79;;:::i;:::-;7892:117;8041:64;8097:7;8088:6;8077:9;8073:22;8041:64;:::i;:::-;8023:82;;;;7818:297;7305:817;;;;;;;:::o;8128:222::-;8221:4;8259:2;8248:9;8244:18;8236:26;;8272:71;8340:1;8329:9;8325:17;8316:6;8272:71;:::i;:::-;8128:222;;;;:::o;8356:619::-;8433:6;8441;8449;8498:2;8486:9;8477:7;8473:23;8469:32;8466:119;;;8504:79;;:::i;:::-;8466:119;8624:1;8649:53;8694:7;8685:6;8674:9;8670:22;8649:53;:::i;:::-;8639:63;;8595:117;8751:2;8777:53;8822:7;8813:6;8802:9;8798:22;8777:53;:::i;:::-;8767:63;;8722:118;8879:2;8905:53;8950:7;8941:6;8930:9;8926:22;8905:53;:::i;:::-;8895:63;;8850:118;8356:619;;;;;:::o;8981:210::-;9068:4;9106:2;9095:9;9091:18;9083:26;;9119:65;9181:1;9170:9;9166:17;9157:6;9119:65;:::i;:::-;8981:210;;;;:::o;9211:553::-;9269:8;9279:6;9329:3;9322:4;9314:6;9310:17;9306:27;9296:122;;9337:79;;:::i;:::-;9296:122;9450:6;9437:20;9427:30;;9480:18;9472:6;9469:30;9466:117;;;9502:79;;:::i;:::-;9466:117;9616:4;9608:6;9604:17;9592:29;;9670:3;9662:4;9654:6;9650:17;9640:8;9636:32;9633:41;9630:128;;;9677:79;;:::i;:::-;9630:128;9211:553;;;;;:::o;9770:1109::-;9876:6;9884;9892;9900;9908;9916;9965:3;9953:9;9944:7;9940:23;9936:33;9933:120;;;9972:79;;:::i;:::-;9933:120;10092:1;10117:53;10162:7;10153:6;10142:9;10138:22;10117:53;:::i;:::-;10107:63;;10063:117;10219:2;10245:53;10290:7;10281:6;10270:9;10266:22;10245:53;:::i;:::-;10235:63;;10190:118;10347:2;10373:53;10418:7;10409:6;10398:9;10394:22;10373:53;:::i;:::-;10363:63;;10318:118;10475:2;10501:52;10545:7;10536:6;10525:9;10521:22;10501:52;:::i;:::-;10491:62;;10446:117;10630:3;10619:9;10615:19;10602:33;10662:18;10654:6;10651:30;10648:117;;;10684:79;;:::i;:::-;10648:117;10797:65;10854:7;10845:6;10834:9;10830:22;10797:65;:::i;:::-;10779:83;;;;10573:299;9770:1109;;;;;;;;:::o;10885:1399::-;11008:6;11016;11024;11032;11040;11048;11056;11064;11113:3;11101:9;11092:7;11088:23;11084:33;11081:120;;;11120:79;;:::i;:::-;11081:120;11240:1;11265:53;11310:7;11301:6;11290:9;11286:22;11265:53;:::i;:::-;11255:63;;11211:117;11367:2;11393:53;11438:7;11429:6;11418:9;11414:22;11393:53;:::i;:::-;11383:63;;11338:118;11495:2;11521:53;11566:7;11557:6;11546:9;11542:22;11521:53;:::i;:::-;11511:63;;11466:118;11623:2;11649:53;11694:7;11685:6;11674:9;11670:22;11649:53;:::i;:::-;11639:63;;11594:118;11751:3;11778:53;11823:7;11814:6;11803:9;11799:22;11778:53;:::i;:::-;11768:63;;11722:119;11880:3;11907:52;11951:7;11942:6;11931:9;11927:22;11907:52;:::i;:::-;11897:62;;11851:118;12036:3;12025:9;12021:19;12008:33;12068:18;12060:6;12057:30;12054:117;;;12090:79;;:::i;:::-;12054:117;12203:64;12259:7;12250:6;12239:9;12235:22;12203:64;:::i;:::-;12185:82;;;;11979:298;10885:1399;;;;;;;;;;;:::o;12307:568::-;12380:8;12390:6;12440:3;12433:4;12425:6;12421:17;12417:27;12407:122;;12448:79;;:::i;:::-;12407:122;12561:6;12548:20;12538:30;;12591:18;12583:6;12580:30;12577:117;;;12613:79;;:::i;:::-;12577:117;12727:4;12719:6;12715:17;12703:29;;12781:3;12773:4;12765:6;12761:17;12751:8;12747:32;12744:41;12741:128;;;12788:79;;:::i;:::-;12741:128;12307:568;;;;;:::o;12881:559::-;12967:6;12975;13024:2;13012:9;13003:7;12999:23;12995:32;12992:119;;;13030:79;;:::i;:::-;12992:119;13178:1;13167:9;13163:17;13150:31;13208:18;13200:6;13197:30;13194:117;;;13230:79;;:::i;:::-;13194:117;13343:80;13415:7;13406:6;13395:9;13391:22;13343:80;:::i;:::-;13325:98;;;;13121:312;12881:559;;;;;:::o;13446:114::-;13513:6;13547:5;13541:12;13531:22;;13446:114;;;:::o;13566:184::-;13665:11;13699:6;13694:3;13687:19;13739:4;13734:3;13730:14;13715:29;;13566:184;;;;:::o;13756:132::-;13823:4;13846:3;13838:11;;13876:4;13871:3;13867:14;13859:22;;13756:132;;;:::o;13894:108::-;13971:24;13989:5;13971:24;:::i;:::-;13966:3;13959:37;13894:108;;:::o;14008:179::-;14077:10;14098:46;14140:3;14132:6;14098:46;:::i;:::-;14176:4;14171:3;14167:14;14153:28;;14008:179;;;;:::o;14193:113::-;14263:4;14295;14290:3;14286:14;14278:22;;14193:113;;;:::o;14342:732::-;14461:3;14490:54;14538:5;14490:54;:::i;:::-;14560:86;14639:6;14634:3;14560:86;:::i;:::-;14553:93;;14670:56;14720:5;14670:56;:::i;:::-;14749:7;14780:1;14765:284;14790:6;14787:1;14784:13;14765:284;;;14866:6;14860:13;14893:63;14952:3;14937:13;14893:63;:::i;:::-;14886:70;;14979:60;15032:6;14979:60;:::i;:::-;14969:70;;14825:224;14812:1;14809;14805:9;14800:14;;14765:284;;;14769:14;15065:3;15058:10;;14466:608;;;14342:732;;;;:::o;15080:114::-;15147:6;15181:5;15175:12;15165:22;;15080:114;;;:::o;15200:184::-;15299:11;15333:6;15328:3;15321:19;15373:4;15368:3;15364:14;15349:29;;15200:184;;;;:::o;15390:132::-;15457:4;15480:3;15472:11;;15510:4;15505:3;15501:14;15493:22;;15390:132;;;:::o;15528:108::-;15605:24;15623:5;15605:24;:::i;:::-;15600:3;15593:37;15528:108;;:::o;15642:179::-;15711:10;15732:46;15774:3;15766:6;15732:46;:::i;:::-;15810:4;15805:3;15801:14;15787:28;;15642:179;;;;:::o;15827:113::-;15897:4;15929;15924:3;15920:14;15912:22;;15827:113;;;:::o;15976:732::-;16095:3;16124:54;16172:5;16124:54;:::i;:::-;16194:86;16273:6;16268:3;16194:86;:::i;:::-;16187:93;;16304:56;16354:5;16304:56;:::i;:::-;16383:7;16414:1;16399:284;16424:6;16421:1;16418:13;16399:284;;;16500:6;16494:13;16527:63;16586:3;16571:13;16527:63;:::i;:::-;16520:70;;16613:60;16666:6;16613:60;:::i;:::-;16603:70;;16459:224;16446:1;16443;16439:9;16434:14;;16399:284;;;16403:14;16699:3;16692:10;;16100:608;;;15976:732;;;;:::o;16714:123::-;16790:6;16824:5;16818:12;16808:22;;16714:123;;;:::o;16843:193::-;16951:11;16985:6;16980:3;16973:19;17025:4;17020:3;17016:14;17001:29;;16843:193;;;;:::o;17042:141::-;17118:4;17141:3;17133:11;;17171:4;17166:3;17162:14;17154:22;;17042:141;;;:::o;17189:158::-;17262:11;17296:6;17291:3;17284:19;17336:4;17331:3;17327:14;17312:29;;17189:158;;;;:::o;17353:340::-;17429:3;17457:38;17489:5;17457:38;:::i;:::-;17511:60;17564:6;17559:3;17511:60;:::i;:::-;17504:67;;17580:52;17625:6;17620:3;17613:4;17606:5;17602:16;17580:52;:::i;:::-;17657:29;17679:6;17657:29;:::i;:::-;17652:3;17648:39;17641:46;;17433:260;17353:340;;;;:::o;17699:192::-;17786:10;17821:64;17881:3;17873:6;17821:64;:::i;:::-;17807:78;;17699:192;;;;:::o;17897:122::-;17976:4;18008;18003:3;17999:14;17991:22;;17897:122;;;:::o;18051:983::-;18188:3;18217:63;18274:5;18217:63;:::i;:::-;18296:95;18384:6;18379:3;18296:95;:::i;:::-;18289:102;;18417:3;18462:4;18454:6;18450:17;18445:3;18441:27;18492:65;18551:5;18492:65;:::i;:::-;18580:7;18611:1;18596:393;18621:6;18618:1;18615:13;18596:393;;;18692:9;18686:4;18682:20;18677:3;18670:33;18743:6;18737:13;18771:82;18848:4;18833:13;18771:82;:::i;:::-;18763:90;;18876:69;18938:6;18876:69;:::i;:::-;18866:79;;18974:4;18969:3;18965:14;18958:21;;18656:333;18643:1;18640;18636:9;18631:14;;18596:393;;;18600:14;19005:4;18998:11;;19025:3;19018:10;;18193:841;;;;;18051:983;;;;:::o;19040:931::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:108;19575:4;19566:6;19472:108;:::i;:::-;19464:116;;19627:9;19621:4;19617:20;19612:2;19601:9;19597:18;19590:48;19655:108;19758:4;19749:6;19655:108;:::i;:::-;19647:116;;19810:9;19804:4;19800:20;19795:2;19784:9;19780:18;19773:48;19838:126;19959:4;19950:6;19838:126;:::i;:::-;19830:134;;19040:931;;;;;;:::o;19977:329::-;20036:6;20085:2;20073:9;20064:7;20060:23;20056:32;20053:119;;;20091:79;;:::i;:::-;20053:119;20211:1;20236:53;20281:7;20272:6;20261:9;20257:22;20236:53;:::i;:::-;20226:63;;20182:117;19977:329;;;;:::o;20312:77::-;20349:7;20378:5;20367:16;;20312:77;;;:::o;20395:118::-;20482:24;20500:5;20482:24;:::i;:::-;20477:3;20470:37;20395:118;;:::o;20519:222::-;20612:4;20650:2;20639:9;20635:18;20627:26;;20663:71;20731:1;20720:9;20716:17;20707:6;20663:71;:::i;:::-;20519:222;;;;:::o;20764:568::-;20837:8;20847:6;20897:3;20890:4;20882:6;20878:17;20874:27;20864:122;;20905:79;;:::i;:::-;20864:122;21018:6;21005:20;20995:30;;21048:18;21040:6;21037:30;21034:117;;;21070:79;;:::i;:::-;21034:117;21184:4;21176:6;21172:17;21160:29;;21238:3;21230:4;21222:6;21218:17;21208:8;21204:32;21201:41;21198:128;;;21245:79;;:::i;:::-;21198:128;20764:568;;;;;:::o;21338:1287::-;21469:6;21477;21485;21493;21501;21509;21517;21566:3;21554:9;21545:7;21541:23;21537:33;21534:120;;;21573:79;;:::i;:::-;21534:120;21721:1;21710:9;21706:17;21693:31;21751:18;21743:6;21740:30;21737:117;;;21773:79;;:::i;:::-;21737:117;21886:80;21958:7;21949:6;21938:9;21934:22;21886:80;:::i;:::-;21868:98;;;;21664:312;22015:2;22041:53;22086:7;22077:6;22066:9;22062:22;22041:53;:::i;:::-;22031:63;;21986:118;22143:2;22169:53;22214:7;22205:6;22194:9;22190:22;22169:53;:::i;:::-;22159:63;;22114:118;22271:2;22297:53;22342:7;22333:6;22322:9;22318:22;22297:53;:::i;:::-;22287:63;;22242:118;22399:3;22426:53;22471:7;22462:6;22451:9;22447:22;22426:53;:::i;:::-;22416:63;;22370:119;22528:3;22555:53;22600:7;22591:6;22580:9;22576:22;22555:53;:::i;:::-;22545:63;;22499:119;21338:1287;;;;;;;;;;:::o;22631:1253::-;22745:6;22753;22761;22769;22777;22785;22793;22842:3;22830:9;22821:7;22817:23;22813:33;22810:120;;;22849:79;;:::i;:::-;22810:120;22969:1;22994:53;23039:7;23030:6;23019:9;23015:22;22994:53;:::i;:::-;22984:63;;22940:117;23096:2;23122:53;23167:7;23158:6;23147:9;23143:22;23122:53;:::i;:::-;23112:63;;23067:118;23224:2;23250:53;23295:7;23286:6;23275:9;23271:22;23250:53;:::i;:::-;23240:63;;23195:118;23352:2;23378:53;23423:7;23414:6;23403:9;23399:22;23378:53;:::i;:::-;23368:63;;23323:118;23480:3;23507:52;23551:7;23542:6;23531:9;23527:22;23507:52;:::i;:::-;23497:62;;23451:118;23636:3;23625:9;23621:19;23608:33;23668:18;23660:6;23657:30;23654:117;;;23690:79;;:::i;:::-;23654:117;23803:64;23859:7;23850:6;23839:9;23835:22;23803:64;:::i;:::-;23785:82;;;;23579:298;22631:1253;;;;;;;;;;:::o;23890:116::-;23960:21;23975:5;23960:21;:::i;:::-;23953:5;23950:32;23940:60;;23996:1;23993;23986:12;23940:60;23890:116;:::o;24012:133::-;24055:5;24093:6;24080:20;24071:29;;24109:30;24133:5;24109:30;:::i;:::-;24012:133;;;;:::o;24151:468::-;24216:6;24224;24273:2;24261:9;24252:7;24248:23;24244:32;24241:119;;;24279:79;;:::i;:::-;24241:119;24399:1;24424:53;24469:7;24460:6;24449:9;24445:22;24424:53;:::i;:::-;24414:63;;24370:117;24526:2;24552:50;24594:7;24585:6;24574:9;24570:22;24552:50;:::i;:::-;24542:60;;24497:115;24151:468;;;;;:::o;24625:2209::-;24864:6;24872;24880;24888;24896;24904;24912;24920;24928;24936;24944:7;24994:3;24982:9;24973:7;24969:23;24965:33;24962:120;;;25001:79;;:::i;:::-;24962:120;25149:1;25138:9;25134:17;25121:31;25179:18;25171:6;25168:30;25165:117;;;25201:79;;:::i;:::-;25165:117;25314:80;25386:7;25377:6;25366:9;25362:22;25314:80;:::i;:::-;25296:98;;;;25092:312;25443:2;25469:53;25514:7;25505:6;25494:9;25490:22;25469:53;:::i;:::-;25459:63;;25414:118;25599:2;25588:9;25584:18;25571:32;25630:18;25622:6;25619:30;25616:117;;;25652:79;;:::i;:::-;25616:117;25765:80;25837:7;25828:6;25817:9;25813:22;25765:80;:::i;:::-;25747:98;;;;25542:313;25922:2;25911:9;25907:18;25894:32;25953:18;25945:6;25942:30;25939:117;;;25975:79;;:::i;:::-;25939:117;26088:80;26160:7;26151:6;26140:9;26136:22;26088:80;:::i;:::-;26070:98;;;;25865:313;26245:3;26234:9;26230:19;26217:33;26277:18;26269:6;26266:30;26263:117;;;26299:79;;:::i;:::-;26263:117;26412:80;26484:7;26475:6;26464:9;26460:22;26412:80;:::i;:::-;26394:98;;;;26188:314;26569:3;26558:9;26554:19;26541:33;26601:18;26593:6;26590:30;26587:117;;;26623:79;;:::i;:::-;26587:117;26737:80;26809:7;26800:6;26789:9;26785:22;26737:80;:::i;:::-;26718:99;;;;26512:315;24625:2209;;;;;;;;;;;;;;:::o;26840:111::-;26904:6;26938:5;26932:12;26922:22;;26840:111;;;:::o;26957:181::-;27053:11;27087:6;27082:3;27075:19;27127:4;27122:3;27118:14;27103:29;;26957:181;;;;:::o;27144:129::-;27208:4;27231:3;27223:11;;27261:4;27256:3;27252:14;27244:22;;27144:129;;;:::o;27279:99::-;27350:21;27365:5;27350:21;:::i;:::-;27345:3;27338:34;27279:99;;:::o;27384:167::-;27447:10;27468:40;27504:3;27496:6;27468:40;:::i;:::-;27540:4;27535:3;27531:14;27517:28;;27384:167;;;;:::o;27557:110::-;27624:4;27656;27651:3;27647:14;27639:22;;27557:110;;;:::o;27697:708::-;27810:3;27839:51;27884:5;27839:51;:::i;:::-;27906:83;27982:6;27977:3;27906:83;:::i;:::-;27899:90;;28013:53;28060:5;28013:53;:::i;:::-;28089:7;28120:1;28105:275;28130:6;28127:1;28124:13;28105:275;;;28206:6;28200:13;28233:57;28286:3;28271:13;28233:57;:::i;:::-;28226:64;;28313:57;28363:6;28313:57;:::i;:::-;28303:67;;28165:215;28152:1;28149;28145:9;28140:14;;28105:275;;;28109:14;28396:3;28389:10;;27815:590;;;27697:708;;;;:::o;28411:361::-;28548:4;28586:2;28575:9;28571:18;28563:26;;28635:9;28629:4;28625:20;28621:1;28610:9;28606:17;28599:47;28663:102;28760:4;28751:6;28663:102;:::i;:::-;28655:110;;28411:361;;;;:::o;28778:180::-;28826:77;28823:1;28816:88;28923:4;28920:1;28913:15;28947:4;28944:1;28937:15;28964:320;29008:6;29045:1;29039:4;29035:12;29025:22;;29092:1;29086:4;29082:12;29113:18;29103:81;;29169:4;29161:6;29157:17;29147:27;;29103:81;29231:2;29223:6;29220:14;29200:18;29197:38;29194:84;;;29250:18;;:::i;:::-;29194:84;29015:269;28964:320;;;:::o;29290:180::-;29338:77;29335:1;29328:88;29435:4;29432:1;29425:15;29459:4;29456:1;29449:15;29476:233;29515:3;29538:24;29556:5;29538:24;:::i;:::-;29529:33;;29584:66;29577:5;29574:77;29571:103;;;29654:18;;:::i;:::-;29571:103;29701:1;29694:5;29690:13;29683:20;;29476:233;;;:::o;29715:79::-;29754:7;29783:5;29772:16;;29715:79;;;:::o;29800:157::-;29905:45;29925:24;29943:5;29925:24;:::i;:::-;29905:45;:::i;:::-;29900:3;29893:58;29800:157;;:::o;29963:94::-;29996:8;30044:5;30040:2;30036:14;30015:35;;29963:94;;;:::o;30063:::-;30102:7;30131:20;30145:5;30131:20;:::i;:::-;30120:31;;30063:94;;;:::o;30163:100::-;30202:7;30231:26;30251:5;30231:26;:::i;:::-;30220:37;;30163:100;;;:::o;30269:157::-;30374:45;30394:24;30412:5;30394:24;:::i;:::-;30374:45;:::i;:::-;30369:3;30362:58;30269:157;;:::o;30432:679::-;30628:3;30643:75;30714:3;30705:6;30643:75;:::i;:::-;30743:2;30738:3;30734:12;30727:19;;30756:75;30827:3;30818:6;30756:75;:::i;:::-;30856:2;30851:3;30847:12;30840:19;;30869:75;30940:3;30931:6;30869:75;:::i;:::-;30969:2;30964:3;30960:12;30953:19;;30982:75;31053:3;31044:6;30982:75;:::i;:::-;31082:2;31077:3;31073:12;31066:19;;31102:3;31095:10;;30432:679;;;;;;;:::o;31117:538::-;31285:3;31300:75;31371:3;31362:6;31300:75;:::i;:::-;31400:2;31395:3;31391:12;31384:19;;31413:75;31484:3;31475:6;31413:75;:::i;:::-;31513:2;31508:3;31504:12;31497:19;;31526:75;31597:3;31588:6;31526:75;:::i;:::-;31626:2;31621:3;31617:12;31610:19;;31646:3;31639:10;;31117:538;;;;;;:::o;31661:222::-;31754:4;31792:2;31781:9;31777:18;31769:26;;31805:71;31873:1;31862:9;31858:17;31849:6;31805:71;:::i;:::-;31661:222;;;;:::o;31889:78::-;31927:7;31956:5;31945:16;;31889:78;;;:::o;31973:153::-;32076:43;32095:23;32112:5;32095:23;:::i;:::-;32076:43;:::i;:::-;32071:3;32064:56;31973:153;;:::o;32132:674::-;32326:3;32341:75;32412:3;32403:6;32341:75;:::i;:::-;32441:2;32436:3;32432:12;32425:19;;32454:75;32525:3;32516:6;32454:75;:::i;:::-;32554:2;32549:3;32545:12;32538:19;;32567:75;32638:3;32629:6;32567:75;:::i;:::-;32667:2;32662:3;32658:12;32651:19;;32680:73;32749:3;32740:6;32680:73;:::i;:::-;32778:1;32773:3;32769:11;32762:18;;32797:3;32790:10;;32132:674;;;;;;;:::o;32812:169::-;32896:11;32930:6;32925:3;32918:19;32970:4;32965:3;32961:14;32946:29;;32812:169;;;;:::o;32987:177::-;33127:29;33123:1;33115:6;33111:14;33104:53;32987:177;:::o;33170:366::-;33312:3;33333:67;33397:2;33392:3;33333:67;:::i;:::-;33326:74;;33409:93;33498:3;33409:93;:::i;:::-;33527:2;33522:3;33518:12;33511:19;;33170:366;;;:::o;33542:419::-;33708:4;33746:2;33735:9;33731:18;33723:26;;33795:9;33789:4;33785:20;33781:1;33770:9;33766:17;33759:47;33823:131;33949:4;33823:131;:::i;:::-;33815:139;;33542:419;;;:::o;33967:79::-;34006:7;34035:5;34024:16;;33967:79;;;:::o;34052:157::-;34157:45;34177:24;34195:5;34177:24;:::i;:::-;34157:45;:::i;:::-;34152:3;34145:58;34052:157;;:::o;34215:147::-;34316:11;34353:3;34338:18;;34215:147;;;;:::o;34368:154::-;34452:6;34447:3;34442;34429:30;34514:1;34505:6;34500:3;34496:16;34489:27;34368:154;;;:::o;34550:314::-;34664:3;34685:88;34766:6;34761:3;34685:88;:::i;:::-;34678:95;;34783:43;34819:6;34814:3;34807:5;34783:43;:::i;:::-;34851:6;34846:3;34842:16;34835:23;;34550:314;;;;;:::o;34870:432::-;35038:3;35053:75;35124:3;35115:6;35053:75;:::i;:::-;35153:2;35148:3;35144:12;35137:19;;35173:103;35272:3;35263:6;35255;35173:103;:::i;:::-;35166:110;;35293:3;35286:10;;34870:432;;;;;;:::o;35308:167::-;35448:19;35444:1;35436:6;35432:14;35425:43;35308:167;:::o;35481:366::-;35623:3;35644:67;35708:2;35703:3;35644:67;:::i;:::-;35637:74;;35720:93;35809:3;35720:93;:::i;:::-;35838:2;35833:3;35829:12;35822:19;;35481:366;;;:::o;35853:419::-;36019:4;36057:2;36046:9;36042:18;36034:26;;36106:9;36100:4;36096:20;36092:1;36081:9;36077:17;36070:47;36134:131;36260:4;36134:131;:::i;:::-;36126:139;;35853:419;;;:::o;36300:301::-;36396:3;36417:70;36480:6;36475:3;36417:70;:::i;:::-;36410:77;;36497:43;36533:6;36528:3;36521:5;36497:43;:::i;:::-;36565:29;36587:6;36565:29;:::i;:::-;36560:3;36556:39;36549:46;;36300:301;;;;;:::o;36607:439::-;36756:4;36794:2;36783:9;36779:18;36771:26;;36807:71;36875:1;36864:9;36860:17;36851:6;36807:71;:::i;:::-;36925:9;36919:4;36915:20;36910:2;36899:9;36895:18;36888:48;36953:86;37034:4;37025:6;37017;36953:86;:::i;:::-;36945:94;;36607:439;;;;;;:::o;37052:373::-;37156:3;37184:38;37216:5;37184:38;:::i;:::-;37238:88;37319:6;37314:3;37238:88;:::i;:::-;37231:95;;37335:52;37380:6;37375:3;37368:4;37361:5;37357:16;37335:52;:::i;:::-;37412:6;37407:3;37403:16;37396:23;;37160:265;37052:373;;;;:::o;37431:271::-;37561:3;37583:93;37672:3;37663:6;37583:93;:::i;:::-;37576:100;;37693:3;37686:10;;37431:271;;;;:::o;37708:329::-;37829:4;37867:2;37856:9;37852:18;37844:26;;37916:9;37910:4;37906:20;37902:1;37891:9;37887:17;37880:47;37944:86;38025:4;38016:6;38008;37944:86;:::i;:::-;37936:94;;37708:329;;;;;:::o;38043:181::-;38183:33;38179:1;38171:6;38167:14;38160:57;38043:181;:::o;38230:366::-;38372:3;38393:67;38457:2;38452:3;38393:67;:::i;:::-;38386:74;;38469:93;38558:3;38469:93;:::i;:::-;38587:2;38582:3;38578:12;38571:19;;38230:366;;;:::o;38602:419::-;38768:4;38806:2;38795:9;38791:18;38783:26;;38855:9;38849:4;38845:20;38841:1;38830:9;38826:17;38819:47;38883:131;39009:4;38883:131;:::i;:::-;38875:139;;38602:419;;;:::o;39027:170::-;39167:22;39163:1;39155:6;39151:14;39144:46;39027:170;:::o;39203:366::-;39345:3;39366:67;39430:2;39425:3;39366:67;:::i;:::-;39359:74;;39442:93;39531:3;39442:93;:::i;:::-;39560:2;39555:3;39551:12;39544:19;;39203:366;;;:::o;39575:419::-;39741:4;39779:2;39768:9;39764:18;39756:26;;39828:9;39822:4;39818:20;39814:1;39803:9;39799:17;39792:47;39856:131;39982:4;39856:131;:::i;:::-;39848:139;;39575:419;;;:::o;40000:573::-;40196:3;40211:75;40282:3;40273:6;40211:75;:::i;:::-;40311:2;40306:3;40302:12;40295:19;;40324:75;40395:3;40386:6;40324:75;:::i;:::-;40424:2;40419:3;40415:12;40408:19;;40444:103;40543:3;40534:6;40526;40444:103;:::i;:::-;40437:110;;40564:3;40557:10;;40000:573;;;;;;;:::o;40579:549::-;40756:4;40794:2;40783:9;40779:18;40771:26;;40807:71;40875:1;40864:9;40860:17;40851:6;40807:71;:::i;:::-;40888:72;40956:2;40945:9;40941:18;40932:6;40888:72;:::i;:::-;41007:9;41001:4;40997:20;40992:2;40981:9;40977:18;40970:48;41035:86;41116:4;41107:6;41099;41035:86;:::i;:::-;41027:94;;40579:549;;;;;;;:::o;41134:180::-;41274:32;41270:1;41262:6;41258:14;41251:56;41134:180;:::o;41320:366::-;41462:3;41483:67;41547:2;41542:3;41483:67;:::i;:::-;41476:74;;41559:93;41648:3;41559:93;:::i;:::-;41677:2;41672:3;41668:12;41661:19;;41320:366;;;:::o;41692:419::-;41858:4;41896:2;41885:9;41881:18;41873:26;;41945:9;41939:4;41935:20;41931:1;41920:9;41916:17;41909:47;41973:131;42099:4;41973:131;:::i;:::-;41965:139;;41692:419;;;:::o;42117:332::-;42238:4;42276:2;42265:9;42261:18;42253:26;;42289:71;42357:1;42346:9;42342:17;42333:6;42289:71;:::i;:::-;42370:72;42438:2;42427:9;42423:18;42414:6;42370:72;:::i;:::-;42117:332;;;;;:::o;42455:114::-;;:::o;42575:398::-;42734:3;42755:83;42836:1;42831:3;42755:83;:::i;:::-;42748:90;;42847:93;42936:3;42847:93;:::i;:::-;42965:1;42960:3;42956:11;42949:18;;42575:398;;;:::o;42979:379::-;43163:3;43185:147;43328:3;43185:147;:::i;:::-;43178:154;;43349:3;43342:10;;42979:379;;;:::o;43364:165::-;43504:17;43500:1;43492:6;43488:14;43481:41;43364:165;:::o;43535:366::-;43677:3;43698:67;43762:2;43757:3;43698:67;:::i;:::-;43691:74;;43774:93;43863:3;43774:93;:::i;:::-;43892:2;43887:3;43883:12;43876:19;;43535:366;;;:::o;43907:419::-;44073:4;44111:2;44100:9;44096:18;44088:26;;44160:9;44154:4;44150:20;44146:1;44135:9;44131:17;44124:47;44188:131;44314:4;44188:131;:::i;:::-;44180:139;;43907:419;;;:::o;44356:304::-;44454:3;44475:71;44539:6;44534:3;44475:71;:::i;:::-;44468:78;;44556:43;44592:6;44587:3;44580:5;44556:43;:::i;:::-;44624:29;44646:6;44624:29;:::i;:::-;44619:3;44615:39;44608:46;;44356:304;;;;;:::o;44666:333::-;44789:4;44827:2;44816:9;44812:18;44804:26;;44876:9;44870:4;44866:20;44862:1;44851:9;44847:17;44840:47;44904:88;44987:4;44978:6;44970;44904:88;:::i;:::-;44896:96;;44666:333;;;;;:::o;45005:176::-;45145:28;45141:1;45133:6;45129:14;45122:52;45005:176;:::o;45187:366::-;45329:3;45350:67;45414:2;45409:3;45350:67;:::i;:::-;45343:74;;45426:93;45515:3;45426:93;:::i;:::-;45544:2;45539:3;45535:12;45528:19;;45187:366;;;:::o;45559:419::-;45725:4;45763:2;45752:9;45748:18;45740:26;;45812:9;45806:4;45802:20;45798:1;45787:9;45783:17;45776:47;45840:131;45966:4;45840:131;:::i;:::-;45832:139;;45559:419;;;:::o;45984:173::-;46124:25;46120:1;46112:6;46108:14;46101:49;45984:173;:::o;46163:366::-;46305:3;46326:67;46390:2;46385:3;46326:67;:::i;:::-;46319:74;;46402:93;46491:3;46402:93;:::i;:::-;46520:2;46515:3;46511:12;46504:19;;46163:366;;;:::o;46535:419::-;46701:4;46739:2;46728:9;46724:18;46716:26;;46788:9;46782:4;46778:20;46774:1;46763:9;46759:17;46752:47;46816:131;46942:4;46816:131;:::i;:::-;46808:139;;46535:419;;;:::o;46960:1700::-;47380:3;47395:75;47466:3;47457:6;47395:75;:::i;:::-;47495:2;47490:3;47486:12;47479:19;;47508:75;47579:3;47570:6;47508:75;:::i;:::-;47608:2;47603:3;47599:12;47592:19;;47621:75;47692:3;47683:6;47621:75;:::i;:::-;47721:2;47716:3;47712:12;47705:19;;47734:75;47805:3;47796:6;47734:75;:::i;:::-;47834:2;47829:3;47825:12;47818:19;;47847:75;47918:3;47909:6;47847:75;:::i;:::-;47947:2;47942:3;47938:12;47931:19;;47960:75;48031:3;48022:6;47960:75;:::i;:::-;48060:2;48055:3;48051:12;48044:19;;48073:75;48144:3;48135:6;48073:75;:::i;:::-;48173:2;48168:3;48164:12;48157:19;;48186:75;48257:3;48248:6;48186:75;:::i;:::-;48286:2;48281:3;48277:12;48270:19;;48299:75;48370:3;48361:6;48299:75;:::i;:::-;48399:2;48394:3;48390:12;48383:19;;48412:73;48481:3;48472:6;48412:73;:::i;:::-;48510:1;48505:3;48501:11;48494:18;;48529:105;48630:3;48620:7;48611;48529:105;:::i;:::-;48522:112;;48651:3;48644:10;;46960:1700;;;;;;;;;;;;;;;:::o;48666:115::-;48751:23;48768:5;48751:23;:::i;:::-;48746:3;48739:36;48666:115;;:::o;48787:1211::-;49130:4;49168:3;49157:9;49153:19;49145:27;;49182:71;49250:1;49239:9;49235:17;49226:6;49182:71;:::i;:::-;49263:72;49331:2;49320:9;49316:18;49307:6;49263:72;:::i;:::-;49345;49413:2;49402:9;49398:18;49389:6;49345:72;:::i;:::-;49427;49495:2;49484:9;49480:18;49471:6;49427:72;:::i;:::-;49509:73;49577:3;49566:9;49562:19;49553:6;49509:73;:::i;:::-;49592;49660:3;49649:9;49645:19;49636:6;49592:73;:::i;:::-;49675;49743:3;49732:9;49728:19;49719:6;49675:73;:::i;:::-;49758:71;49824:3;49813:9;49809:19;49800:6;49758:71;:::i;:::-;49877:9;49871:4;49867:20;49861:3;49850:9;49846:19;49839:49;49905:86;49986:4;49977:6;49969;49905:86;:::i;:::-;49897:94;;48787:1211;;;;;;;;;;;;;:::o;50004:180::-;50052:77;50049:1;50042:88;50149:4;50146:1;50139:15;50173:4;50170:1;50163:15;50190:180;50238:77;50235:1;50228:88;50335:4;50332:1;50325:15;50359:4;50356:1;50349:15;50376:664;50581:4;50619:3;50608:9;50604:19;50596:27;;50633:71;50701:1;50690:9;50686:17;50677:6;50633:71;:::i;:::-;50714:72;50782:2;50771:9;50767:18;50758:6;50714:72;:::i;:::-;50796;50864:2;50853:9;50849:18;50840:6;50796:72;:::i;:::-;50878;50946:2;50935:9;50931:18;50922:6;50878:72;:::i;:::-;50960:73;51028:3;51017:9;51013:19;51004:6;50960:73;:::i;:::-;50376:664;;;;;;;;:::o;51046:137::-;51100:5;51131:6;51125:13;51116:22;;51147:30;51171:5;51147:30;:::i;:::-;51046:137;;;;:::o;51189:345::-;51256:6;51305:2;51293:9;51284:7;51280:23;51276:32;51273:119;;;51311:79;;:::i;:::-;51273:119;51431:1;51456:61;51509:7;51500:6;51489:9;51485:22;51456:61;:::i;:::-;51446:71;;51402:125;51189:345;;;;:::o;51540:173::-;51680:25;51676:1;51668:6;51664:14;51657:49;51540:173;:::o;51719:366::-;51861:3;51882:67;51946:2;51941:3;51882:67;:::i;:::-;51875:74;;51958:93;52047:3;51958:93;:::i;:::-;52076:2;52071:3;52067:12;52060:19;;51719:366;;;:::o;52091:419::-;52257:4;52295:2;52284:9;52280:18;52272:26;;52344:9;52338:4;52334:20;52330:1;52319:9;52315:17;52308:47;52372:131;52498:4;52372:131;:::i;:::-;52364:139;;52091:419;;;:::o;52516:1557::-;52907:3;52922:75;52993:3;52984:6;52922:75;:::i;:::-;53022:2;53017:3;53013:12;53006:19;;53035:75;53106:3;53097:6;53035:75;:::i;:::-;53135:2;53130:3;53126:12;53119:19;;53148:75;53219:3;53210:6;53148:75;:::i;:::-;53248:2;53243:3;53239:12;53232:19;;53261:75;53332:3;53323:6;53261:75;:::i;:::-;53361:2;53356:3;53352:12;53345:19;;53374:75;53445:3;53436:6;53374:75;:::i;:::-;53474:2;53469:3;53465:12;53458:19;;53487:75;53558:3;53549:6;53487:75;:::i;:::-;53587:2;53582:3;53578:12;53571:19;;53600:75;53671:3;53662:6;53600:75;:::i;:::-;53700:2;53695:3;53691:12;53684:19;;53713:75;53784:3;53775:6;53713:75;:::i;:::-;53813:2;53808:3;53804:12;53797:19;;53826:73;53895:3;53886:6;53826:73;:::i;:::-;53924:1;53919:3;53915:11;53908:18;;53943:104;54043:3;54033:7;54025:6;53943:104;:::i;:::-;53936:111;;54064:3;54057:10;;52516:1557;;;;;;;;;;;;;;:::o;54079:175::-;54219:27;54215:1;54207:6;54203:14;54196:51;54079:175;:::o;54260:366::-;54402:3;54423:67;54487:2;54482:3;54423:67;:::i;:::-;54416:74;;54499:93;54588:3;54499:93;:::i;:::-;54617:2;54612:3;54608:12;54601:19;;54260:366;;;:::o;54632:419::-;54798:4;54836:2;54825:9;54821:18;54813:26;;54885:9;54879:4;54875:20;54871:1;54860:9;54856:17;54849:47;54913:131;55039:4;54913:131;:::i;:::-;54905:139;;54632:419;;;:::o;55057:148::-;55159:11;55196:3;55181:18;;55057:148;;;;:::o;55211:214::-;55351:66;55347:1;55339:6;55335:14;55328:90;55211:214;:::o;55431:402::-;55591:3;55612:85;55694:2;55689:3;55612:85;:::i;:::-;55605:92;;55706:93;55795:3;55706:93;:::i;:::-;55824:2;55819:3;55815:12;55808:19;;55431:402;;;:::o;55839:522::-;56052:3;56074:148;56218:3;56074:148;:::i;:::-;56067:155;;56232:75;56303:3;56294:6;56232:75;:::i;:::-;56332:2;56327:3;56323:12;56316:19;;56352:3;56345:10;;55839:522;;;;:::o;56367:180::-;56415:77;56412:1;56405:88;56512:4;56509:1;56502:15;56536:4;56533:1;56526:15;56553:174;56693:26;56689:1;56681:6;56677:14;56670:50;56553:174;:::o;56733:366::-;56875:3;56896:67;56960:2;56955:3;56896:67;:::i;:::-;56889:74;;56972:93;57061:3;56972:93;:::i;:::-;57090:2;57085:3;57081:12;57074:19;;56733:366;;;:::o;57105:419::-;57271:4;57309:2;57298:9;57294:18;57286:26;;57358:9;57352:4;57348:20;57344:1;57333:9;57329:17;57322:47;57386:131;57512:4;57386:131;:::i;:::-;57378:139;;57105:419;;;:::o;57530:181::-;57670:33;57666:1;57658:6;57654:14;57647:57;57530:181;:::o;57717:366::-;57859:3;57880:67;57944:2;57939:3;57880:67;:::i;:::-;57873:74;;57956:93;58045:3;57956:93;:::i;:::-;58074:2;58069:3;58065:12;58058:19;;57717:366;;;:::o;58089:419::-;58255:4;58293:2;58282:9;58278:18;58270:26;;58342:9;58336:4;58332:20;58328:1;58317:9;58313:17;58306:47;58370:131;58496:4;58370:131;:::i;:::-;58362:139;;58089:419;;;:::o;58514:221::-;58654:34;58650:1;58642:6;58638:14;58631:58;58723:4;58718:2;58710:6;58706:15;58699:29;58514:221;:::o;58741:366::-;58883:3;58904:67;58968:2;58963:3;58904:67;:::i;:::-;58897:74;;58980:93;59069:3;58980:93;:::i;:::-;59098:2;59093:3;59089:12;59082:19;;58741:366;;;:::o;59113:419::-;59279:4;59317:2;59306:9;59302:18;59294:26;;59366:9;59360:4;59356:20;59352:1;59341:9;59337:17;59330:47;59394:131;59520:4;59394:131;:::i;:::-;59386:139;;59113:419;;;:::o;59538:221::-;59678:34;59674:1;59666:6;59662:14;59655:58;59747:4;59742:2;59734:6;59730:15;59723:29;59538:221;:::o;59765:366::-;59907:3;59928:67;59992:2;59987:3;59928:67;:::i;:::-;59921:74;;60004:93;60093:3;60004:93;:::i;:::-;60122:2;60117:3;60113:12;60106:19;;59765:366;;;:::o;60137:419::-;60303:4;60341:2;60330:9;60326:18;60318:26;;60390:9;60384:4;60380:20;60376:1;60365:9;60361:17;60354:47;60418:131;60544:4;60418:131;:::i;:::-;60410:139;;60137:419;;;:::o;60562:86::-;60597:7;60637:4;60630:5;60626:16;60615:27;;60562:86;;;:::o;60654:112::-;60737:22;60753:5;60737:22;:::i;:::-;60732:3;60725:35;60654:112;;:::o;60772:545::-;60945:4;60983:3;60972:9;60968:19;60960:27;;60997:71;61065:1;61054:9;61050:17;61041:6;60997:71;:::i;:::-;61078:68;61142:2;61131:9;61127:18;61118:6;61078:68;:::i;:::-;61156:72;61224:2;61213:9;61209:18;61200:6;61156:72;:::i;:::-;61238;61306:2;61295:9;61291:18;61282:6;61238:72;:::i;:::-;60772:545;;;;;;;:::o

Swarm Source

ipfs://676885739082779c7c3a56d4cb0620330353f0affbc341448620168f4aa1b15b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.