ETH Price: $2,082.91 (-2.99%)

Contract

0x12fF5224F97dfacb76a7EB59f2cdc81445f5280f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-126992672021-06-24 21:30:581731 days ago1624570258  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
AddressList

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-21
*/

// File: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/interfaces/IAddressList.sol

pragma solidity 0.8.3;

interface IAddressList {
    event AddressUpdated(address indexed a, address indexed sender);
    event AddressRemoved(address indexed a, address indexed sender);

    function add(address a) external returns (bool);

    function addValue(address a, uint256 v) external returns (bool);

    function addMulti(address[] calldata addrs) external returns (uint256);

    function addValueMulti(address[] calldata addrs, uint256[] calldata values) external returns (uint256);

    function remove(address a) external returns (bool);

    function removeMulti(address[] calldata addrs) external returns (uint256);

    function get(address a) external view returns (uint256);

    function contains(address a) external view returns (bool);

    function at(uint256 index) external view returns (address, uint256);

    function length() external view returns (uint256);
}

// File: contracts/EnumerableMap.sol

pragma solidity 0.8.3;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * only maps of type `address -> uint256` (`AddressToUintMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        //solhint-disable-next-line reason-string
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // AddressToUintMap

    struct AddressToUintMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        AddressToUintMap storage map,
        address key,
        uint256 value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(uint256(uint160(key))), bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(AddressToUintMap storage map, address key) internal returns (bool) {
        return _remove(map._inner, bytes32(uint256(uint160(key))));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(AddressToUintMap storage map, address key) internal view returns (bool) {
        return _contains(map._inner, bytes32(uint256(uint160(key))));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(AddressToUintMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressToUintMap storage map, uint256 index) internal view returns (address, uint256) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (address(uint160(uint256(key))), uint256(value));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(AddressToUintMap storage map, address key) internal view returns (uint256) {
        return uint256(_get(map._inner, bytes32(uint256(uint160(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(
        AddressToUintMap storage map,
        address key,
        string memory errorMessage
    ) internal view returns (uint256) {
        return uint256(_get(map._inner, bytes32(uint256(uint160(key))), errorMessage));
    }
}

// File: contracts/AddressList.sol

pragma solidity 0.8.3;

contract AddressList is AccessControl, IAddressList {
    using EnumerableMap for EnumerableMap.AddressToUintMap;
    EnumerableMap.AddressToUintMap private theList;

    bytes32 public constant LIST_ADMIN = keccak256("LIST_ADMIN");

    modifier onlyListAdmin() {
        require(hasRole(LIST_ADMIN, msg.sender), "Sender lacks LIST_ADMIN role");
        _;
    }

    // initialize owner and list-admin roles
    constructor(address owner) {
        _setupRole(DEFAULT_ADMIN_ROLE, owner);
        _setupRole(LIST_ADMIN, owner);
    }

    ///////////////////////////////////////////////////////////////

    // Anyone: query list entry at index N (no ordering guarantees)
    function at(uint256 index) external view override returns (address, uint256) {
        return theList.at(index);
    }

    // Anyone: check list contains given address or.
    function contains(address a) external view override returns (bool) {
        return theList.contains(a);
    }

    // Anyone: total list length
    function length() external view override returns (uint256) {
        return theList.length();
    }

    // Anyone: query value associated with address.  returns zero if absent.
    function get(address a) external view override returns (uint256) {
        return theList.contains(a) ? theList.get(a) : 0;
    }

    ///////////////////////////////////////////////////////////////

    // Admin: add (address,1) to list
    function add(address a) external override onlyListAdmin returns (bool) {
        return _add(a, 1);
    }

    // Admin: add (address, n) to list
    function addValue(address a, uint256 v) external override onlyListAdmin returns (bool) {
        return _add(a, v);
    }

    // Admin: add multiple (address,1) items to list
    function addMulti(address[] calldata addrs) external override onlyListAdmin returns (uint256) {
        uint256 updated = 0;
        for (uint256 i = 0; i < addrs.length; i++) {
            if (_add(addrs[i], 1)) {
                updated++;
            }
        }
        return updated;
    }

    // Admin: add multiple (address,n) items to list
    function addValueMulti(address[] calldata addrs, uint256[] calldata values)
        external
        override
        onlyListAdmin
        returns (uint256)
    {
        //solhint-disable-next-line reason-string
        require(addrs.length == values.length, "Address and value array sizes must be equal");
        uint256 updated = 0;
        for (uint256 i = 0; i < addrs.length; i++) {
            if (_add(addrs[i], values[i])) {
                updated++;
            }
        }
        return updated;
    }

    // Admin: remove address from list
    function remove(address a) external override onlyListAdmin returns (bool) {
        return _remove(a);
    }

    // Admin: remove multiple items from list
    function removeMulti(address[] calldata addrs) external override onlyListAdmin returns (uint256) {
        uint256 updated = 0;
        for (uint256 i = 0; i < addrs.length; i++) {
            if (_remove(addrs[i])) {
                updated++;
            }
        }
        return updated;
    }

    ///////////////////////////////////////////////////////////////

    function _add(address a, uint256 v) private returns (bool) {
        require(v != 0, "Metadata value v cannot be zero");
        if (!theList.contains(a) || theList.get(a) != v) {
            theList.set(a, v);
            emit AddressUpdated(a, msg.sender);
            return true;
        }

        return false;
    }

    function _remove(address a) private returns (bool) {
        bool removed = theList.remove(a);
        if (removed) {
            emit AddressRemoved(a, msg.sender);
            return true;
        }

        return false;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"a","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AddressRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"a","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIST_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"add","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addMulti","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"uint256","name":"v","type":"uint256"}],"name":"addValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"addValueMulti","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"at","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"contains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"get","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"length","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"remove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeMulti","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

0x60806040523480156200001157600080fd5b506040516200223938038062002239833981810160405281019062000037919062000215565b6200004c6000801b826200008560201b60201c565b6200007e7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a6826200008560201b60201c565b506200028f565b6200009782826200009b60201b60201c565b5050565b620000ad82826200018c60201b60201c565b6200018857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200012d620001f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6000815190506200020f8162000275565b92915050565b6000602082840312156200022857600080fd5b60006200023884828501620001fe565b91505092915050565b60006200024e8262000255565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620002808162000241565b81146200028c57600080fd5b50565b611f9a806200029f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80635dbe47e8116100a2578063ca0b187811610071578063ca0b18781461033f578063d547741f1461036f578063d7d56f211461038b578063e0886f90146103a9578063e50d67d1146103da57610116565b80635dbe47e81461029157806391d14854146102c1578063a217fddf146102f1578063c2bc2efc1461030f57610116565b806329092d0e116100e957806329092d0e146101c95780632f2ff15d146101f95780633621da9b1461021557806336568abe146102455780633ba97cf11461026157610116565b806301ffc9a71461011b5780630a3b0a4f1461014b5780631f7b6d321461017b578063248a9ca314610199575b600080fd5b61013560048036038101906101309190611813565b61040a565b60405161014291906119f8565b60405180910390f35b6101656004803603810190610160919061168f565b610484565b60405161017291906119f8565b60405180910390f35b610183610501565b6040516101909190611b30565b60405180910390f35b6101b360048036038101906101ae91906117ae565b610512565b6040516101c09190611a13565b60405180910390f35b6101e360048036038101906101de919061168f565b610531565b6040516101f091906119f8565b60405180910390f35b610213600480360381019061020e91906117d7565b6105ac565b005b61022f600480360381019061022a91906116f4565b610612565b60405161023c9190611b30565b60405180910390f35b61025f600480360381019061025a91906117d7565b610714565b005b61027b60048036038101906102769190611739565b610797565b6040516102889190611b30565b60405180910390f35b6102ab60048036038101906102a6919061168f565b610923565b6040516102b891906119f8565b60405180910390f35b6102db60048036038101906102d691906117d7565b610940565b6040516102e891906119f8565b60405180910390f35b6102f96109aa565b6040516103069190611a13565b60405180910390f35b6103296004803603810190610324919061168f565b6109b1565b6040516103369190611b30565b60405180910390f35b610359600480360381019061035491906116b8565b6109ee565b60405161036691906119f8565b60405180910390f35b610389600480360381019061038491906117d7565b610a6b565b005b610393610ad1565b6040516103a09190611a13565b60405180910390f35b6103c360048036038101906103be919061183c565b610af5565b6040516103d19291906119cf565b60405180910390f35b6103f460048036038101906103ef91906116f4565b610b15565b6040516104019190611b30565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047d575061047c82610c19565b5b9050919050565b60006104b07f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b6104ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e690611ab0565b60405180910390fd5b6104fa826001610c83565b9050919050565b600061050d6001610d85565b905090565b6000806000838152602001908152602001600020600101549050919050565b600061055d7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b61059c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059390611ab0565b60405180910390fd5b6105a582610d9a565b9050919050565b6105c56105b883610512565b6105c0610e28565b610940565b610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90611a50565b60405180910390fd5b61060e8282610e30565b5050565b600061063e7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b61067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067490611ab0565b60405180910390fd5b6000805b84849050811015610709576106e28585838181106106c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906106dd919061168f565b610d9a565b156106f65781806106f290611ca2565b9250505b808061070190611ca2565b915050610681565b508091505092915050565b61071c610e28565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090611b10565b60405180910390fd5b6107938282610f10565b5050565b60006107c37f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990611ab0565b60405180910390fd5b82829050858590501461084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190611af0565b60405180910390fd5b6000805b86869050811015610916576108ef878783818110610895577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906108aa919061168f565b8686848181106108e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135610c83565b156109035781806108ff90611ca2565b9250505b808061090e90611ca2565b91505061084e565b5080915050949350505050565b6000610939826001610ff190919063ffffffff16565b9050919050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60006109c7826001610ff190919063ffffffff16565b6109d25760006109e7565b6109e682600161102190919063ffffffff16565b5b9050919050565b6000610a1a7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611ab0565b60405180910390fd5b610a638383610c83565b905092915050565b610a84610a7783610512565b610a7f610e28565b610940565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90611a70565b60405180910390fd5b610acd8282610f10565b5050565b7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a681565b600080610b0c83600161105490919063ffffffff16565b91509150915091565b6000610b417f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790611ab0565b60405180910390fd5b6000805b84849050811015610c0e57610be7858583818110610bcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610be0919061168f565b6001610c83565b15610bfb578180610bf790611ca2565b9250505b8080610c0690611ca2565b915050610b84565b508091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080821415610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90611ad0565b60405180910390fd5b610cdc836001610ff190919063ffffffff16565b1580610cfb575081610cf884600161102190919063ffffffff16565b14155b15610d7a57610d16838360016110809092919063ffffffff16565b503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f53d43647b4e7165b1dd70c590a9244d650c4d257cbb62b799357578e780579ad60405160405180910390a360019050610d7f565b600090505b92915050565b6000610d93826000016110b5565b9050919050565b600080610db18360016110c690919063ffffffff16565b90508015610e1d573373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f14c03038f91513ea128893e8d0865b80359ca07b96f819269baebe06732bb4ad60405160405180910390a36001915050610e23565b60009150505b919050565b600033905090565b610e3a8282610940565b610f0c57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610eb1610e28565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b610f1a8282610940565b15610fed57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f92610e28565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611019836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6110f6565b905092915050565b6000611049836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611119565b60001c905092915050565b6000806000806110678660000186611163565b915091508160001c8160001c9350935050509250929050565b60006110ac846000018473ffffffffffffffffffffffffffffffffffffffff1660001b8460001b611213565b90509392505050565b600081600001805490509050919050565b60006110ee836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611325565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600061115b83836040518060400160405280601e81526020017f456e756d657261626c654d61703a206e6f6e6578697374656e74206b657900008152506114e0565b905092915050565b600080828460000180549050116111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690611a90565b60405180910390fd5b60008460000184815481106111ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114156112ba5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061131e565b82856000016001836112cc9190611bbd565b81548110611303577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146114d45760006001826113579190611bbd565b905060006001866000018054905061136f9190611bbd565b905060008660000182815481106113af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202019050808760000184815481106113fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600082015481600001556001820154816001015590505060018361142e9190611b67565b876001016000836000015481526020019081526020016000208190555086600001805480611485577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506114da565b60009150505b92915050565b60008084600101600085815260200190815260200160002054905060008114158390611542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115399190611a2e565b60405180910390fd5b50846000016001826115549190611bbd565b8154811061158b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6000813590506115b681611f08565b92915050565b60008083601f8401126115ce57600080fd5b8235905067ffffffffffffffff8111156115e757600080fd5b6020830191508360208202830111156115ff57600080fd5b9250929050565b60008083601f84011261161857600080fd5b8235905067ffffffffffffffff81111561163157600080fd5b60208301915083602082028301111561164957600080fd5b9250929050565b60008135905061165f81611f1f565b92915050565b60008135905061167481611f36565b92915050565b60008135905061168981611f4d565b92915050565b6000602082840312156116a157600080fd5b60006116af848285016115a7565b91505092915050565b600080604083850312156116cb57600080fd5b60006116d9858286016115a7565b92505060206116ea8582860161167a565b9150509250929050565b6000806020838503121561170757600080fd5b600083013567ffffffffffffffff81111561172157600080fd5b61172d858286016115bc565b92509250509250929050565b6000806000806040858703121561174f57600080fd5b600085013567ffffffffffffffff81111561176957600080fd5b611775878288016115bc565b9450945050602085013567ffffffffffffffff81111561179457600080fd5b6117a087828801611606565b925092505092959194509250565b6000602082840312156117c057600080fd5b60006117ce84828501611650565b91505092915050565b600080604083850312156117ea57600080fd5b60006117f885828601611650565b9250506020611809858286016115a7565b9150509250929050565b60006020828403121561182557600080fd5b600061183384828501611665565b91505092915050565b60006020828403121561184e57600080fd5b600061185c8482850161167a565b91505092915050565b61186e81611bf1565b82525050565b61187d81611c03565b82525050565b61188c81611c0f565b82525050565b600061189d82611b4b565b6118a78185611b56565b93506118b7818560208601611c6f565b6118c081611d1a565b840191505092915050565b60006118d8602f83611b56565b91506118e382611d2b565b604082019050919050565b60006118fb603083611b56565b915061190682611d7a565b604082019050919050565b600061191e602283611b56565b915061192982611dc9565b604082019050919050565b6000611941601c83611b56565b915061194c82611e18565b602082019050919050565b6000611964601f83611b56565b915061196f82611e41565b602082019050919050565b6000611987602b83611b56565b915061199282611e6a565b604082019050919050565b60006119aa602f83611b56565b91506119b582611eb9565b604082019050919050565b6119c981611c65565b82525050565b60006040820190506119e46000830185611865565b6119f160208301846119c0565b9392505050565b6000602082019050611a0d6000830184611874565b92915050565b6000602082019050611a286000830184611883565b92915050565b60006020820190508181036000830152611a488184611892565b905092915050565b60006020820190508181036000830152611a69816118cb565b9050919050565b60006020820190508181036000830152611a89816118ee565b9050919050565b60006020820190508181036000830152611aa981611911565b9050919050565b60006020820190508181036000830152611ac981611934565b9050919050565b60006020820190508181036000830152611ae981611957565b9050919050565b60006020820190508181036000830152611b098161197a565b9050919050565b60006020820190508181036000830152611b298161199d565b9050919050565b6000602082019050611b4560008301846119c0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b7282611c65565b9150611b7d83611c65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bb257611bb1611ceb565b5b828201905092915050565b6000611bc882611c65565b9150611bd383611c65565b925082821015611be657611be5611ceb565b5b828203905092915050565b6000611bfc82611c45565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611c8d578082015181840152602081019050611c72565b83811115611c9c576000848401525b50505050565b6000611cad82611c65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611ce057611cdf611ceb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53656e646572206c61636b73204c4953545f41444d494e20726f6c6500000000600082015250565b7f4d657461646174612076616c756520762063616e6e6f74206265207a65726f00600082015250565b7f4164647265737320616e642076616c75652061727261792073697a6573206d7560008201527f737420626520657175616c000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b611f1181611bf1565b8114611f1c57600080fd5b50565b611f2881611c0f565b8114611f3357600080fd5b50565b611f3f81611c19565b8114611f4a57600080fd5b50565b611f5681611c65565b8114611f6157600080fd5b5056fea26469706673582212206dc626ce3a3e00a4110549acf095234db4ebe0e724680e106f7b8842b0606b9764736f6c63430008030033000000000000000000000000d1327dad5e8a94085e8702eacc7412d69f31d2b6

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80635dbe47e8116100a2578063ca0b187811610071578063ca0b18781461033f578063d547741f1461036f578063d7d56f211461038b578063e0886f90146103a9578063e50d67d1146103da57610116565b80635dbe47e81461029157806391d14854146102c1578063a217fddf146102f1578063c2bc2efc1461030f57610116565b806329092d0e116100e957806329092d0e146101c95780632f2ff15d146101f95780633621da9b1461021557806336568abe146102455780633ba97cf11461026157610116565b806301ffc9a71461011b5780630a3b0a4f1461014b5780631f7b6d321461017b578063248a9ca314610199575b600080fd5b61013560048036038101906101309190611813565b61040a565b60405161014291906119f8565b60405180910390f35b6101656004803603810190610160919061168f565b610484565b60405161017291906119f8565b60405180910390f35b610183610501565b6040516101909190611b30565b60405180910390f35b6101b360048036038101906101ae91906117ae565b610512565b6040516101c09190611a13565b60405180910390f35b6101e360048036038101906101de919061168f565b610531565b6040516101f091906119f8565b60405180910390f35b610213600480360381019061020e91906117d7565b6105ac565b005b61022f600480360381019061022a91906116f4565b610612565b60405161023c9190611b30565b60405180910390f35b61025f600480360381019061025a91906117d7565b610714565b005b61027b60048036038101906102769190611739565b610797565b6040516102889190611b30565b60405180910390f35b6102ab60048036038101906102a6919061168f565b610923565b6040516102b891906119f8565b60405180910390f35b6102db60048036038101906102d691906117d7565b610940565b6040516102e891906119f8565b60405180910390f35b6102f96109aa565b6040516103069190611a13565b60405180910390f35b6103296004803603810190610324919061168f565b6109b1565b6040516103369190611b30565b60405180910390f35b610359600480360381019061035491906116b8565b6109ee565b60405161036691906119f8565b60405180910390f35b610389600480360381019061038491906117d7565b610a6b565b005b610393610ad1565b6040516103a09190611a13565b60405180910390f35b6103c360048036038101906103be919061183c565b610af5565b6040516103d19291906119cf565b60405180910390f35b6103f460048036038101906103ef91906116f4565b610b15565b6040516104019190611b30565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047d575061047c82610c19565b5b9050919050565b60006104b07f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b6104ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e690611ab0565b60405180910390fd5b6104fa826001610c83565b9050919050565b600061050d6001610d85565b905090565b6000806000838152602001908152602001600020600101549050919050565b600061055d7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b61059c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059390611ab0565b60405180910390fd5b6105a582610d9a565b9050919050565b6105c56105b883610512565b6105c0610e28565b610940565b610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90611a50565b60405180910390fd5b61060e8282610e30565b5050565b600061063e7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b61067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067490611ab0565b60405180910390fd5b6000805b84849050811015610709576106e28585838181106106c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906106dd919061168f565b610d9a565b156106f65781806106f290611ca2565b9250505b808061070190611ca2565b915050610681565b508091505092915050565b61071c610e28565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090611b10565b60405180910390fd5b6107938282610f10565b5050565b60006107c37f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990611ab0565b60405180910390fd5b82829050858590501461084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190611af0565b60405180910390fd5b6000805b86869050811015610916576108ef878783818110610895577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906108aa919061168f565b8686848181106108e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135610c83565b156109035781806108ff90611ca2565b9250505b808061090e90611ca2565b91505061084e565b5080915050949350505050565b6000610939826001610ff190919063ffffffff16565b9050919050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60006109c7826001610ff190919063ffffffff16565b6109d25760006109e7565b6109e682600161102190919063ffffffff16565b5b9050919050565b6000610a1a7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611ab0565b60405180910390fd5b610a638383610c83565b905092915050565b610a84610a7783610512565b610a7f610e28565b610940565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90611a70565b60405180910390fd5b610acd8282610f10565b5050565b7f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a681565b600080610b0c83600161105490919063ffffffff16565b91509150915091565b6000610b417f679f35d3aa86a98333c7fc7439a0bc12a13be742ae62a4c1cc3820782a2e11a633610940565b610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790611ab0565b60405180910390fd5b6000805b84849050811015610c0e57610be7858583818110610bcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610be0919061168f565b6001610c83565b15610bfb578180610bf790611ca2565b9250505b8080610c0690611ca2565b915050610b84565b508091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080821415610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90611ad0565b60405180910390fd5b610cdc836001610ff190919063ffffffff16565b1580610cfb575081610cf884600161102190919063ffffffff16565b14155b15610d7a57610d16838360016110809092919063ffffffff16565b503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f53d43647b4e7165b1dd70c590a9244d650c4d257cbb62b799357578e780579ad60405160405180910390a360019050610d7f565b600090505b92915050565b6000610d93826000016110b5565b9050919050565b600080610db18360016110c690919063ffffffff16565b90508015610e1d573373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f14c03038f91513ea128893e8d0865b80359ca07b96f819269baebe06732bb4ad60405160405180910390a36001915050610e23565b60009150505b919050565b600033905090565b610e3a8282610940565b610f0c57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610eb1610e28565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b610f1a8282610940565b15610fed57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f92610e28565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611019836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6110f6565b905092915050565b6000611049836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611119565b60001c905092915050565b6000806000806110678660000186611163565b915091508160001c8160001c9350935050509250929050565b60006110ac846000018473ffffffffffffffffffffffffffffffffffffffff1660001b8460001b611213565b90509392505050565b600081600001805490509050919050565b60006110ee836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611325565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600061115b83836040518060400160405280601e81526020017f456e756d657261626c654d61703a206e6f6e6578697374656e74206b657900008152506114e0565b905092915050565b600080828460000180549050116111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690611a90565b60405180910390fd5b60008460000184815481106111ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114156112ba5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061131e565b82856000016001836112cc9190611bbd565b81548110611303577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146114d45760006001826113579190611bbd565b905060006001866000018054905061136f9190611bbd565b905060008660000182815481106113af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202019050808760000184815481106113fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600082015481600001556001820154816001015590505060018361142e9190611b67565b876001016000836000015481526020019081526020016000208190555086600001805480611485577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506114da565b60009150505b92915050565b60008084600101600085815260200190815260200160002054905060008114158390611542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115399190611a2e565b60405180910390fd5b50846000016001826115549190611bbd565b8154811061158b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6000813590506115b681611f08565b92915050565b60008083601f8401126115ce57600080fd5b8235905067ffffffffffffffff8111156115e757600080fd5b6020830191508360208202830111156115ff57600080fd5b9250929050565b60008083601f84011261161857600080fd5b8235905067ffffffffffffffff81111561163157600080fd5b60208301915083602082028301111561164957600080fd5b9250929050565b60008135905061165f81611f1f565b92915050565b60008135905061167481611f36565b92915050565b60008135905061168981611f4d565b92915050565b6000602082840312156116a157600080fd5b60006116af848285016115a7565b91505092915050565b600080604083850312156116cb57600080fd5b60006116d9858286016115a7565b92505060206116ea8582860161167a565b9150509250929050565b6000806020838503121561170757600080fd5b600083013567ffffffffffffffff81111561172157600080fd5b61172d858286016115bc565b92509250509250929050565b6000806000806040858703121561174f57600080fd5b600085013567ffffffffffffffff81111561176957600080fd5b611775878288016115bc565b9450945050602085013567ffffffffffffffff81111561179457600080fd5b6117a087828801611606565b925092505092959194509250565b6000602082840312156117c057600080fd5b60006117ce84828501611650565b91505092915050565b600080604083850312156117ea57600080fd5b60006117f885828601611650565b9250506020611809858286016115a7565b9150509250929050565b60006020828403121561182557600080fd5b600061183384828501611665565b91505092915050565b60006020828403121561184e57600080fd5b600061185c8482850161167a565b91505092915050565b61186e81611bf1565b82525050565b61187d81611c03565b82525050565b61188c81611c0f565b82525050565b600061189d82611b4b565b6118a78185611b56565b93506118b7818560208601611c6f565b6118c081611d1a565b840191505092915050565b60006118d8602f83611b56565b91506118e382611d2b565b604082019050919050565b60006118fb603083611b56565b915061190682611d7a565b604082019050919050565b600061191e602283611b56565b915061192982611dc9565b604082019050919050565b6000611941601c83611b56565b915061194c82611e18565b602082019050919050565b6000611964601f83611b56565b915061196f82611e41565b602082019050919050565b6000611987602b83611b56565b915061199282611e6a565b604082019050919050565b60006119aa602f83611b56565b91506119b582611eb9565b604082019050919050565b6119c981611c65565b82525050565b60006040820190506119e46000830185611865565b6119f160208301846119c0565b9392505050565b6000602082019050611a0d6000830184611874565b92915050565b6000602082019050611a286000830184611883565b92915050565b60006020820190508181036000830152611a488184611892565b905092915050565b60006020820190508181036000830152611a69816118cb565b9050919050565b60006020820190508181036000830152611a89816118ee565b9050919050565b60006020820190508181036000830152611aa981611911565b9050919050565b60006020820190508181036000830152611ac981611934565b9050919050565b60006020820190508181036000830152611ae981611957565b9050919050565b60006020820190508181036000830152611b098161197a565b9050919050565b60006020820190508181036000830152611b298161199d565b9050919050565b6000602082019050611b4560008301846119c0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b7282611c65565b9150611b7d83611c65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bb257611bb1611ceb565b5b828201905092915050565b6000611bc882611c65565b9150611bd383611c65565b925082821015611be657611be5611ceb565b5b828203905092915050565b6000611bfc82611c45565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611c8d578082015181840152602081019050611c72565b83811115611c9c576000848401525b50505050565b6000611cad82611c65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611ce057611cdf611ceb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53656e646572206c61636b73204c4953545f41444d494e20726f6c6500000000600082015250565b7f4d657461646174612076616c756520762063616e6e6f74206265207a65726f00600082015250565b7f4164647265737320616e642076616c75652061727261792073697a6573206d7560008201527f737420626520657175616c000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b611f1181611bf1565b8114611f1c57600080fd5b50565b611f2881611c0f565b8114611f3357600080fd5b50565b611f3f81611c19565b8114611f4a57600080fd5b50565b611f5681611c65565b8114611f6157600080fd5b5056fea26469706673582212206dc626ce3a3e00a4110549acf095234db4ebe0e724680e106f7b8842b0606b9764736f6c63430008030033

Deployed Bytecode Sourcemap

20258:3882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6413:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21727:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21291:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7050:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23011:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7435:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23176:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8654:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22432:531;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21137:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6722:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5178:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21478:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21882:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7912:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20433:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20955:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;22067:303;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6413:217;6498:4;6537:32;6522:47;;;:11;:47;;;;:100;;;;6586:36;6610:11;6586:23;:36::i;:::-;6522:100;6515:107;;6413:217;;;:::o;21727:107::-;21792:4;20546:31;20470:23;20566:10;20546:7;:31::i;:::-;20538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;21816:10:::1;21821:1;21824;21816:4;:10::i;:::-;21809:17;;21727:107:::0;;;:::o;21291:101::-;21341:7;21368:16;:7;:14;:16::i;:::-;21361:23;;21291:101;:::o;7050:123::-;7116:7;7143:6;:12;7150:4;7143:12;;;;;;;;;;;:22;;;7136:29;;7050:123;;;:::o;23011:110::-;23079:4;20546:31;20470:23;20566:10;20546:7;:31::i;:::-;20538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23103:10:::1;23111:1;23103:7;:10::i;:::-;23096:17;;23011:110:::0;;;:::o;7435:232::-;7528:41;7536:18;7549:4;7536:12;:18::i;:::-;7556:12;:10;:12::i;:::-;7528:7;:41::i;:::-;7520:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;7634:25;7645:4;7651:7;7634:10;:25::i;:::-;7435:232;;:::o;23176:306::-;23264:7;20546:31;20470:23;20566:10;20546:7;:31::i;:::-;20538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23284:15:::1;23319:9:::0;23314:136:::1;23338:5;;:12;;23334:1;:16;23314:136;;;23376:17;23384:5;;23390:1;23384:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23376:7;:17::i;:::-;23372:67;;;23414:9;;;;;:::i;:::-;;;;23372:67;23352:3;;;;;:::i;:::-;;;;23314:136;;;;23467:7;23460:14;;;23176:306:::0;;;;:::o;8654:218::-;8761:12;:10;:12::i;:::-;8750:23;;:7;:23;;;8742:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;8838:26;8850:4;8856:7;8838:11;:26::i;:::-;8654:218;;:::o;22432:531::-;22585:7;20546:31;20470:23;20566:10;20546:7;:31::i;:::-;20538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22685:6:::1;;:13;;22669:5;;:12;;:29;22661:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;22757:15;22792:9:::0;22787:144:::1;22811:5;;:12;;22807:1;:16;22787:144;;;22849:25;22854:5;;22860:1;22854:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22864:6;;22871:1;22864:9;;;;;;;;;;;;;;;;;;;;;22849:4;:25::i;:::-;22845:75;;;22895:9;;;;;:::i;:::-;;;;22845:75;22825:3;;;;;:::i;:::-;;;;22787:144;;;;22948:7;22941:14;;;22432:531:::0;;;;;;:::o;21137:112::-;21198:4;21222:19;21239:1;21222:7;:16;;:19;;;;:::i;:::-;21215:26;;21137:112;;;:::o;6722:139::-;6800:4;6824:6;:12;6831:4;6824:12;;;;;;;;;;;:20;;:29;6845:7;6824:29;;;;;;;;;;;;;;;;;;;;;;;;;6817:36;;6722:139;;;;:::o;5178:49::-;5223:4;5178:49;;;:::o;21478:131::-;21534:7;21561:19;21578:1;21561:7;:16;;:19;;;;:::i;:::-;:40;;21600:1;21561:40;;;21583:14;21595:1;21583:7;:11;;:14;;;;:::i;:::-;21561:40;21554:47;;21478:131;;;:::o;21882:123::-;21963:4;20546:31;20470:23;20566:10;20546:7;:31::i;:::-;20538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;21987:10:::1;21992:1;21995;21987:4;:10::i;:::-;21980:17;;21882:123:::0;;;;:::o;7912:235::-;8006:41;8014:18;8027:4;8014:12;:18::i;:::-;8034:12;:10;:12::i;:::-;8006:7;:41::i;:::-;7998:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;8113:26;8125:4;8131:7;8113:11;:26::i;:::-;7912:235;;:::o;20433:60::-;20470:23;20433:60;:::o;20955:120::-;21014:7;21023;21050:17;21061:5;21050:7;:10;;:17;;;;:::i;:::-;21043:24;;;;20955:120;;;:::o;22067:303::-;22152:7;20546:31;20470:23;20566:10;20546:7;:31::i;:::-;20538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22172:15:::1;22207:9:::0;22202:136:::1;22226:5;;:12;;22222:1;:16;22202:136;;;22264:17;22269:5;;22275:1;22269:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22279:1;22264:4;:17::i;:::-;22260:67;;;22302:9;;;;;:::i;:::-;;;;22260:67;22240:3;;;;;:::i;:::-;;;;22202:136;;;;22355:7;22348:14;;;22067:303:::0;;;;:::o;2640:157::-;2725:4;2764:25;2749:40;;;:11;:40;;;;2742:47;;2640:157;;;:::o;23561:331::-;23614:4;23644:1;23639;:6;;23631:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;23697:19;23714:1;23697:7;:16;;:19;;;;:::i;:::-;23696:20;:43;;;;23738:1;23720:14;23732:1;23720:7;:11;;:14;;;;:::i;:::-;:19;;23696:43;23692:168;;;23756:17;23768:1;23771;23756:7;:11;;:17;;;;;:::i;:::-;;23811:10;23793:29;;23808:1;23793:29;;;;;;;;;;;;23844:4;23837:11;;;;23692:168;23879:5;23872:12;;23561:331;;;;;:::o;18789:123::-;18858:7;18885:19;18893:3;:10;;18885:7;:19::i;:::-;18878:26;;18789:123;;;:::o;23900:237::-;23945:4;23962:12;23977:17;23992:1;23977:7;:14;;:17;;;;:::i;:::-;23962:32;;24009:7;24005:100;;;24056:10;24038:29;;24053:1;24038:29;;;;;;;;;;;;24089:4;24082:11;;;;;24005:100;24124:5;24117:12;;;23900:237;;;;:::o;655:98::-;708:7;735:10;728:17;;655:98;:::o;9902:229::-;9977:22;9985:4;9991:7;9977;:22::i;:::-;9972:152;;10048:4;10016:6;:12;10023:4;10016:12;;;;;;;;;;;:20;;:29;10037:7;10016:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;10099:12;:10;:12::i;:::-;10072:40;;10090:7;10072:40;;10084:4;10072:40;;;;;;;;;;9972:152;9902:229;;:::o;10139:230::-;10214:22;10222:4;10228:7;10214;:22::i;:::-;10210:152;;;10285:5;10253:6;:12;10260:4;10253:12;;;;;;;;;;;:20;;:29;10274:7;10253:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;10337:12;:10;:12::i;:::-;10310:40;;10328:7;10310:40;;10322:4;10310:40;;;;;;;;;;10210:152;10139:230;;:::o;18532:169::-;18616:4;18640:53;18650:3;:10;;18686:3;18670:21;;18662:30;;18640:9;:53::i;:::-;18633:60;;18532:169;;;;:::o;19657:171::-;19736:7;19771:48;19776:3;:10;;19812:3;19796:21;;19788:30;;19771:4;:48::i;:::-;19763:57;;19756:64;;19657:171;;;;:::o;19260:236::-;19340:7;19349;19370:11;19383:13;19400:22;19404:3;:10;;19416:5;19400:3;:22::i;:::-;19369:53;;;;19465:3;19457:12;;19481:5;19473:14;;19433:55;;;;;;19260:236;;;;;:::o;17903:219::-;18026:4;18050:64;18055:3;:10;;18091:3;18075:21;;18067:30;;18107:5;18099:14;;18050:4;:64::i;:::-;18043:71;;17903:219;;;;;:::o;15998:110::-;16054:7;16081:3;:12;;:19;;;;16074:26;;15998:110;;;:::o;18288:160::-;18365:4;18389:51;18397:3;:10;;18433:3;18417:21;;18409:30;;18389:7;:51::i;:::-;18382:58;;18288:160;;;;:::o;15778:125::-;15849:4;15894:1;15873:3;:12;;:17;15886:3;15873:17;;;;;;;;;;;;:22;;15866:29;;15778:125;;;;:::o;16964:149::-;17030:7;17057:48;17062:3;17067;17057:48;;;;;;;;;;;;;;;;;:4;:48::i;:::-;17050:55;;16964:149;;;;:::o;16473:330::-;16540:7;16549;16650:5;16628:3;:12;;:19;;;;:27;16620:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16707:22;16732:3;:12;;16745:5;16732:19;;;;;;;;;;;;;;;;;;;;;;;;;;16707:44;;16770:5;:10;;;16782:5;:12;;;16762:33;;;;;16473:330;;;;;:::o;13220:737::-;13330:4;13446:16;13465:3;:12;;:17;13478:3;13465:17;;;;;;;;;;;;13446:36;;13511:1;13499:8;:13;13495:455;;;13579:3;:12;;13597:36;;;;;;;;13613:3;13597:36;;;;13626:5;13597:36;;;13579:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13792:3;:12;;:19;;;;13772:3;:12;;:17;13785:3;13772:17;;;;;;;;;;;:39;;;;13833:4;13826:11;;;;;13495:455;13906:5;13870:3;:12;;13894:1;13883:8;:12;;;;:::i;:::-;13870:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;:41;;;;13933:5;13926:12;;;13220:737;;;;;;:::o;14132:1562::-;14196:4;14312:16;14331:3;:12;;:17;14344:3;14331:17;;;;;;;;;;;;14312:36;;14377:1;14365:8;:13;14361:1326;;14739:21;14774:1;14763:8;:12;;;;:::i;:::-;14739:36;;14790:17;14832:1;14810:3;:12;;:19;;;;:23;;;;:::i;:::-;14790:43;;15078:26;15107:3;:12;;15120:9;15107:23;;;;;;;;;;;;;;;;;;;;;;;;;;15078:52;;15255:9;15225:3;:12;;15238:13;15225:27;;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;15379:1;15363:13;:17;;;;:::i;:::-;15332:3;:12;;:28;15345:9;:14;;;15332:28;;;;;;;;;;;:48;;;;15489:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15585:3;:12;;:17;15598:3;15585:17;;;;;;;;;;;15578:24;;;15626:4;15619:11;;;;;;;;14361:1326;15670:5;15663:12;;;14132:1562;;;;;:::o;17226:353::-;17354:7;17374:16;17393:3;:12;;:17;17406:3;17393:17;;;;;;;;;;;;17374:36;;17441:1;17429:8;:13;;17444:12;17421:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17511:3;:12;;17535:1;17524:8;:12;;;;:::i;:::-;17511:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;17504:40;;;17226:353;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;559:367::-;;;692:3;685:4;677:6;673:17;669:27;659:2;;710:1;707;700:12;659:2;746:6;733:20;723:30;;776:18;768:6;765:30;762:2;;;808:1;805;798:12;762:2;845:4;837:6;833:17;821:29;;899:3;891:4;883:6;879:17;869:8;865:32;862:41;859:2;;;916:1;913;906:12;859:2;649:277;;;;;:::o;932:139::-;;1016:6;1003:20;994:29;;1032:33;1059:5;1032:33;:::i;:::-;984:87;;;;:::o;1077:137::-;;1160:6;1147:20;1138:29;;1176:32;1202:5;1176:32;:::i;:::-;1128:86;;;;:::o;1220:139::-;;1304:6;1291:20;1282:29;;1320:33;1347:5;1320:33;:::i;:::-;1272:87;;;;:::o;1365:262::-;;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1489:1;1486;1479:12;1441:2;1532:1;1557:53;1602:7;1593:6;1582:9;1578:22;1557:53;:::i;:::-;1547:63;;1503:117;1431:196;;;;:::o;1633:407::-;;;1758:2;1746:9;1737:7;1733:23;1729:32;1726:2;;;1774:1;1771;1764:12;1726:2;1817:1;1842:53;1887:7;1878:6;1867:9;1863:22;1842:53;:::i;:::-;1832:63;;1788:117;1944:2;1970:53;2015:7;2006:6;1995:9;1991:22;1970:53;:::i;:::-;1960:63;;1915:118;1716:324;;;;;:::o;2046:425::-;;;2189:2;2177:9;2168:7;2164:23;2160:32;2157:2;;;2205:1;2202;2195:12;2157:2;2276:1;2265:9;2261:17;2248:31;2306:18;2298:6;2295:30;2292:2;;;2338:1;2335;2328:12;2292:2;2374:80;2446:7;2437:6;2426:9;2422:22;2374:80;:::i;:::-;2356:98;;;;2219:245;2147:324;;;;;:::o;2477:733::-;;;;;2672:2;2660:9;2651:7;2647:23;2643:32;2640:2;;;2688:1;2685;2678:12;2640:2;2759:1;2748:9;2744:17;2731:31;2789:18;2781:6;2778:30;2775:2;;;2821:1;2818;2811:12;2775:2;2857:80;2929:7;2920:6;2909:9;2905:22;2857:80;:::i;:::-;2839:98;;;;2702:245;3014:2;3003:9;2999:18;2986:32;3045:18;3037:6;3034:30;3031:2;;;3077:1;3074;3067:12;3031:2;3113:80;3185:7;3176:6;3165:9;3161:22;3113:80;:::i;:::-;3095:98;;;;2957:246;2630:580;;;;;;;:::o;3216:262::-;;3324:2;3312:9;3303:7;3299:23;3295:32;3292:2;;;3340:1;3337;3330:12;3292:2;3383:1;3408:53;3453:7;3444:6;3433:9;3429:22;3408:53;:::i;:::-;3398:63;;3354:117;3282:196;;;;:::o;3484:407::-;;;3609:2;3597:9;3588:7;3584:23;3580:32;3577:2;;;3625:1;3622;3615:12;3577:2;3668:1;3693:53;3738:7;3729:6;3718:9;3714:22;3693:53;:::i;:::-;3683:63;;3639:117;3795:2;3821:53;3866:7;3857:6;3846:9;3842:22;3821:53;:::i;:::-;3811:63;;3766:118;3567:324;;;;;:::o;3897:260::-;;4004:2;3992:9;3983:7;3979:23;3975:32;3972:2;;;4020:1;4017;4010:12;3972:2;4063:1;4088:52;4132:7;4123:6;4112:9;4108:22;4088:52;:::i;:::-;4078:62;;4034:116;3962:195;;;;:::o;4163:262::-;;4271:2;4259:9;4250:7;4246:23;4242:32;4239:2;;;4287:1;4284;4277:12;4239:2;4330:1;4355:53;4400:7;4391:6;4380:9;4376:22;4355:53;:::i;:::-;4345:63;;4301:117;4229:196;;;;:::o;4431:118::-;4518:24;4536:5;4518:24;:::i;:::-;4513:3;4506:37;4496:53;;:::o;4555:109::-;4636:21;4651:5;4636:21;:::i;:::-;4631:3;4624:34;4614:50;;:::o;4670:118::-;4757:24;4775:5;4757:24;:::i;:::-;4752:3;4745:37;4735:53;;:::o;4794:364::-;;4910:39;4943:5;4910:39;:::i;:::-;4965:71;5029:6;5024:3;4965:71;:::i;:::-;4958:78;;5045:52;5090:6;5085:3;5078:4;5071:5;5067:16;5045:52;:::i;:::-;5122:29;5144:6;5122:29;:::i;:::-;5117:3;5113:39;5106:46;;4886:272;;;;;:::o;5164:366::-;;5327:67;5391:2;5386:3;5327:67;:::i;:::-;5320:74;;5403:93;5492:3;5403:93;:::i;:::-;5521:2;5516:3;5512:12;5505:19;;5310:220;;;:::o;5536:366::-;;5699:67;5763:2;5758:3;5699:67;:::i;:::-;5692:74;;5775:93;5864:3;5775:93;:::i;:::-;5893:2;5888:3;5884:12;5877:19;;5682:220;;;:::o;5908:366::-;;6071:67;6135:2;6130:3;6071:67;:::i;:::-;6064:74;;6147:93;6236:3;6147:93;:::i;:::-;6265:2;6260:3;6256:12;6249:19;;6054:220;;;:::o;6280:366::-;;6443:67;6507:2;6502:3;6443:67;:::i;:::-;6436:74;;6519:93;6608:3;6519:93;:::i;:::-;6637:2;6632:3;6628:12;6621:19;;6426:220;;;:::o;6652:366::-;;6815:67;6879:2;6874:3;6815:67;:::i;:::-;6808:74;;6891:93;6980:3;6891:93;:::i;:::-;7009:2;7004:3;7000:12;6993:19;;6798:220;;;:::o;7024:366::-;;7187:67;7251:2;7246:3;7187:67;:::i;:::-;7180:74;;7263:93;7352:3;7263:93;:::i;:::-;7381:2;7376:3;7372:12;7365:19;;7170:220;;;:::o;7396:366::-;;7559:67;7623:2;7618:3;7559:67;:::i;:::-;7552:74;;7635:93;7724:3;7635:93;:::i;:::-;7753:2;7748:3;7744:12;7737:19;;7542:220;;;:::o;7768:118::-;7855:24;7873:5;7855:24;:::i;:::-;7850:3;7843:37;7833:53;;:::o;7892:332::-;;8051:2;8040:9;8036:18;8028:26;;8064:71;8132:1;8121:9;8117:17;8108:6;8064:71;:::i;:::-;8145:72;8213:2;8202:9;8198:18;8189:6;8145:72;:::i;:::-;8018:206;;;;;:::o;8230:210::-;;8355:2;8344:9;8340:18;8332:26;;8368:65;8430:1;8419:9;8415:17;8406:6;8368:65;:::i;:::-;8322:118;;;;:::o;8446:222::-;;8577:2;8566:9;8562:18;8554:26;;8590:71;8658:1;8647:9;8643:17;8634:6;8590:71;:::i;:::-;8544:124;;;;:::o;8674:313::-;;8825:2;8814:9;8810:18;8802:26;;8874:9;8868:4;8864:20;8860:1;8849:9;8845:17;8838:47;8902:78;8975:4;8966:6;8902:78;:::i;:::-;8894:86;;8792:195;;;;:::o;8993:419::-;;9197:2;9186:9;9182:18;9174:26;;9246:9;9240:4;9236:20;9232:1;9221:9;9217:17;9210:47;9274:131;9400:4;9274:131;:::i;:::-;9266:139;;9164:248;;;:::o;9418:419::-;;9622:2;9611:9;9607:18;9599:26;;9671:9;9665:4;9661:20;9657:1;9646:9;9642:17;9635:47;9699:131;9825:4;9699:131;:::i;:::-;9691:139;;9589:248;;;:::o;9843:419::-;;10047:2;10036:9;10032:18;10024:26;;10096:9;10090:4;10086:20;10082:1;10071:9;10067:17;10060:47;10124:131;10250:4;10124:131;:::i;:::-;10116:139;;10014:248;;;:::o;10268:419::-;;10472:2;10461:9;10457:18;10449:26;;10521:9;10515:4;10511:20;10507:1;10496:9;10492:17;10485:47;10549:131;10675:4;10549:131;:::i;:::-;10541:139;;10439:248;;;:::o;10693:419::-;;10897:2;10886:9;10882:18;10874:26;;10946:9;10940:4;10936:20;10932:1;10921:9;10917:17;10910:47;10974:131;11100:4;10974:131;:::i;:::-;10966:139;;10864:248;;;:::o;11118:419::-;;11322:2;11311:9;11307:18;11299:26;;11371:9;11365:4;11361:20;11357:1;11346:9;11342:17;11335:47;11399:131;11525:4;11399:131;:::i;:::-;11391:139;;11289:248;;;:::o;11543:419::-;;11747:2;11736:9;11732:18;11724:26;;11796:9;11790:4;11786:20;11782:1;11771:9;11767:17;11760:47;11824:131;11950:4;11824:131;:::i;:::-;11816:139;;11714:248;;;:::o;11968:222::-;;12099:2;12088:9;12084:18;12076:26;;12112:71;12180:1;12169:9;12165:17;12156:6;12112:71;:::i;:::-;12066:124;;;;:::o;12196:99::-;;12282:5;12276:12;12266:22;;12255:40;;;:::o;12301:169::-;;12419:6;12414:3;12407:19;12459:4;12454:3;12450:14;12435:29;;12397:73;;;;:::o;12476:305::-;;12535:20;12553:1;12535:20;:::i;:::-;12530:25;;12569:20;12587:1;12569:20;:::i;:::-;12564:25;;12723:1;12655:66;12651:74;12648:1;12645:81;12642:2;;;12729:18;;:::i;:::-;12642:2;12773:1;12770;12766:9;12759:16;;12520:261;;;;:::o;12787:191::-;;12847:20;12865:1;12847:20;:::i;:::-;12842:25;;12881:20;12899:1;12881:20;:::i;:::-;12876:25;;12920:1;12917;12914:8;12911:2;;;12925:18;;:::i;:::-;12911:2;12970:1;12967;12963:9;12955:17;;12832:146;;;;:::o;12984:96::-;;13050:24;13068:5;13050:24;:::i;:::-;13039:35;;13029:51;;;:::o;13086:90::-;;13163:5;13156:13;13149:21;13138:32;;13128:48;;;:::o;13182:77::-;;13248:5;13237:16;;13227:32;;;:::o;13265:149::-;;13341:66;13334:5;13330:78;13319:89;;13309:105;;;:::o;13420:126::-;;13497:42;13490:5;13486:54;13475:65;;13465:81;;;:::o;13552:77::-;;13618:5;13607:16;;13597:32;;;:::o;13635:307::-;13703:1;13713:113;13727:6;13724:1;13721:13;13713:113;;;13812:1;13807:3;13803:11;13797:18;13793:1;13788:3;13784:11;13777:39;13749:2;13746:1;13742:10;13737:15;;13713:113;;;13844:6;13841:1;13838:13;13835:2;;;13924:1;13915:6;13910:3;13906:16;13899:27;13835:2;13684:258;;;;:::o;13948:233::-;;14010:24;14028:5;14010:24;:::i;:::-;14001:33;;14056:66;14049:5;14046:77;14043:2;;;14126:18;;:::i;:::-;14043:2;14173:1;14166:5;14162:13;14155:20;;13991:190;;;:::o;14187:180::-;14235:77;14232:1;14225:88;14332:4;14329:1;14322:15;14356:4;14353:1;14346:15;14373:102;;14465:2;14461:7;14456:2;14449:5;14445:14;14441:28;14431:38;;14421:54;;;:::o;14481:234::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:17;14685:2;14677:6;14673:15;14666:42;14587:128;:::o;14721:235::-;14861:34;14857:1;14849:6;14845:14;14838:58;14930:18;14925:2;14917:6;14913:15;14906:43;14827:129;:::o;14962:221::-;15102:34;15098:1;15090:6;15086:14;15079:58;15171:4;15166:2;15158:6;15154:15;15147:29;15068:115;:::o;15189:178::-;15329:30;15325:1;15317:6;15313:14;15306:54;15295:72;:::o;15373:181::-;15513:33;15509:1;15501:6;15497:14;15490:57;15479:75;:::o;15560:230::-;15700:34;15696:1;15688:6;15684:14;15677:58;15769:13;15764:2;15756:6;15752:15;15745:38;15666:124;:::o;15796:234::-;15936:34;15932:1;15924:6;15920:14;15913:58;16005:17;16000:2;15992:6;15988:15;15981:42;15902:128;:::o;16036:122::-;16109:24;16127:5;16109:24;:::i;:::-;16102:5;16099:35;16089:2;;16148:1;16145;16138:12;16089:2;16079:79;:::o;16164:122::-;16237:24;16255:5;16237:24;:::i;:::-;16230:5;16227:35;16217:2;;16276:1;16273;16266:12;16217:2;16207:79;:::o;16292:120::-;16364:23;16381:5;16364:23;:::i;:::-;16357:5;16354:34;16344:2;;16402:1;16399;16392:12;16344:2;16334:78;:::o;16418:122::-;16491:24;16509:5;16491:24;:::i;:::-;16484:5;16481:35;16471:2;;16530:1;16527;16520:12;16471:2;16461:79;:::o

Swarm Source

ipfs://6dc626ce3a3e00a4110549acf095234db4ebe0e724680e106f7b8842b0606b97

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.