Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 41 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Burn Batch | 19270919 | 312 days ago | IN | 0 ETH | 0.00332882 | ||||
Set Approval For... | 18474903 | 424 days ago | IN | 0 ETH | 0.00076596 | ||||
Set Approval For... | 18473786 | 424 days ago | IN | 0 ETH | 0.00066475 | ||||
Safe Transfer Fr... | 16721430 | 670 days ago | IN | 0 ETH | 0.00142492 | ||||
Safe Transfer Fr... | 16717006 | 671 days ago | IN | 0 ETH | 0.00107593 | ||||
Set Approval For... | 16222693 | 740 days ago | IN | 0 ETH | 0.00079792 | ||||
Set Approval For... | 16222620 | 740 days ago | IN | 0 ETH | 0.00061483 | ||||
Safe Transfer Fr... | 16098263 | 757 days ago | IN | 0 ETH | 0.00077436 | ||||
Set Approval For... | 15414695 | 856 days ago | IN | 0 ETH | 0.00029164 | ||||
Set Approval For... | 15410126 | 856 days ago | IN | 0 ETH | 0.00065759 | ||||
Set Approval For... | 15410080 | 856 days ago | IN | 0 ETH | 0.00555519 | ||||
Set Approval For... | 15052640 | 912 days ago | IN | 0 ETH | 0.00128918 | ||||
Safe Transfer Fr... | 15050983 | 912 days ago | IN | 0 ETH | 0.00293983 | ||||
Set Approval For... | 15029516 | 916 days ago | IN | 0 ETH | 0.00138009 | ||||
Safe Transfer Fr... | 14898482 | 939 days ago | IN | 0 ETH | 0.00303704 | ||||
Safe Transfer Fr... | 14669700 | 976 days ago | IN | 0 ETH | 0.00311572 | ||||
Safe Transfer Fr... | 14519961 | 999 days ago | IN | 0 ETH | 0.00409034 | ||||
Set Approval For... | 14437296 | 1012 days ago | IN | 0 ETH | 0.00214568 | ||||
Safe Transfer Fr... | 14373395 | 1022 days ago | IN | 0 ETH | 0.00149168 | ||||
Set Approval For... | 14282670 | 1036 days ago | IN | 0 ETH | 0.0016745 | ||||
Safe Transfer Fr... | 14282659 | 1036 days ago | IN | 0 ETH | 0.00233686 | ||||
Set Approval For... | 14282649 | 1036 days ago | IN | 0 ETH | 0.001771 | ||||
Set Approval For... | 13980683 | 1083 days ago | IN | 0 ETH | 0.00835 | ||||
Set Approval For... | 13979168 | 1083 days ago | IN | 0 ETH | 0.01847922 | ||||
Safe Transfer Fr... | 13709510 | 1125 days ago | IN | 0 ETH | 0.00852072 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SpeculationsNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-20 */ // Speculations by Sarah Meyohas // www.sarahmeyohas.com // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/utils/ContextUpgradeable.sol /* * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } 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; } uint256[50] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/utils/introspection/IERC165Upgradeable.sol /** * @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 IERC165Upgradeable { /** * @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: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/utils/introspection/ERC165Upgradeable.sol /** * @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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/utils/StringsUpgradeable.sol /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/access/AccessControlUpgradeable.sol /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { 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 AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } 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 Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).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 Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ))); } } /** * @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 onlyRole(getRoleAdmin(role)) { _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 onlyRole(getRoleAdmin(role)) { _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()); } } uint256[49] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/utils/structs/EnumerableSetUpgradeable.sol /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value 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(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value 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(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value 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(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value 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(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/access/AccessControlEnumerableUpgradeable.sol /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerableUpgradeable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable { function __AccessControlEnumerable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); __AccessControlEnumerable_init_unchained(); } function __AccessControlEnumerable_init_unchained() internal initializer { } using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; mapping (bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } uint256[49] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/IERC1155Upgradeable.sol /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/extensions/IERC1155MetadataURIUpgradeable.sol /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURIUpgradeable is IERC1155Upgradeable { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/IERC1155ReceiverUpgradeable.sol /** * @dev _Available since v3.1._ */ interface IERC1155ReceiverUpgradeable is IERC165Upgradeable { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns(bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns(bytes4); } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/utils/AddressUpgradeable.sol /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/ERC1155Upgradeable.sol /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC1155Upgradeable, IERC1155MetadataURIUpgradeable { using AddressUpgradeable for address; // Mapping from token ID to account balances mapping (uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping (address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ function __ERC1155_init(string memory uri_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC1155_init_unchained(uri_); } function __ERC1155_init_unchained(string memory uri_) internal initializer { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC1155Upgradeable).interfaceId || interfaceId == type(IERC1155MetadataURIUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn(address account, uint256 id, uint256 amount) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { } function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155ReceiverUpgradeable(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) { if (response != IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } uint256[47] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/extensions/ERC1155BurnableUpgradeable.sol /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155BurnableUpgradeable is Initializable, ERC1155Upgradeable { function __ERC1155Burnable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC1155Burnable_init_unchained(); } function __ERC1155Burnable_init_unchained() internal initializer { } function burn(address account, uint256 id, uint256 value) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } uint256[50] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/security/PausableUpgradeable.sol /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/extensions/ERC1155PausableUpgradeable.sol /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155PausableUpgradeable is Initializable, ERC1155Upgradeable, PausableUpgradeable { function __ERC1155Pausable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __Pausable_init_unchained(); __ERC1155Pausable_init_unchained(); } function __ERC1155Pausable_init_unchained() internal initializer { } /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } uint256[50] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; } // File: .deps/github/OpenZeppelin/openzeppelin-contracts-upgradeable/contracts/token/ERC1155/presets/ERC1155PresetMinterPauserUpgradeable.sol /** * @dev {ERC1155} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract SpeculationsNFT is Initializable, ContextUpgradeable, AccessControlEnumerableUpgradeable, ERC1155BurnableUpgradeable, ERC1155PausableUpgradeable, OwnableUpgradeable { function initialize(string memory uri) public virtual initializer { __ERC1155PresetMinterPauser_init(uri); } bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that * deploys the contract. */ function __ERC1155PresetMinterPauser_init(string memory uri) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); __AccessControlEnumerable_init_unchained(); __Ownable_init_unchained(); __ERC1155_init_unchained(uri); __ERC1155Burnable_init_unchained(); __Pausable_init_unchained(); __ERC1155Pausable_init_unchained(); __ERC1155PresetMinterPauser_init_unchained(uri); } function __ERC1155PresetMinterPauser_init_unchained(string memory /*uri*/) internal initializer { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 id, uint256 amount, bytes memory data) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mint(to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}. */ function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mintBatch(to, ids, amounts, data); } function setURI(string memory _newURI) public onlyOwner { _setURI(_newURI); } /** * @dev Pauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause"); _unpause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerableUpgradeable, ERC1155Upgradeable) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155Upgradeable, ERC1155PausableUpgradeable) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } uint256[50] private __gap; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"string","name":"uri","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50615ff380620000216000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638456cb5911610104578063d5391393116100a2578063f242432a11610071578063f242432a1461053e578063f2fde38b1461055a578063f5298aca14610576578063f62d188814610592576101d9565b8063d5391393146104b6578063d547741f146104d4578063e63ab1e9146104f0578063e985e9c51461050e576101d9565b806391d14854116100de57806391d148541461041c578063a217fddf1461044c578063a22cb4651461046a578063ca15c87314610486576101d9565b80638456cb59146103c45780638da5cb5b146103ce5780639010d07c146103ec576101d9565b80632f2ff15d1161017c5780635c975abb1161014b5780635c975abb146103645780636b20c45414610382578063715018a61461039e578063731133e9146103a8576101d9565b80632f2ff15d146102f257806336568abe1461030e5780633f4ba83a1461032a5780634e1273f414610334576101d9565b80630e89341c116101b85780630e89341c1461025a5780631f7fdffa1461028a578063248a9ca3146102a65780632eb2c2d6146102d6576101d9565b8062fdd58e146101de57806301ffc9a71461020e57806302fe53051461023e575b600080fd5b6101f860048036038101906101f39190614570565b6105ae565b6040516102059190615235565b60405180910390f35b610228600480360381019061022391906147ab565b610678565b6040516102359190614edd565b60405180910390f35b61025860048036038101906102539190614805565b61068a565b005b610274600480360381019061026f919061484e565b610712565b6040516102819190614f13565b60405180910390f35b6102a4600480360381019061029f9190614475565b6107a6565b005b6102c060048036038101906102bb91906146fe565b610828565b6040516102cd9190614ef8565b60405180910390f35b6102f060048036038101906102eb9190614284565b610848565b005b61030c6004803603810190610307919061472b565b6108e9565b005b6103286004803603810190610323919061472b565b61091d565b005b610332610951565b005b61034e60048036038101906103499190614686565b6109cb565b60405161035b9190614e84565b60405180910390f35b61036c610ae4565b6040516103799190614edd565b60405180910390f35b61039c600480360381019061039791906143ea565b610afc565b005b6103a6610b99565b005b6103c260048036038101906103bd9190614603565b610cd8565b005b6103cc610d5a565b005b6103d6610dd4565b6040516103e39190614da7565b60405180910390f35b6104066004803603810190610401919061476b565b610dff565b6040516104139190614da7565b60405180910390f35b6104366004803603810190610431919061472b565b610e2e565b6040516104439190614edd565b60405180910390f35b610454610e99565b6040516104619190614ef8565b60405180910390f35b610484600480360381019061047f9190614530565b610ea0565b005b6104a0600480360381019061049b91906146fe565b611021565b6040516104ad9190615235565b60405180910390f35b6104be611045565b6040516104cb9190614ef8565b60405180910390f35b6104ee60048036038101906104e9919061472b565b611069565b005b6104f861109d565b6040516105059190614ef8565b60405180910390f35b61052860048036038101906105239190614244565b6110c1565b6040516105359190614edd565b60405180910390f35b61055860048036038101906105539190614353565b611155565b005b610574600480360381019061056f9190614217565b6111f6565b005b610590600480360381019061058b91906145b0565b6113a4565b005b6105ac60048036038101906105a79190614805565b611441565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690614fb5565b60405180910390fd5b60c9600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061068382611524565b9050919050565b610692611606565b73ffffffffffffffffffffffffffffffffffffffff166106b0610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd90615135565b60405180910390fd5b61070f8161160e565b50565b606060cb8054610721906155a2565b80601f016020809104026020016040519081016040528092919081815260200182805461074d906155a2565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b50505050509050919050565b6107d77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107d2611606565b610e2e565b610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d906150f5565b60405180910390fd5b61082284848484611628565b50505050565b600060656000838152602001908152602001600020600101549050919050565b610850611606565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610896575061089585610890611606565b6110c1565b5b6108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90615095565b60405180910390fd5b6108e28585858585611847565b5050505050565b6108f38282611b5e565b6109188160976000858152602001908152602001600020611b8790919063ffffffff16565b505050565b6109278282611bb7565b61094c8160976000858152602001908152602001600020611c3a90919063ffffffff16565b505050565b6109827f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61097d611606565b610e2e565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890615155565b60405180910390fd5b6109c9611c6a565b565b60608151835114610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906151b5565b60405180910390fd5b6000835167ffffffffffffffff811115610a2e57610a2d61570a565b5b604051908082528060200260200182016040528015610a5c5781602001602082028036833780820191505090505b50905060005b8451811015610ad957610aa9858281518110610a8157610a806156db565b5b6020026020010151858381518110610a9c57610a9b6156db565b5b60200260200101516105ae565b828281518110610abc57610abb6156db565b5b60200260200101818152505080610ad290615605565b9050610a62565b508091505092915050565b600061012d60009054906101000a900460ff16905090565b610b04611606565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610b4a5750610b4983610b44611606565b6110c1565b5b610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090615035565b60405180910390fd5b610b94838383611d0d565b505050565b610ba1611606565b73ffffffffffffffffffffffffffffffffffffffff16610bbf610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90615135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1661019160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600061019160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d097f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d04611606565b610e2e565b610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906150f5565b60405180910390fd5b610d5484848484611fc0565b50505050565b610d8b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d86611606565b610e2e565b610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190615175565b60405180910390fd5b610dd2612157565b565b600061019160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e2682609760008681526020019081526020016000206121fb90919063ffffffff16565b905092915050565b60006065600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610ebf611606565b73ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90615195565b60405180910390fd5b8060ca6000610f23611606565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fd0611606565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110159190614edd565b60405180910390a35050565b600061103e60976000848152602001908152602001600020612215565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611073828261222a565b6110988160976000858152602001908152602001600020611c3a90919063ffffffff16565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600060ca60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115d611606565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a357506111a28561119d611606565b6110c1565b5b6111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990615035565b60405180910390fd5b6111ef8585858585612253565b5050505050565b6111fe611606565b73ffffffffffffffffffffffffffffffffffffffff1661121c610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990615135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990614fd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661019160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38061019160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113ac611606565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113f257506113f1836113ec611606565b6110c1565b5b611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890615035565b60405180910390fd5b61143c8383836124d8565b505050565b600060019054906101000a900460ff1680611467575060008054906101000a900460ff16155b6114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156114f6576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6114ff826126f7565b80156115205760008060016101000a81548160ff0219169083151502179055505b5050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806115ef57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806115ff57506115fe82612823565b5b9050919050565b600033905090565b8060cb9080519060200190611624929190613eda565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906151f5565b60405180910390fd5b81518351146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d3906151d5565b60405180910390fd5b60006116e6611606565b90506116f78160008787878761289d565b60005b84518110156117b157838181518110611716576117156156db565b5b602002602001015160c96000878481518110611735576117346156db565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179791906153d4565b9250508190555080806117a990615605565b9150506116fa565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611829929190614ea6565b60405180910390a4611840816000878787876128b3565b5050505050565b815183511461188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906151d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290615075565b60405180910390fd5b6000611905611606565b905061191581878787878761289d565b60005b8451811015611ac9576000858281518110611936576119356156db565b5b602002602001015190506000858381518110611955576119546156db565b5b60200260200101519050600060c9600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90615115565b60405180910390fd5b81810360c9600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160c9600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aae91906153d4565b9250508190555050505080611ac290615605565b9050611918565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b40929190614ea6565b60405180910390a4611b568187878787876128b3565b505050505050565b611b6782610828565b611b7881611b73611606565b612a9a565b611b828383612b37565b505050565b6000611baf836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612c18565b905092915050565b611bbf611606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390615215565b60405180910390fd5b611c368282612c88565b5050565b6000611c62836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d6a565b905092915050565b611c72610ae4565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614f95565b60405180910390fd5b600061012d60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cf6611606565b604051611d039190614da7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906150d5565b60405180910390fd5b8051825114611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906151d5565b60405180910390fd5b6000611dcb611606565b9050611deb8185600086866040518060200160405280600081525061289d565b60005b8351811015611f3a576000848281518110611e0c57611e0b6156db565b5b602002602001015190506000848381518110611e2b57611e2a6156db565b5b60200260200101519050600060c9600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490614ff5565b60405180910390fd5b81810360c9600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611f3290615605565b915050611dee565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611fb2929190614ea6565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612027906151f5565b60405180910390fd5b600061203a611606565b905061205b8160008761204c88612e7e565b61205588612e7e565b8761289d565b8260c9600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bb91906153d4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612139929190615250565b60405180910390a461215081600087878787612ef8565b5050505050565b61215f610ae4565b1561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690615055565b60405180910390fd5b600161012d60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121e4611606565b6040516121f19190614da7565b60405180910390a1565b600061220a83600001836130df565b60001c905092915050565b60006122238260000161310a565b9050919050565b61223382610828565b6122448161223f611606565b612a9a565b61224e8383612c88565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba90615075565b60405180910390fd5b60006122cd611606565b90506122ed8187876122de88612e7e565b6122e788612e7e565b8761289d565b600060c9600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c90615115565b60405180910390fd5b83810360c9600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360c9600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243c91906153d4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124b9929190615250565b60405180910390a46124cf828888888888612ef8565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f906150d5565b60405180910390fd5b6000612552611606565b90506125828185600061256487612e7e565b61256d87612e7e565b6040518060200160405280600081525061289d565b600060c9600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261190614ff5565b60405180910390fd5b82810360c9600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516126e8929190615250565b60405180910390a45050505050565b600060019054906101000a900460ff168061271d575060008054906101000a900460ff16155b61275c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612753906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156127ac576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6127b461311b565b6127bc6131f4565b6127c46132cd565b6127cc6133a6565b6127d461347f565b6127dd82613602565b6127e56136e5565b6127ed6137be565b6127f56138b3565b6127fe8261398c565b801561281f5760008060016101000a81548160ff0219169083151502179055505b5050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612896575061289582613adc565b5b9050919050565b6128ab868686868686613b56565b505050505050565b6128d28473ffffffffffffffffffffffffffffffffffffffff16613bb4565b15612a92578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612918959493929190614dc2565b602060405180830381600087803b15801561293257600080fd5b505af192505050801561296357506040513d601f19601f8201168201806040525081019061296091906147d8565b60015b612a095761296f615739565b806308c379a014156129cc5750612984615eb4565b8061298f57506129ce565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c39190614f13565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0090614f35565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8790614f75565b60405180910390fd5b505b505050505050565b612aa48282610e2e565b612b3357612ac98173ffffffffffffffffffffffffffffffffffffffff166014613bc7565b612ad78360001c6020613bc7565b604051602001612ae8929190614d6d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2a9190614f13565b60405180910390fd5b5050565b612b418282610e2e565b612c145760016065600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612bb9611606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612c248383613e03565b612c7d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c82565b600090505b92915050565b612c928282610e2e565b15612d665760006065600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612d0b611606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612e72576000600182612d9c9190615484565b9050600060018660000180549050612db49190615484565b9050818114612e23576000866000018281548110612dd557612dd46156db565b5b9060005260206000200154905080876000018481548110612df957612df86156db565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612e3757612e366156ac565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612e78565b60009150505b92915050565b60606000600167ffffffffffffffff811115612e9d57612e9c61570a565b5b604051908082528060200260200182016040528015612ecb5781602001602082028036833780820191505090505b5090508281600081518110612ee357612ee26156db565b5b60200260200101818152505080915050919050565b612f178473ffffffffffffffffffffffffffffffffffffffff16613bb4565b156130d7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612f5d959493929190614e2a565b602060405180830381600087803b158015612f7757600080fd5b505af1925050508015612fa857506040513d601f19601f82011682018060405250810190612fa591906147d8565b60015b61304e57612fb4615739565b806308c379a014156130115750612fc9615eb4565b80612fd45750613013565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130089190614f13565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304590614f35565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614f75565b60405180910390fd5b505b505050505050565b60008260000182815481106130f7576130f66156db565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600060019054906101000a900460ff1680613141575060008054906101000a900460ff16155b613180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613177906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156131d0576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156131f15760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061321a575060008054906101000a900460ff16155b613259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613250906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156132a9576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156132ca5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806132f3575060008054906101000a900460ff16155b613332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613329906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613382576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156133a35760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806133cc575060008054906101000a900460ff16155b61340b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613402906150b5565b60405180910390fd5b60008060019054906101000a900460ff16159050801561345b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561347c5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806134a5575060008054906101000a900460ff16155b6134e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134db906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613534576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b600061353e611606565b90508061019160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080156135ff5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680613628575060008054906101000a900460ff16155b613667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365e906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156136b7576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6136c08261160e565b80156136e15760008060016101000a81548160ff0219169083151502179055505b5050565b600060019054906101000a900460ff168061370b575060008054906101000a900460ff16155b61374a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613741906150b5565b60405180910390fd5b60008060019054906101000a900460ff16159050801561379a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156137bb5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806137e4575060008054906101000a900460ff16155b613823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381a906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613873576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b600061012d60006101000a81548160ff02191690831515021790555080156138b05760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806138d9575060008054906101000a900460ff16155b613918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390f906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613968576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156139895760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806139b2575060008054906101000a900460ff16155b6139f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e8906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613a41576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b613a556000801b613a50611606565b613e26565b613a867f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6613a81611606565b613e26565b613ab77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a613ab2611606565b613e26565b8015613ad85760008060016101000a81548160ff0219169083151502179055505b5050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613b4f5750613b4e82613e5a565b5b9050919050565b613b64868686868686613ec4565b613b6c610ae4565b15613bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba390615015565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b606060006002836002613bda919061542a565b613be491906153d4565b67ffffffffffffffff811115613bfd57613bfc61570a565b5b6040519080825280601f01601f191660200182016040528015613c2f5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613c6757613c666156db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613ccb57613cca6156db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613d0b919061542a565b613d1591906153d4565b90505b6001811115613db5577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613d5757613d566156db565b5b1a60f81b828281518110613d6e57613d6d6156db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613dae90615578565b9050613d18565b5060008414613df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613df090614f55565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020541415905092915050565b613e308282613ecc565b613e558160976000858152602001908152602001600020611b8790919063ffffffff16565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b613ed68282612b37565b5050565b828054613ee6906155a2565b90600052602060002090601f016020900481019282613f085760008555613f4f565b82601f10613f2157805160ff1916838001178555613f4f565b82800160010185558215613f4f579182015b82811115613f4e578251825591602001919060010190613f33565b5b509050613f5c9190613f60565b5090565b5b80821115613f79576000816000905550600101613f61565b5090565b6000613f90613f8b8461529e565b615279565b90508083825260208201905082856020860282011115613fb357613fb2615760565b5b60005b85811015613fe35781613fc988826140e1565b845260208401935060208301925050600181019050613fb6565b5050509392505050565b6000614000613ffb846152ca565b615279565b9050808382526020820190508285602086028201111561402357614022615760565b5b60005b8581101561405357816140398882614202565b845260208401935060208301925050600181019050614026565b5050509392505050565b600061407061406b846152f6565b615279565b90508281526020810184848401111561408c5761408b615765565b5b614097848285615536565b509392505050565b60006140b26140ad84615327565b615279565b9050828152602081018484840111156140ce576140cd615765565b5b6140d9848285615536565b509392505050565b6000813590506140f081615f4a565b92915050565b600082601f83011261410b5761410a61575b565b5b813561411b848260208601613f7d565b91505092915050565b600082601f8301126141395761413861575b565b5b8135614149848260208601613fed565b91505092915050565b60008135905061416181615f61565b92915050565b60008135905061417681615f78565b92915050565b60008135905061418b81615f8f565b92915050565b6000815190506141a081615f8f565b92915050565b600082601f8301126141bb576141ba61575b565b5b81356141cb84826020860161405d565b91505092915050565b600082601f8301126141e9576141e861575b565b5b81356141f984826020860161409f565b91505092915050565b60008135905061421181615fa6565b92915050565b60006020828403121561422d5761422c61576f565b5b600061423b848285016140e1565b91505092915050565b6000806040838503121561425b5761425a61576f565b5b6000614269858286016140e1565b925050602061427a858286016140e1565b9150509250929050565b600080600080600060a086880312156142a05761429f61576f565b5b60006142ae888289016140e1565b95505060206142bf888289016140e1565b945050604086013567ffffffffffffffff8111156142e0576142df61576a565b5b6142ec88828901614124565b935050606086013567ffffffffffffffff81111561430d5761430c61576a565b5b61431988828901614124565b925050608086013567ffffffffffffffff81111561433a5761433961576a565b5b614346888289016141a6565b9150509295509295909350565b600080600080600060a0868803121561436f5761436e61576f565b5b600061437d888289016140e1565b955050602061438e888289016140e1565b945050604061439f88828901614202565b93505060606143b088828901614202565b925050608086013567ffffffffffffffff8111156143d1576143d061576a565b5b6143dd888289016141a6565b9150509295509295909350565b6000806000606084860312156144035761440261576f565b5b6000614411868287016140e1565b935050602084013567ffffffffffffffff8111156144325761443161576a565b5b61443e86828701614124565b925050604084013567ffffffffffffffff81111561445f5761445e61576a565b5b61446b86828701614124565b9150509250925092565b6000806000806080858703121561448f5761448e61576f565b5b600061449d878288016140e1565b945050602085013567ffffffffffffffff8111156144be576144bd61576a565b5b6144ca87828801614124565b935050604085013567ffffffffffffffff8111156144eb576144ea61576a565b5b6144f787828801614124565b925050606085013567ffffffffffffffff8111156145185761451761576a565b5b614524878288016141a6565b91505092959194509250565b600080604083850312156145475761454661576f565b5b6000614555858286016140e1565b925050602061456685828601614152565b9150509250929050565b600080604083850312156145875761458661576f565b5b6000614595858286016140e1565b92505060206145a685828601614202565b9150509250929050565b6000806000606084860312156145c9576145c861576f565b5b60006145d7868287016140e1565b93505060206145e886828701614202565b92505060406145f986828701614202565b9150509250925092565b6000806000806080858703121561461d5761461c61576f565b5b600061462b878288016140e1565b945050602061463c87828801614202565b935050604061464d87828801614202565b925050606085013567ffffffffffffffff81111561466e5761466d61576a565b5b61467a878288016141a6565b91505092959194509250565b6000806040838503121561469d5761469c61576f565b5b600083013567ffffffffffffffff8111156146bb576146ba61576a565b5b6146c7858286016140f6565b925050602083013567ffffffffffffffff8111156146e8576146e761576a565b5b6146f485828601614124565b9150509250929050565b6000602082840312156147145761471361576f565b5b600061472284828501614167565b91505092915050565b600080604083850312156147425761474161576f565b5b600061475085828601614167565b9250506020614761858286016140e1565b9150509250929050565b600080604083850312156147825761478161576f565b5b600061479085828601614167565b92505060206147a185828601614202565b9150509250929050565b6000602082840312156147c1576147c061576f565b5b60006147cf8482850161417c565b91505092915050565b6000602082840312156147ee576147ed61576f565b5b60006147fc84828501614191565b91505092915050565b60006020828403121561481b5761481a61576f565b5b600082013567ffffffffffffffff8111156148395761483861576a565b5b614845848285016141d4565b91505092915050565b6000602082840312156148645761486361576f565b5b600061487284828501614202565b91505092915050565b60006148878383614d4f565b60208301905092915050565b61489c816154b8565b82525050565b60006148ad82615368565b6148b78185615396565b93506148c283615358565b8060005b838110156148f35781516148da888261487b565b97506148e583615389565b9250506001810190506148c6565b5085935050505092915050565b614909816154ca565b82525050565b614918816154d6565b82525050565b600061492982615373565b61493381856153a7565b9350614943818560208601615545565b61494c81615774565b840191505092915050565b60006149628261537e565b61496c81856153b8565b935061497c818560208601615545565b61498581615774565b840191505092915050565b600061499b8261537e565b6149a581856153c9565b93506149b5818560208601615545565b80840191505092915050565b60006149ce6034836153b8565b91506149d982615792565b604082019050919050565b60006149f16020836153b8565b91506149fc826157e1565b602082019050919050565b6000614a146028836153b8565b9150614a1f8261580a565b604082019050919050565b6000614a376014836153b8565b9150614a4282615859565b602082019050919050565b6000614a5a602b836153b8565b9150614a6582615882565b604082019050919050565b6000614a7d6026836153b8565b9150614a88826158d1565b604082019050919050565b6000614aa06024836153b8565b9150614aab82615920565b604082019050919050565b6000614ac3602c836153b8565b9150614ace8261596f565b604082019050919050565b6000614ae66029836153b8565b9150614af1826159be565b604082019050919050565b6000614b096010836153b8565b9150614b1482615a0d565b602082019050919050565b6000614b2c6025836153b8565b9150614b3782615a36565b604082019050919050565b6000614b4f6032836153b8565b9150614b5a82615a85565b604082019050919050565b6000614b72602e836153b8565b9150614b7d82615ad4565b604082019050919050565b6000614b956023836153b8565b9150614ba082615b23565b604082019050919050565b6000614bb86038836153b8565b9150614bc382615b72565b604082019050919050565b6000614bdb602a836153b8565b9150614be682615bc1565b604082019050919050565b6000614bfe6020836153b8565b9150614c0982615c10565b602082019050919050565b6000614c21603b836153b8565b9150614c2c82615c39565b604082019050919050565b6000614c446039836153b8565b9150614c4f82615c88565b604082019050919050565b6000614c676017836153c9565b9150614c7282615cd7565b601782019050919050565b6000614c8a6029836153b8565b9150614c9582615d00565b604082019050919050565b6000614cad6029836153b8565b9150614cb882615d4f565b604082019050919050565b6000614cd06028836153b8565b9150614cdb82615d9e565b604082019050919050565b6000614cf36021836153b8565b9150614cfe82615ded565b604082019050919050565b6000614d166011836153c9565b9150614d2182615e3c565b601182019050919050565b6000614d39602f836153b8565b9150614d4482615e65565b604082019050919050565b614d588161552c565b82525050565b614d678161552c565b82525050565b6000614d7882614c5a565b9150614d848285614990565b9150614d8f82614d09565b9150614d9b8284614990565b91508190509392505050565b6000602082019050614dbc6000830184614893565b92915050565b600060a082019050614dd76000830188614893565b614de46020830187614893565b8181036040830152614df681866148a2565b90508181036060830152614e0a81856148a2565b90508181036080830152614e1e818461491e565b90509695505050505050565b600060a082019050614e3f6000830188614893565b614e4c6020830187614893565b614e596040830186614d5e565b614e666060830185614d5e565b8181036080830152614e78818461491e565b90509695505050505050565b60006020820190508181036000830152614e9e81846148a2565b905092915050565b60006040820190508181036000830152614ec081856148a2565b90508181036020830152614ed481846148a2565b90509392505050565b6000602082019050614ef26000830184614900565b92915050565b6000602082019050614f0d600083018461490f565b92915050565b60006020820190508181036000830152614f2d8184614957565b905092915050565b60006020820190508181036000830152614f4e816149c1565b9050919050565b60006020820190508181036000830152614f6e816149e4565b9050919050565b60006020820190508181036000830152614f8e81614a07565b9050919050565b60006020820190508181036000830152614fae81614a2a565b9050919050565b60006020820190508181036000830152614fce81614a4d565b9050919050565b60006020820190508181036000830152614fee81614a70565b9050919050565b6000602082019050818103600083015261500e81614a93565b9050919050565b6000602082019050818103600083015261502e81614ab6565b9050919050565b6000602082019050818103600083015261504e81614ad9565b9050919050565b6000602082019050818103600083015261506e81614afc565b9050919050565b6000602082019050818103600083015261508e81614b1f565b9050919050565b600060208201905081810360008301526150ae81614b42565b9050919050565b600060208201905081810360008301526150ce81614b65565b9050919050565b600060208201905081810360008301526150ee81614b88565b9050919050565b6000602082019050818103600083015261510e81614bab565b9050919050565b6000602082019050818103600083015261512e81614bce565b9050919050565b6000602082019050818103600083015261514e81614bf1565b9050919050565b6000602082019050818103600083015261516e81614c14565b9050919050565b6000602082019050818103600083015261518e81614c37565b9050919050565b600060208201905081810360008301526151ae81614c7d565b9050919050565b600060208201905081810360008301526151ce81614ca0565b9050919050565b600060208201905081810360008301526151ee81614cc3565b9050919050565b6000602082019050818103600083015261520e81614ce6565b9050919050565b6000602082019050818103600083015261522e81614d2c565b9050919050565b600060208201905061524a6000830184614d5e565b92915050565b60006040820190506152656000830185614d5e565b6152726020830184614d5e565b9392505050565b6000615283615294565b905061528f82826155d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156152b9576152b861570a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156152e5576152e461570a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156153115761531061570a565b5b61531a82615774565b9050602081019050919050565b600067ffffffffffffffff8211156153425761534161570a565b5b61534b82615774565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006153df8261552c565b91506153ea8361552c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561541f5761541e61564e565b5b828201905092915050565b60006154358261552c565b91506154408361552c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154795761547861564e565b5b828202905092915050565b600061548f8261552c565b915061549a8361552c565b9250828210156154ad576154ac61564e565b5b828203905092915050565b60006154c38261550c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615563578082015181840152602081019050615548565b83811115615572576000848401525b50505050565b60006155838261552c565b915060008214156155975761559661564e565b5b600182039050919050565b600060028204905060018216806155ba57607f821691505b602082108114156155ce576155cd61567d565b5b50919050565b6155dd82615774565b810181811067ffffffffffffffff821117156155fc576155fb61570a565b5b80604052505050565b60006156108261552c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156435761564261564e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156157585760046000803e615755600051615785565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015615ec457615f47565b615ecc615294565b60043d036004823e80513d602482011167ffffffffffffffff82111715615ef4575050615f47565b808201805167ffffffffffffffff811115615f125750505050615f47565b80602083010160043d038501811115615f2f575050505050615f47565b615f3e826020018501866155d4565b82955050505050505b90565b615f53816154b8565b8114615f5e57600080fd5b50565b615f6a816154ca565b8114615f7557600080fd5b50565b615f81816154d6565b8114615f8c57600080fd5b50565b615f98816154e0565b8114615fa357600080fd5b50565b615faf8161552c565b8114615fba57600080fd5b5056fea2646970667358221220bffe6b8b45ca4c7a65ddae81931ccb637744c0835e191d1e24157b0107279dcb64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c80638456cb5911610104578063d5391393116100a2578063f242432a11610071578063f242432a1461053e578063f2fde38b1461055a578063f5298aca14610576578063f62d188814610592576101d9565b8063d5391393146104b6578063d547741f146104d4578063e63ab1e9146104f0578063e985e9c51461050e576101d9565b806391d14854116100de57806391d148541461041c578063a217fddf1461044c578063a22cb4651461046a578063ca15c87314610486576101d9565b80638456cb59146103c45780638da5cb5b146103ce5780639010d07c146103ec576101d9565b80632f2ff15d1161017c5780635c975abb1161014b5780635c975abb146103645780636b20c45414610382578063715018a61461039e578063731133e9146103a8576101d9565b80632f2ff15d146102f257806336568abe1461030e5780633f4ba83a1461032a5780634e1273f414610334576101d9565b80630e89341c116101b85780630e89341c1461025a5780631f7fdffa1461028a578063248a9ca3146102a65780632eb2c2d6146102d6576101d9565b8062fdd58e146101de57806301ffc9a71461020e57806302fe53051461023e575b600080fd5b6101f860048036038101906101f39190614570565b6105ae565b6040516102059190615235565b60405180910390f35b610228600480360381019061022391906147ab565b610678565b6040516102359190614edd565b60405180910390f35b61025860048036038101906102539190614805565b61068a565b005b610274600480360381019061026f919061484e565b610712565b6040516102819190614f13565b60405180910390f35b6102a4600480360381019061029f9190614475565b6107a6565b005b6102c060048036038101906102bb91906146fe565b610828565b6040516102cd9190614ef8565b60405180910390f35b6102f060048036038101906102eb9190614284565b610848565b005b61030c6004803603810190610307919061472b565b6108e9565b005b6103286004803603810190610323919061472b565b61091d565b005b610332610951565b005b61034e60048036038101906103499190614686565b6109cb565b60405161035b9190614e84565b60405180910390f35b61036c610ae4565b6040516103799190614edd565b60405180910390f35b61039c600480360381019061039791906143ea565b610afc565b005b6103a6610b99565b005b6103c260048036038101906103bd9190614603565b610cd8565b005b6103cc610d5a565b005b6103d6610dd4565b6040516103e39190614da7565b60405180910390f35b6104066004803603810190610401919061476b565b610dff565b6040516104139190614da7565b60405180910390f35b6104366004803603810190610431919061472b565b610e2e565b6040516104439190614edd565b60405180910390f35b610454610e99565b6040516104619190614ef8565b60405180910390f35b610484600480360381019061047f9190614530565b610ea0565b005b6104a0600480360381019061049b91906146fe565b611021565b6040516104ad9190615235565b60405180910390f35b6104be611045565b6040516104cb9190614ef8565b60405180910390f35b6104ee60048036038101906104e9919061472b565b611069565b005b6104f861109d565b6040516105059190614ef8565b60405180910390f35b61052860048036038101906105239190614244565b6110c1565b6040516105359190614edd565b60405180910390f35b61055860048036038101906105539190614353565b611155565b005b610574600480360381019061056f9190614217565b6111f6565b005b610590600480360381019061058b91906145b0565b6113a4565b005b6105ac60048036038101906105a79190614805565b611441565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690614fb5565b60405180910390fd5b60c9600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061068382611524565b9050919050565b610692611606565b73ffffffffffffffffffffffffffffffffffffffff166106b0610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd90615135565b60405180910390fd5b61070f8161160e565b50565b606060cb8054610721906155a2565b80601f016020809104026020016040519081016040528092919081815260200182805461074d906155a2565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b50505050509050919050565b6107d77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107d2611606565b610e2e565b610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d906150f5565b60405180910390fd5b61082284848484611628565b50505050565b600060656000838152602001908152602001600020600101549050919050565b610850611606565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610896575061089585610890611606565b6110c1565b5b6108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90615095565b60405180910390fd5b6108e28585858585611847565b5050505050565b6108f38282611b5e565b6109188160976000858152602001908152602001600020611b8790919063ffffffff16565b505050565b6109278282611bb7565b61094c8160976000858152602001908152602001600020611c3a90919063ffffffff16565b505050565b6109827f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61097d611606565b610e2e565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890615155565b60405180910390fd5b6109c9611c6a565b565b60608151835114610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906151b5565b60405180910390fd5b6000835167ffffffffffffffff811115610a2e57610a2d61570a565b5b604051908082528060200260200182016040528015610a5c5781602001602082028036833780820191505090505b50905060005b8451811015610ad957610aa9858281518110610a8157610a806156db565b5b6020026020010151858381518110610a9c57610a9b6156db565b5b60200260200101516105ae565b828281518110610abc57610abb6156db565b5b60200260200101818152505080610ad290615605565b9050610a62565b508091505092915050565b600061012d60009054906101000a900460ff16905090565b610b04611606565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610b4a5750610b4983610b44611606565b6110c1565b5b610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090615035565b60405180910390fd5b610b94838383611d0d565b505050565b610ba1611606565b73ffffffffffffffffffffffffffffffffffffffff16610bbf610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90615135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1661019160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600061019160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d097f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d04611606565b610e2e565b610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906150f5565b60405180910390fd5b610d5484848484611fc0565b50505050565b610d8b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d86611606565b610e2e565b610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190615175565b60405180910390fd5b610dd2612157565b565b600061019160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e2682609760008681526020019081526020016000206121fb90919063ffffffff16565b905092915050565b60006065600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610ebf611606565b73ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90615195565b60405180910390fd5b8060ca6000610f23611606565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fd0611606565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110159190614edd565b60405180910390a35050565b600061103e60976000848152602001908152602001600020612215565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611073828261222a565b6110988160976000858152602001908152602001600020611c3a90919063ffffffff16565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600060ca60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115d611606565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a357506111a28561119d611606565b6110c1565b5b6111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990615035565b60405180910390fd5b6111ef8585858585612253565b5050505050565b6111fe611606565b73ffffffffffffffffffffffffffffffffffffffff1661121c610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990615135565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990614fd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661019160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38061019160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113ac611606565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113f257506113f1836113ec611606565b6110c1565b5b611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890615035565b60405180910390fd5b61143c8383836124d8565b505050565b600060019054906101000a900460ff1680611467575060008054906101000a900460ff16155b6114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156114f6576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6114ff826126f7565b80156115205760008060016101000a81548160ff0219169083151502179055505b5050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806115ef57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806115ff57506115fe82612823565b5b9050919050565b600033905090565b8060cb9080519060200190611624929190613eda565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906151f5565b60405180910390fd5b81518351146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d3906151d5565b60405180910390fd5b60006116e6611606565b90506116f78160008787878761289d565b60005b84518110156117b157838181518110611716576117156156db565b5b602002602001015160c96000878481518110611735576117346156db565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179791906153d4565b9250508190555080806117a990615605565b9150506116fa565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611829929190614ea6565b60405180910390a4611840816000878787876128b3565b5050505050565b815183511461188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906151d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290615075565b60405180910390fd5b6000611905611606565b905061191581878787878761289d565b60005b8451811015611ac9576000858281518110611936576119356156db565b5b602002602001015190506000858381518110611955576119546156db565b5b60200260200101519050600060c9600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90615115565b60405180910390fd5b81810360c9600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160c9600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aae91906153d4565b9250508190555050505080611ac290615605565b9050611918565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b40929190614ea6565b60405180910390a4611b568187878787876128b3565b505050505050565b611b6782610828565b611b7881611b73611606565b612a9a565b611b828383612b37565b505050565b6000611baf836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612c18565b905092915050565b611bbf611606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390615215565b60405180910390fd5b611c368282612c88565b5050565b6000611c62836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d6a565b905092915050565b611c72610ae4565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614f95565b60405180910390fd5b600061012d60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cf6611606565b604051611d039190614da7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d74906150d5565b60405180910390fd5b8051825114611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906151d5565b60405180910390fd5b6000611dcb611606565b9050611deb8185600086866040518060200160405280600081525061289d565b60005b8351811015611f3a576000848281518110611e0c57611e0b6156db565b5b602002602001015190506000848381518110611e2b57611e2a6156db565b5b60200260200101519050600060c9600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490614ff5565b60405180910390fd5b81810360c9600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611f3290615605565b915050611dee565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611fb2929190614ea6565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612027906151f5565b60405180910390fd5b600061203a611606565b905061205b8160008761204c88612e7e565b61205588612e7e565b8761289d565b8260c9600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bb91906153d4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612139929190615250565b60405180910390a461215081600087878787612ef8565b5050505050565b61215f610ae4565b1561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690615055565b60405180910390fd5b600161012d60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121e4611606565b6040516121f19190614da7565b60405180910390a1565b600061220a83600001836130df565b60001c905092915050565b60006122238260000161310a565b9050919050565b61223382610828565b6122448161223f611606565b612a9a565b61224e8383612c88565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba90615075565b60405180910390fd5b60006122cd611606565b90506122ed8187876122de88612e7e565b6122e788612e7e565b8761289d565b600060c9600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c90615115565b60405180910390fd5b83810360c9600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360c9600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243c91906153d4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124b9929190615250565b60405180910390a46124cf828888888888612ef8565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f906150d5565b60405180910390fd5b6000612552611606565b90506125828185600061256487612e7e565b61256d87612e7e565b6040518060200160405280600081525061289d565b600060c9600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261190614ff5565b60405180910390fd5b82810360c9600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516126e8929190615250565b60405180910390a45050505050565b600060019054906101000a900460ff168061271d575060008054906101000a900460ff16155b61275c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612753906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156127ac576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6127b461311b565b6127bc6131f4565b6127c46132cd565b6127cc6133a6565b6127d461347f565b6127dd82613602565b6127e56136e5565b6127ed6137be565b6127f56138b3565b6127fe8261398c565b801561281f5760008060016101000a81548160ff0219169083151502179055505b5050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612896575061289582613adc565b5b9050919050565b6128ab868686868686613b56565b505050505050565b6128d28473ffffffffffffffffffffffffffffffffffffffff16613bb4565b15612a92578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612918959493929190614dc2565b602060405180830381600087803b15801561293257600080fd5b505af192505050801561296357506040513d601f19601f8201168201806040525081019061296091906147d8565b60015b612a095761296f615739565b806308c379a014156129cc5750612984615eb4565b8061298f57506129ce565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c39190614f13565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0090614f35565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8790614f75565b60405180910390fd5b505b505050505050565b612aa48282610e2e565b612b3357612ac98173ffffffffffffffffffffffffffffffffffffffff166014613bc7565b612ad78360001c6020613bc7565b604051602001612ae8929190614d6d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2a9190614f13565b60405180910390fd5b5050565b612b418282610e2e565b612c145760016065600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612bb9611606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612c248383613e03565b612c7d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c82565b600090505b92915050565b612c928282610e2e565b15612d665760006065600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612d0b611606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612e72576000600182612d9c9190615484565b9050600060018660000180549050612db49190615484565b9050818114612e23576000866000018281548110612dd557612dd46156db565b5b9060005260206000200154905080876000018481548110612df957612df86156db565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612e3757612e366156ac565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612e78565b60009150505b92915050565b60606000600167ffffffffffffffff811115612e9d57612e9c61570a565b5b604051908082528060200260200182016040528015612ecb5781602001602082028036833780820191505090505b5090508281600081518110612ee357612ee26156db565b5b60200260200101818152505080915050919050565b612f178473ffffffffffffffffffffffffffffffffffffffff16613bb4565b156130d7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612f5d959493929190614e2a565b602060405180830381600087803b158015612f7757600080fd5b505af1925050508015612fa857506040513d601f19601f82011682018060405250810190612fa591906147d8565b60015b61304e57612fb4615739565b806308c379a014156130115750612fc9615eb4565b80612fd45750613013565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130089190614f13565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304590614f35565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614f75565b60405180910390fd5b505b505050505050565b60008260000182815481106130f7576130f66156db565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600060019054906101000a900460ff1680613141575060008054906101000a900460ff16155b613180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613177906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156131d0576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156131f15760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061321a575060008054906101000a900460ff16155b613259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613250906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156132a9576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156132ca5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806132f3575060008054906101000a900460ff16155b613332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613329906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613382576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156133a35760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806133cc575060008054906101000a900460ff16155b61340b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613402906150b5565b60405180910390fd5b60008060019054906101000a900460ff16159050801561345b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561347c5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806134a5575060008054906101000a900460ff16155b6134e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134db906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613534576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b600061353e611606565b90508061019160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080156135ff5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680613628575060008054906101000a900460ff16155b613667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365e906150b5565b60405180910390fd5b60008060019054906101000a900460ff1615905080156136b7576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6136c08261160e565b80156136e15760008060016101000a81548160ff0219169083151502179055505b5050565b600060019054906101000a900460ff168061370b575060008054906101000a900460ff16155b61374a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613741906150b5565b60405180910390fd5b60008060019054906101000a900460ff16159050801561379a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156137bb5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806137e4575060008054906101000a900460ff16155b613823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381a906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613873576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b600061012d60006101000a81548160ff02191690831515021790555080156138b05760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806138d9575060008054906101000a900460ff16155b613918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390f906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613968576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156139895760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806139b2575060008054906101000a900460ff16155b6139f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e8906150b5565b60405180910390fd5b60008060019054906101000a900460ff161590508015613a41576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b613a556000801b613a50611606565b613e26565b613a867f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6613a81611606565b613e26565b613ab77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a613ab2611606565b613e26565b8015613ad85760008060016101000a81548160ff0219169083151502179055505b5050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613b4f5750613b4e82613e5a565b5b9050919050565b613b64868686868686613ec4565b613b6c610ae4565b15613bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba390615015565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b606060006002836002613bda919061542a565b613be491906153d4565b67ffffffffffffffff811115613bfd57613bfc61570a565b5b6040519080825280601f01601f191660200182016040528015613c2f5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613c6757613c666156db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613ccb57613cca6156db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613d0b919061542a565b613d1591906153d4565b90505b6001811115613db5577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613d5757613d566156db565b5b1a60f81b828281518110613d6e57613d6d6156db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613dae90615578565b9050613d18565b5060008414613df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613df090614f55565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020541415905092915050565b613e308282613ecc565b613e558160976000858152602001908152602001600020611b8790919063ffffffff16565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b613ed68282612b37565b5050565b828054613ee6906155a2565b90600052602060002090601f016020900481019282613f085760008555613f4f565b82601f10613f2157805160ff1916838001178555613f4f565b82800160010185558215613f4f579182015b82811115613f4e578251825591602001919060010190613f33565b5b509050613f5c9190613f60565b5090565b5b80821115613f79576000816000905550600101613f61565b5090565b6000613f90613f8b8461529e565b615279565b90508083825260208201905082856020860282011115613fb357613fb2615760565b5b60005b85811015613fe35781613fc988826140e1565b845260208401935060208301925050600181019050613fb6565b5050509392505050565b6000614000613ffb846152ca565b615279565b9050808382526020820190508285602086028201111561402357614022615760565b5b60005b8581101561405357816140398882614202565b845260208401935060208301925050600181019050614026565b5050509392505050565b600061407061406b846152f6565b615279565b90508281526020810184848401111561408c5761408b615765565b5b614097848285615536565b509392505050565b60006140b26140ad84615327565b615279565b9050828152602081018484840111156140ce576140cd615765565b5b6140d9848285615536565b509392505050565b6000813590506140f081615f4a565b92915050565b600082601f83011261410b5761410a61575b565b5b813561411b848260208601613f7d565b91505092915050565b600082601f8301126141395761413861575b565b5b8135614149848260208601613fed565b91505092915050565b60008135905061416181615f61565b92915050565b60008135905061417681615f78565b92915050565b60008135905061418b81615f8f565b92915050565b6000815190506141a081615f8f565b92915050565b600082601f8301126141bb576141ba61575b565b5b81356141cb84826020860161405d565b91505092915050565b600082601f8301126141e9576141e861575b565b5b81356141f984826020860161409f565b91505092915050565b60008135905061421181615fa6565b92915050565b60006020828403121561422d5761422c61576f565b5b600061423b848285016140e1565b91505092915050565b6000806040838503121561425b5761425a61576f565b5b6000614269858286016140e1565b925050602061427a858286016140e1565b9150509250929050565b600080600080600060a086880312156142a05761429f61576f565b5b60006142ae888289016140e1565b95505060206142bf888289016140e1565b945050604086013567ffffffffffffffff8111156142e0576142df61576a565b5b6142ec88828901614124565b935050606086013567ffffffffffffffff81111561430d5761430c61576a565b5b61431988828901614124565b925050608086013567ffffffffffffffff81111561433a5761433961576a565b5b614346888289016141a6565b9150509295509295909350565b600080600080600060a0868803121561436f5761436e61576f565b5b600061437d888289016140e1565b955050602061438e888289016140e1565b945050604061439f88828901614202565b93505060606143b088828901614202565b925050608086013567ffffffffffffffff8111156143d1576143d061576a565b5b6143dd888289016141a6565b9150509295509295909350565b6000806000606084860312156144035761440261576f565b5b6000614411868287016140e1565b935050602084013567ffffffffffffffff8111156144325761443161576a565b5b61443e86828701614124565b925050604084013567ffffffffffffffff81111561445f5761445e61576a565b5b61446b86828701614124565b9150509250925092565b6000806000806080858703121561448f5761448e61576f565b5b600061449d878288016140e1565b945050602085013567ffffffffffffffff8111156144be576144bd61576a565b5b6144ca87828801614124565b935050604085013567ffffffffffffffff8111156144eb576144ea61576a565b5b6144f787828801614124565b925050606085013567ffffffffffffffff8111156145185761451761576a565b5b614524878288016141a6565b91505092959194509250565b600080604083850312156145475761454661576f565b5b6000614555858286016140e1565b925050602061456685828601614152565b9150509250929050565b600080604083850312156145875761458661576f565b5b6000614595858286016140e1565b92505060206145a685828601614202565b9150509250929050565b6000806000606084860312156145c9576145c861576f565b5b60006145d7868287016140e1565b93505060206145e886828701614202565b92505060406145f986828701614202565b9150509250925092565b6000806000806080858703121561461d5761461c61576f565b5b600061462b878288016140e1565b945050602061463c87828801614202565b935050604061464d87828801614202565b925050606085013567ffffffffffffffff81111561466e5761466d61576a565b5b61467a878288016141a6565b91505092959194509250565b6000806040838503121561469d5761469c61576f565b5b600083013567ffffffffffffffff8111156146bb576146ba61576a565b5b6146c7858286016140f6565b925050602083013567ffffffffffffffff8111156146e8576146e761576a565b5b6146f485828601614124565b9150509250929050565b6000602082840312156147145761471361576f565b5b600061472284828501614167565b91505092915050565b600080604083850312156147425761474161576f565b5b600061475085828601614167565b9250506020614761858286016140e1565b9150509250929050565b600080604083850312156147825761478161576f565b5b600061479085828601614167565b92505060206147a185828601614202565b9150509250929050565b6000602082840312156147c1576147c061576f565b5b60006147cf8482850161417c565b91505092915050565b6000602082840312156147ee576147ed61576f565b5b60006147fc84828501614191565b91505092915050565b60006020828403121561481b5761481a61576f565b5b600082013567ffffffffffffffff8111156148395761483861576a565b5b614845848285016141d4565b91505092915050565b6000602082840312156148645761486361576f565b5b600061487284828501614202565b91505092915050565b60006148878383614d4f565b60208301905092915050565b61489c816154b8565b82525050565b60006148ad82615368565b6148b78185615396565b93506148c283615358565b8060005b838110156148f35781516148da888261487b565b97506148e583615389565b9250506001810190506148c6565b5085935050505092915050565b614909816154ca565b82525050565b614918816154d6565b82525050565b600061492982615373565b61493381856153a7565b9350614943818560208601615545565b61494c81615774565b840191505092915050565b60006149628261537e565b61496c81856153b8565b935061497c818560208601615545565b61498581615774565b840191505092915050565b600061499b8261537e565b6149a581856153c9565b93506149b5818560208601615545565b80840191505092915050565b60006149ce6034836153b8565b91506149d982615792565b604082019050919050565b60006149f16020836153b8565b91506149fc826157e1565b602082019050919050565b6000614a146028836153b8565b9150614a1f8261580a565b604082019050919050565b6000614a376014836153b8565b9150614a4282615859565b602082019050919050565b6000614a5a602b836153b8565b9150614a6582615882565b604082019050919050565b6000614a7d6026836153b8565b9150614a88826158d1565b604082019050919050565b6000614aa06024836153b8565b9150614aab82615920565b604082019050919050565b6000614ac3602c836153b8565b9150614ace8261596f565b604082019050919050565b6000614ae66029836153b8565b9150614af1826159be565b604082019050919050565b6000614b096010836153b8565b9150614b1482615a0d565b602082019050919050565b6000614b2c6025836153b8565b9150614b3782615a36565b604082019050919050565b6000614b4f6032836153b8565b9150614b5a82615a85565b604082019050919050565b6000614b72602e836153b8565b9150614b7d82615ad4565b604082019050919050565b6000614b956023836153b8565b9150614ba082615b23565b604082019050919050565b6000614bb86038836153b8565b9150614bc382615b72565b604082019050919050565b6000614bdb602a836153b8565b9150614be682615bc1565b604082019050919050565b6000614bfe6020836153b8565b9150614c0982615c10565b602082019050919050565b6000614c21603b836153b8565b9150614c2c82615c39565b604082019050919050565b6000614c446039836153b8565b9150614c4f82615c88565b604082019050919050565b6000614c676017836153c9565b9150614c7282615cd7565b601782019050919050565b6000614c8a6029836153b8565b9150614c9582615d00565b604082019050919050565b6000614cad6029836153b8565b9150614cb882615d4f565b604082019050919050565b6000614cd06028836153b8565b9150614cdb82615d9e565b604082019050919050565b6000614cf36021836153b8565b9150614cfe82615ded565b604082019050919050565b6000614d166011836153c9565b9150614d2182615e3c565b601182019050919050565b6000614d39602f836153b8565b9150614d4482615e65565b604082019050919050565b614d588161552c565b82525050565b614d678161552c565b82525050565b6000614d7882614c5a565b9150614d848285614990565b9150614d8f82614d09565b9150614d9b8284614990565b91508190509392505050565b6000602082019050614dbc6000830184614893565b92915050565b600060a082019050614dd76000830188614893565b614de46020830187614893565b8181036040830152614df681866148a2565b90508181036060830152614e0a81856148a2565b90508181036080830152614e1e818461491e565b90509695505050505050565b600060a082019050614e3f6000830188614893565b614e4c6020830187614893565b614e596040830186614d5e565b614e666060830185614d5e565b8181036080830152614e78818461491e565b90509695505050505050565b60006020820190508181036000830152614e9e81846148a2565b905092915050565b60006040820190508181036000830152614ec081856148a2565b90508181036020830152614ed481846148a2565b90509392505050565b6000602082019050614ef26000830184614900565b92915050565b6000602082019050614f0d600083018461490f565b92915050565b60006020820190508181036000830152614f2d8184614957565b905092915050565b60006020820190508181036000830152614f4e816149c1565b9050919050565b60006020820190508181036000830152614f6e816149e4565b9050919050565b60006020820190508181036000830152614f8e81614a07565b9050919050565b60006020820190508181036000830152614fae81614a2a565b9050919050565b60006020820190508181036000830152614fce81614a4d565b9050919050565b60006020820190508181036000830152614fee81614a70565b9050919050565b6000602082019050818103600083015261500e81614a93565b9050919050565b6000602082019050818103600083015261502e81614ab6565b9050919050565b6000602082019050818103600083015261504e81614ad9565b9050919050565b6000602082019050818103600083015261506e81614afc565b9050919050565b6000602082019050818103600083015261508e81614b1f565b9050919050565b600060208201905081810360008301526150ae81614b42565b9050919050565b600060208201905081810360008301526150ce81614b65565b9050919050565b600060208201905081810360008301526150ee81614b88565b9050919050565b6000602082019050818103600083015261510e81614bab565b9050919050565b6000602082019050818103600083015261512e81614bce565b9050919050565b6000602082019050818103600083015261514e81614bf1565b9050919050565b6000602082019050818103600083015261516e81614c14565b9050919050565b6000602082019050818103600083015261518e81614c37565b9050919050565b600060208201905081810360008301526151ae81614c7d565b9050919050565b600060208201905081810360008301526151ce81614ca0565b9050919050565b600060208201905081810360008301526151ee81614cc3565b9050919050565b6000602082019050818103600083015261520e81614ce6565b9050919050565b6000602082019050818103600083015261522e81614d2c565b9050919050565b600060208201905061524a6000830184614d5e565b92915050565b60006040820190506152656000830185614d5e565b6152726020830184614d5e565b9392505050565b6000615283615294565b905061528f82826155d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156152b9576152b861570a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156152e5576152e461570a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156153115761531061570a565b5b61531a82615774565b9050602081019050919050565b600067ffffffffffffffff8211156153425761534161570a565b5b61534b82615774565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006153df8261552c565b91506153ea8361552c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561541f5761541e61564e565b5b828201905092915050565b60006154358261552c565b91506154408361552c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154795761547861564e565b5b828202905092915050565b600061548f8261552c565b915061549a8361552c565b9250828210156154ad576154ac61564e565b5b828203905092915050565b60006154c38261550c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615563578082015181840152602081019050615548565b83811115615572576000848401525b50505050565b60006155838261552c565b915060008214156155975761559661564e565b5b600182039050919050565b600060028204905060018216806155ba57607f821691505b602082108114156155ce576155cd61567d565b5b50919050565b6155dd82615774565b810181811067ffffffffffffffff821117156155fc576155fb61570a565b5b80604052505050565b60006156108261552c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156435761564261564e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156157585760046000803e615755600051615785565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015615ec457615f47565b615ecc615294565b60043d036004823e80513d602482011167ffffffffffffffff82111715615ef4575050615f47565b808201805167ffffffffffffffff811115615f125750505050615f47565b80602083010160043d038501811115615f2f575050505050615f47565b615f3e826020018501866155d4565b82955050505050505b90565b615f53816154b8565b8114615f5e57600080fd5b50565b615f6a816154ca565b8114615f7557600080fd5b50565b615f81816154d6565b8114615f8c57600080fd5b50565b615f98816154e0565b8114615fa357600080fd5b50565b615faf8161552c565b8114615fba57600080fd5b5056fea2646970667358221220bffe6b8b45ca4c7a65ddae81931ccb637744c0835e191d1e24157b0107279dcb64736f6c63430008070033
Deployed Bytecode Sourcemap
68255:3824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46220:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71452:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70501:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45964:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70213:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13249:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48372:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28611:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29134:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71200:180;;;:::i;:::-;;46617:549;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62245:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60570:319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66936:148;;;:::i;:::-;;69856:250;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70806:174;;;:::i;:::-;;66285:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28066:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12225:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10179:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47239:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28385:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68564:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28869:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68633:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47622:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47862:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67239:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60275:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68436:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46220:231;46306:7;46353:1;46334:21;;:7;:21;;;;46326:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46421:9;:13;46431:2;46421:13;;;;;;;;;;;:22;46435:7;46421:22;;;;;;;;;;;;;;;;46414:29;;46220:231;;;;:::o;71452:209::-;71593:4;71617:36;71641:11;71617:23;:36::i;:::-;71610:43;;71452:209;;;:::o;70501:91::-;66516:12;:10;:12::i;:::-;66505:23;;:7;:5;:7::i;:::-;:23;;;66497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70568:16:::1;70576:7;70568;:16::i;:::-;70501:91:::0;:::o;45964:105::-;46024:13;46057:4;46050:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45964:105;;;:::o;70213:282::-;70345:34;68602:24;70366:12;:10;:12::i;:::-;70345:7;:34::i;:::-;70337:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;70453:34;70464:2;70468:3;70473:7;70482:4;70453:10;:34::i;:::-;70213:282;;;;:::o;13249:123::-;13315:7;13342:6;:12;13349:4;13342:12;;;;;;;;;;;:22;;;13335:29;;13249:123;;;:::o;48372:474::-;48645:12;:10;:12::i;:::-;48637:20;;:4;:20;;;:60;;;;48661:36;48678:4;48684:12;:10;:12::i;:::-;48661:16;:36::i;:::-;48637:60;48615:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;48786:52;48809:4;48815:2;48819:3;48824:7;48833:4;48786:22;:52::i;:::-;48372:474;;;;;:::o;28611:165::-;28696:30;28712:4;28718:7;28696:15;:30::i;:::-;28737:31;28760:7;28737:12;:18;28750:4;28737:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;28611:165;;:::o;29134:174::-;29222:33;29241:4;29247:7;29222:18;:33::i;:::-;29266:34;29292:7;29266:12;:18;29279:4;29266:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;29134:174;;:::o;71200:180::-;71253:34;68671:24;71274:12;:10;:12::i;:::-;71253:7;:34::i;:::-;71245:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;71362:10;:8;:10::i;:::-;71200:180::o;46617:549::-;46798:16;46859:3;:10;46840:8;:15;:29;46832:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;46928:30;46975:8;:15;46961:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46928:63;;47009:9;47004:122;47028:8;:15;47024:1;:19;47004:122;;;47084:30;47094:8;47103:1;47094:11;;;;;;;;:::i;:::-;;;;;;;;47107:3;47111:1;47107:6;;;;;;;;:::i;:::-;;;;;;;;47084:9;:30::i;:::-;47065:13;47079:1;47065:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;47045:3;;;;:::i;:::-;;;47004:122;;;;47145:13;47138:20;;;46617:549;;;;:::o;62245:86::-;62292:4;62316:7;;;;;;;;;;;62309:14;;62245:86;:::o;60570:319::-;60712:12;:10;:12::i;:::-;60701:23;;:7;:23;;;:66;;;;60728:39;60745:7;60754:12;:10;:12::i;:::-;60728:16;:39::i;:::-;60701:66;60679:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;60849:32;60860:7;60869:3;60874:6;60849:10;:32::i;:::-;60570:319;;;:::o;66936:148::-;66516:12;:10;:12::i;:::-;66505:23;;:7;:5;:7::i;:::-;:23;;;66497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67043:1:::1;67006:40;;67027:6;;;;;;;;;;;67006:40;;;;;;;;;;;;67074:1;67057:6;;:19;;;;;;;;;;;;;;;;;;66936:148::o:0;69856:250::-;69963:34;68602:24;69984:12;:10;:12::i;:::-;69963:7;:34::i;:::-;69955:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;70071:27;70077:2;70081;70085:6;70093:4;70071:5;:27::i;:::-;69856:250;;;;:::o;70806:174::-;70857:34;68671:24;70878:12;:10;:12::i;:::-;70857:7;:34::i;:::-;70849:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;70964:8;:6;:8::i;:::-;70806:174::o;66285:87::-;66331:7;66358:6;;;;;;;;;;;66351:13;;66285:87;:::o;28066:145::-;28148:7;28175:28;28197:5;28175:12;:18;28188:4;28175:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;28168:35;;28066:145;;;;:::o;12225:139::-;12303:4;12327:6;:12;12334:4;12327:12;;;;;;;;;;;:20;;:29;12348:7;12327:29;;;;;;;;;;;;;;;;;;;;;;;;;12320:36;;12225:139;;;;:::o;10179:49::-;10224:4;10179:49;;;:::o;47239:311::-;47358:8;47342:24;;:12;:10;:12::i;:::-;:24;;;;47334:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47470:8;47425:18;:32;47444:12;:10;:12::i;:::-;47425:32;;;;;;;;;;;;;;;:42;47458:8;47425:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47523:8;47494:48;;47509:12;:10;:12::i;:::-;47494:48;;;47533:8;47494:48;;;;;;:::i;:::-;;;;;;;;47239:311;;:::o;28385:134::-;28457:7;28484:27;:12;:18;28497:4;28484:18;;;;;;;;;;;:25;:27::i;:::-;28477:34;;28385:134;;;:::o;68564:62::-;68602:24;68564:62;:::o;28869:170::-;28955:31;28972:4;28978:7;28955:16;:31::i;:::-;28997:34;29023:7;28997:12;:18;29010:4;28997:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;28869:170;;:::o;68633:62::-;68671:24;68633:62;:::o;47622:168::-;47721:4;47745:18;:27;47764:7;47745:27;;;;;;;;;;;;;;;:37;47773:8;47745:37;;;;;;;;;;;;;;;;;;;;;;;;;47738:44;;47622:168;;;;:::o;47862:433::-;48110:12;:10;:12::i;:::-;48102:20;;:4;:20;;;:60;;;;48126:36;48143:4;48149:12;:10;:12::i;:::-;48126:16;:36::i;:::-;48102:60;48080:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;48242:45;48260:4;48266:2;48270;48274:6;48282:4;48242:17;:45::i;:::-;47862:433;;;;;:::o;67239:244::-;66516:12;:10;:12::i;:::-;66505:23;;:7;:5;:7::i;:::-;:23;;;66497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67348:1:::1;67328:22;;:8;:22;;;;67320:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;67438:8;67409:38;;67430:6;;;;;;;;;;;67409:38;;;;;;;;;;;;67467:8;67458:6;;:17;;;;;;;;;;;;;;;;;;67239:244:::0;:::o;60275:287::-;60392:12;:10;:12::i;:::-;60381:23;;:7;:23;;;:66;;;;60408:39;60425:7;60434:12;:10;:12::i;:::-;60408:16;:39::i;:::-;60381:66;60359:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;60529:25;60535:7;60544:2;60548:5;60529;:25::i;:::-;60275:287;;;:::o;68436:122::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;68513:37:::1;68546:3;68513:32;:37::i;:::-;1892:14:::0;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;68436:122;:::o;45212:341::-;45336:4;45375:37;45360:52;;;:11;:52;;;;:132;;;;45444:48;45429:63;;;:11;:63;;;;45360:132;:185;;;;45509:36;45533:11;45509:23;:36::i;:::-;45360:185;45353:192;;45212:341;;;:::o;2824:98::-;2877:7;2904:10;2897:17;;2824:98;:::o;52452:88::-;52526:6;52519:4;:13;;;;;;;;;;;;:::i;:::-;;52452:88;:::o;53853:689::-;54002:1;53988:16;;:2;:16;;;;53980:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54075:7;:14;54061:3;:10;:28;54053:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54147:16;54166:12;:10;:12::i;:::-;54147:31;;54191:66;54212:8;54230:1;54234:2;54238:3;54243:7;54252:4;54191:20;:66::i;:::-;54275:6;54270:100;54291:3;:10;54287:1;:14;54270:100;;;54348:7;54356:1;54348:10;;;;;;;;:::i;:::-;;;;;;;;54323:9;:17;54333:3;54337:1;54333:6;;;;;;;;:::i;:::-;;;;;;;;54323:17;;;;;;;;;;;:21;54341:2;54323:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;54303:3;;;;;:::i;:::-;;;;54270:100;;;;54423:2;54387:53;;54419:1;54387:53;;54401:8;54387:53;;;54427:3;54432:7;54387:53;;;;;;;:::i;:::-;;;;;;;;54453:81;54489:8;54507:1;54511:2;54515:3;54520:7;54529:4;54453:35;:81::i;:::-;53969:573;53853:689;;;;:::o;50511:1097::-;50761:7;:14;50747:3;:10;:28;50739:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50853:1;50839:16;;:2;:16;;;;50831:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50910:16;50929:12;:10;:12::i;:::-;50910:31;;50954:60;50975:8;50985:4;50991:2;50995:3;51000:7;51009:4;50954:20;:60::i;:::-;51032:9;51027:421;51051:3;:10;51047:1;:14;51027:421;;;51083:10;51096:3;51100:1;51096:6;;;;;;;;:::i;:::-;;;;;;;;51083:19;;51117:14;51134:7;51142:1;51134:10;;;;;;;;:::i;:::-;;;;;;;;51117:27;;51161:19;51183:9;:13;51193:2;51183:13;;;;;;;;;;;:19;51197:4;51183:19;;;;;;;;;;;;;;;;51161:41;;51240:6;51225:11;:21;;51217:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51373:6;51359:11;:20;51337:9;:13;51347:2;51337:13;;;;;;;;;;;:19;51351:4;51337:19;;;;;;;;;;;;;;;:42;;;;51430:6;51409:9;:13;51419:2;51409:13;;;;;;;;;;;:17;51423:2;51409:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;51068:380;;;51063:3;;;;:::i;:::-;;;51027:421;;;;51495:2;51465:47;;51489:4;51465:47;;51479:8;51465:47;;;51499:3;51504:7;51465:47;;;;;;;:::i;:::-;;;;;;;;51525:75;51561:8;51571:4;51577:2;51581:3;51586:7;51595:4;51525:35;:75::i;:::-;50728:880;50511:1097;;;;;:::o;13634:147::-;13717:18;13730:4;13717:12;:18::i;:::-;11783:30;11794:4;11800:12;:10;:12::i;:::-;11783:10;:30::i;:::-;13748:25:::1;13759:4;13765:7;13748:10;:25::i;:::-;13634:147:::0;;;:::o;22911:152::-;22981:4;23005:50;23010:3;:10;;23046:5;23030:23;;23022:32;;23005:4;:50::i;:::-;22998:57;;22911:152;;;;:::o;14682:218::-;14789:12;:10;:12::i;:::-;14778:23;;:7;:23;;;14770:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;14866:26;14878:4;14884:7;14866:11;:26::i;:::-;14682:218;;:::o;23239:158::-;23312:4;23336:53;23344:3;:10;;23380:5;23364:23;;23356:32;;23336:7;:53::i;:::-;23329:60;;23239:158;;;;:::o;63304:120::-;62848:8;:6;:8::i;:::-;62840:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;63373:5:::1;63363:7;;:15;;;;;;;;;;;;;;;;;;63394:22;63403:12;:10;:12::i;:::-;63394:22;;;;;;:::i;:::-;;;;;;;;63304:120::o:0;55645:881::-;55785:1;55766:21;;:7;:21;;;;55758:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;55860:7;:14;55846:3;:10;:28;55838:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55932:16;55951:12;:10;:12::i;:::-;55932:31;;55976:69;55997:8;56007:7;56024:1;56028:3;56033:7;55976:69;;;;;;;;;;;;:20;:69::i;:::-;56063:6;56058:385;56079:3;:10;56075:1;:14;56058:385;;;56111:10;56124:3;56128:1;56124:6;;;;;;;;:::i;:::-;;;;;;;;56111:19;;56145:14;56162:7;56170:1;56162:10;;;;;;;;:::i;:::-;;;;;;;;56145:27;;56189:22;56214:9;:13;56224:2;56214:13;;;;;;;;;;;:22;56228:7;56214:22;;;;;;;;;;;;;;;;56189:47;;56277:6;56259:14;:24;;56251:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56410:6;56393:14;:23;56368:9;:13;56378:2;56368:13;;;;;;;;;;;:22;56382:7;56368:22;;;;;;;;;;;;;;;:48;;;;56096:347;;;56091:3;;;;;:::i;:::-;;;;56058:385;;;;56501:1;56460:58;;56484:7;56460:58;;56474:8;56460:58;;;56505:3;56510:7;56460:58;;;;;;;:::i;:::-;;;;;;;;55747:779;55645:881;;;:::o;52941:556::-;53075:1;53056:21;;:7;:21;;;;53048:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;53128:16;53147:12;:10;:12::i;:::-;53128:31;;53172:107;53193:8;53211:1;53215:7;53224:21;53242:2;53224:17;:21::i;:::-;53247:25;53265:6;53247:17;:25::i;:::-;53274:4;53172:20;:107::i;:::-;53318:6;53292:9;:13;53302:2;53292:13;;;;;;;;;;;:22;53306:7;53292:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;53377:7;53340:57;;53373:1;53340:57;;53355:8;53340:57;;;53386:2;53390:6;53340:57;;;;;;;:::i;:::-;;;;;;;;53410:79;53441:8;53459:1;53463:7;53472:2;53476:6;53484:4;53410:30;:79::i;:::-;53037:460;52941:556;;;;:::o;63045:118::-;62571:8;:6;:8::i;:::-;62570:9;62562:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;63115:4:::1;63105:7;;:14;;;;;;;;;;;;;;;;;;63135:20;63142:12;:10;:12::i;:::-;63135:20;;;;;;:::i;:::-;;;;;;;;63045:118::o:0;24197:158::-;24271:7;24322:22;24326:3;:10;;24338:5;24322:3;:22::i;:::-;24314:31;;24291:56;;24197:158;;;;:::o;23736:117::-;23799:7;23826:19;23834:3;:10;;23826:7;:19::i;:::-;23819:26;;23736:117;;;:::o;14026:149::-;14110:18;14123:4;14110:12;:18::i;:::-;11783:30;11794:4;11800:12;:10;:12::i;:::-;11783:10;:30::i;:::-;14141:26:::1;14153:4;14159:7;14141:11;:26::i;:::-;14026:149:::0;;;:::o;49310:843::-;49535:1;49521:16;;:2;:16;;;;49513:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49592:16;49611:12;:10;:12::i;:::-;49592:31;;49636:96;49657:8;49667:4;49673:2;49677:21;49695:2;49677:17;:21::i;:::-;49700:25;49718:6;49700:17;:25::i;:::-;49727:4;49636:20;:96::i;:::-;49745:19;49767:9;:13;49777:2;49767:13;;;;;;;;;;;:19;49781:4;49767:19;;;;;;;;;;;;;;;;49745:41;;49820:6;49805:11;:21;;49797:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49945:6;49931:11;:20;49909:9;:13;49919:2;49909:13;;;;;;;;;;;:19;49923:4;49909:19;;;;;;;;;;;;;;;:42;;;;49994:6;49973:9;:13;49983:2;49973:13;;;;;;;;;;;:17;49987:2;49973:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;50049:2;50018:46;;50043:4;50018:46;;50033:8;50018:46;;;50053:2;50057:6;50018:46;;;;;;;:::i;:::-;;;;;;;;50077:68;50108:8;50118:4;50124:2;50128;50132:6;50140:4;50077:30;:68::i;:::-;49502:651;;49310:843;;;;;:::o;54801:641::-;54916:1;54897:21;;:7;:21;;;;54889:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;54971:16;54990:12;:10;:12::i;:::-;54971:31;;55015:105;55036:8;55046:7;55063:1;55067:21;55085:2;55067:17;:21::i;:::-;55090:25;55108:6;55090:17;:25::i;:::-;55015:105;;;;;;;;;;;;:20;:105::i;:::-;55133:22;55158:9;:13;55168:2;55158:13;;;;;;;;;;;:22;55172:7;55158:22;;;;;;;;;;;;;;;;55133:47;;55217:6;55199:14;:24;;55191:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55342:6;55325:14;:23;55300:9;:13;55310:2;55300:13;;;;;;;;;;;:22;55314:7;55300:22;;;;;;;;;;;;;;;:48;;;;55419:1;55377:57;;55402:7;55377:57;;55392:8;55377:57;;;55423:2;55427:6;55377:57;;;;;;;:::i;:::-;;;;;;;;54878:564;;54801:641;;;:::o;68847:522::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;68940:26:::1;:24;:26::i;:::-;68977:25;:23;:25::i;:::-;69013:32;:30;:32::i;:::-;69056:42;:40;:42::i;:::-;69109:26;:24;:26::i;:::-;69146:29;69171:3;69146:24;:29::i;:::-;69186:34;:32;:34::i;:::-;69231:27;:25;:27::i;:::-;69269:34;:32;:34::i;:::-;69314:47;69357:3;69314:42;:47::i;:::-;1892:14:::0;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;68847:522;:::o;27229:238::-;27314:4;27353:53;27338:68;;;:11;:68;;;;:121;;;;27423:36;27447:11;27423:23;:36::i;:::-;27338:121;27331:128;;27229:238;;;:::o;71669:375::-;71970:66;71997:8;72007:4;72013:2;72017:3;72022:7;72031:4;71970:26;:66::i;:::-;71669:375;;;;;;:::o;58527:821::-;58781:15;:2;:13;;;:15::i;:::-;58777:564;;;58845:2;58817:54;;;58872:8;58882:4;58888:3;58893:7;58902:4;58817:90;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58813:517;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;59203:6;59196:14;;;;;;;;;;;:::i;:::-;;;;;;;;58813:517;;;59252:62;;;;;;;;;;:::i;:::-;;;;;;;;58813:517;58969:63;;;58957:75;;;:8;:75;;;;58953:174;;59057:50;;;;;;;;;;:::i;:::-;;;;;;;;58953:174;58908:234;58777:564;58527:821;;;;;;:::o;12654:406::-;12734:22;12742:4;12748:7;12734;:22::i;:::-;12730:323;;12866:52;12905:7;12866:52;;12915:2;12866:30;:52::i;:::-;12975:49;13014:4;13006:13;;13021:2;12975:30;:49::i;:::-;12787:252;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12773:268;;;;;;;;;;;:::i;:::-;;;;;;;;12730:323;12654:406;;:::o;15930:229::-;16005:22;16013:4;16019:7;16005;:22::i;:::-;16000:152;;16076:4;16044:6;:12;16051:4;16044:12;;;;;;;;;;;:20;;:29;16065:7;16044:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;16127:12;:10;:12::i;:::-;16100:40;;16118:7;16100:40;;16112:4;16100:40;;;;;;;;;;16000:152;15930:229;;:::o;18196:414::-;18259:4;18281:21;18291:3;18296:5;18281:9;:21::i;:::-;18276:327;;18319:3;:11;;18336:5;18319:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18502:3;:11;;:18;;;;18480:3;:12;;:19;18493:5;18480:19;;;;;;;;;;;:40;;;;18542:4;18535:11;;;;18276:327;18586:5;18579:12;;18196:414;;;;;:::o;16167:230::-;16242:22;16250:4;16256:7;16242;:22::i;:::-;16238:152;;;16313:5;16281:6;:12;16288:4;16281:12;;;;;;;;;;;:20;;:29;16302:7;16281:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;16365:12;:10;:12::i;:::-;16338:40;;16356:7;16338:40;;16350:4;16338:40;;;;;;;;;;16238:152;16167:230;;:::o;18786:1407::-;18852:4;18970:18;18991:3;:12;;:19;19004:5;18991:19;;;;;;;;;;;;18970:40;;19041:1;19027:10;:15;19023:1163;;19389:21;19426:1;19413:10;:14;;;;:::i;:::-;19389:38;;19442:17;19483:1;19462:3;:11;;:18;;;;:22;;;;:::i;:::-;19442:42;;19518:13;19505:9;:26;19501:405;;19552:17;19572:3;:11;;19584:9;19572:22;;;;;;;;:::i;:::-;;;;;;;;;;19552:42;;19726:9;19697:3;:11;;19709:13;19697:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;19837:10;19811:3;:12;;:23;19824:9;19811:23;;;;;;;;;;;:36;;;;19533:373;19501:405;19987:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20082:3;:12;;:19;20095:5;20082:19;;;;;;;;;;;20075:26;;;20125:4;20118:11;;;;;;;19023:1163;20169:5;20162:12;;;18786:1407;;;;;:::o;59356:198::-;59422:16;59451:22;59490:1;59476:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59451:41;;59514:7;59503:5;59509:1;59503:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;59541:5;59534:12;;;59356:198;;;:::o;57735:784::-;57964:15;:2;:13;;;:15::i;:::-;57960:552;;;58028:2;58000:49;;;58050:8;58060:4;58066:2;58070:6;58078:4;58000:83;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57996:505;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;58374:6;58367:14;;;;;;;;;;;:::i;:::-;;;;;;;;57996:505;;;58423:62;;;;;;;;;;:::i;:::-;;;;;;;;57996:505;58145:58;;;58133:70;;;:8;:70;;;;58129:169;;58228:50;;;;;;;;;;:::i;:::-;;;;;;;;58129:169;58084:229;57960:552;57735:784;;;;;;:::o;20947:120::-;21014:7;21041:3;:11;;21053:5;21041:18;;;;;;;;:::i;:::-;;;;;;;;;;21034:25;;20947:120;;;;:::o;20494:109::-;20550:7;20577:3;:11;;:18;;;;20570:25;;20494:109;;;:::o;2753:65::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;1892:14;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;2753:65::o;4993:64::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;1892:14;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;4993:64::o;9945:71::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;1892:14;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;9945:71::o;26913:81::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;1892:14;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;26913:81::o;66008:196::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;66076:17:::1;66096:12;:10;:12::i;:::-;66076:32;;66128:9;66119:6;;:18;;;;;;;;;;;;;;;;;;66186:9;66153:43;;66182:1;66153:43;;;;;;;;;;;;66065:139;1892:14:::0;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;66008:196::o;45033:107::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;45119:13:::1;45127:4;45119:7;:13::i;:::-;1892:14:::0;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;45033:107;:::o;60196:73::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;1892:14;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;60196:73::o;62053:92::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;62132:5:::1;62122:7;;:15;;;;;;;;;;;;;;;;;;1892:14:::0;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;62053:92::o;64254:73::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;1892:14;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;64254:73::o;69377:255::-;1620:13;;;;;;;;;;;:30;;;;1638:12;;;;;;;;;;1637:13;1620:30;1612:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1714:19;1737:13;;;;;;;;;;;1736:14;1714:36;;1765:14;1761:101;;;1812:4;1796:13;;:20;;;;;;;;;;;;;;;;;;1846:4;1831:12;;:19;;;;;;;;;;;;;;;;;;1761:101;69484:44:::1;10224:4;69495:18:::0;::::1;69515:12;:10;:12::i;:::-;69484:10;:44::i;:::-;69539:37;68602:24;69563:12;:10;:12::i;:::-;69539:10;:37::i;:::-;69587;68671:24;69611:12;:10;:12::i;:::-;69587:10;:37::i;:::-;1892:14:::0;1888:68;;;1939:5;1923:13;;:21;;;;;;;;;;;;;;;;;;1888:68;1601:362;69377:255;:::o;11905:228::-;11990:4;12029:43;12014:58;;;:11;:58;;;;:111;;;;12089:36;12113:11;12089:23;:36::i;:::-;12014:111;12007:118;;11905:228;;;:::o;64481:424::-;64752:66;64779:8;64789:4;64795:2;64799:3;64804:7;64813:4;64752:26;:66::i;:::-;64840:8;:6;:8::i;:::-;64839:9;64831:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64481:424;;;;;;:::o;37600:422::-;37660:4;37868:12;37979:7;37967:20;37959:28;;38013:1;38006:4;:8;37999:15;;;37600:422;;;:::o;6980:447::-;7055:13;7081:19;7126:1;7117:6;7113:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7103:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7081:47;;7139:15;:6;7146:1;7139:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;7165;:6;7172:1;7165:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;7196:9;7221:1;7212:6;7208:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;7196:26;;7191:131;7228:1;7224;:5;7191:131;;;7263:8;7280:3;7272:5;:11;7263:21;;;;;;;:::i;:::-;;;;;7251:6;7258:1;7251:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;7309:1;7299:11;;;;;7231:3;;;;:::i;:::-;;;7191:131;;;;7349:1;7340:5;:10;7332:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;7412:6;7398:21;;;6980:447;;;;:::o;20279:129::-;20352:4;20399:1;20376:3;:12;;:19;20389:5;20376:19;;;;;;;;;;;;:24;;20369:31;;20279:129;;;;:::o;29401:169::-;29489:31;29506:4;29512:7;29489:16;:31::i;:::-;29531;29554:7;29531:12;:18;29544:4;29531:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;29401:169;;:::o;5127:168::-;5212:4;5251:36;5236:51;;;:11;:51;;;;5229:58;;5127:168;;;:::o;57482:245::-;;;;;;;:::o;15483:112::-;15562:25;15573:4;15579:7;15562:10;:25::i;:::-;15483:112;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:139::-;3447:5;3485:6;3472:20;3463:29;;3501:33;3528:5;3501:33;:::i;:::-;3401:139;;;;:::o;3546:137::-;3591:5;3629:6;3616:20;3607:29;;3645:32;3671:5;3645:32;:::i;:::-;3546:137;;;;:::o;3689:141::-;3745:5;3776:6;3770:13;3761:22;;3792:32;3818:5;3792:32;:::i;:::-;3689:141;;;;:::o;3849:338::-;3904:5;3953:3;3946:4;3938:6;3934:17;3930:27;3920:122;;3961:79;;:::i;:::-;3920:122;4078:6;4065:20;4103:78;4177:3;4169:6;4162:4;4154:6;4150:17;4103:78;:::i;:::-;4094:87;;3910:277;3849:338;;;;:::o;4207:340::-;4263:5;4312:3;4305:4;4297:6;4293:17;4289:27;4279:122;;4320:79;;:::i;:::-;4279:122;4437:6;4424:20;4462:79;4537:3;4529:6;4522:4;4514:6;4510:17;4462:79;:::i;:::-;4453:88;;4269:278;4207:340;;;;:::o;4553:139::-;4599:5;4637:6;4624:20;4615:29;;4653:33;4680:5;4653:33;:::i;:::-;4553:139;;;;:::o;4698:329::-;4757:6;4806:2;4794:9;4785:7;4781:23;4777:32;4774:119;;;4812:79;;:::i;:::-;4774:119;4932:1;4957:53;5002:7;4993:6;4982:9;4978:22;4957:53;:::i;:::-;4947:63;;4903:117;4698:329;;;;:::o;5033:474::-;5101:6;5109;5158:2;5146:9;5137:7;5133:23;5129:32;5126:119;;;5164:79;;:::i;:::-;5126:119;5284:1;5309:53;5354:7;5345:6;5334:9;5330:22;5309:53;:::i;:::-;5299:63;;5255:117;5411:2;5437:53;5482:7;5473:6;5462:9;5458:22;5437:53;:::i;:::-;5427:63;;5382:118;5033:474;;;;;:::o;5513:1509::-;5667:6;5675;5683;5691;5699;5748:3;5736:9;5727:7;5723:23;5719:33;5716:120;;;5755:79;;:::i;:::-;5716:120;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;6158:2;6147:9;6143:18;6130:32;6189:18;6181:6;6178:30;6175:117;;;6211:79;;:::i;:::-;6175:117;6316:78;6386:7;6377:6;6366:9;6362:22;6316:78;:::i;:::-;6306:88;;6101:303;6471:2;6460:9;6456:18;6443:32;6502:18;6494:6;6491:30;6488:117;;;6524:79;;:::i;:::-;6488:117;6629:78;6699:7;6690:6;6679:9;6675:22;6629:78;:::i;:::-;6619:88;;6414:303;6784:3;6773:9;6769:19;6756:33;6816:18;6808:6;6805:30;6802:117;;;6838:79;;:::i;:::-;6802:117;6943:62;6997:7;6988:6;6977:9;6973:22;6943:62;:::i;:::-;6933:72;;6727:288;5513:1509;;;;;;;;:::o;7028:1089::-;7132:6;7140;7148;7156;7164;7213:3;7201:9;7192:7;7188:23;7184:33;7181:120;;;7220:79;;:::i;:::-;7181:120;7340:1;7365:53;7410:7;7401:6;7390:9;7386:22;7365:53;:::i;:::-;7355:63;;7311:117;7467:2;7493:53;7538:7;7529:6;7518:9;7514:22;7493:53;:::i;:::-;7483:63;;7438:118;7595:2;7621:53;7666:7;7657:6;7646:9;7642:22;7621:53;:::i;:::-;7611:63;;7566:118;7723:2;7749:53;7794:7;7785:6;7774:9;7770:22;7749:53;:::i;:::-;7739:63;;7694:118;7879:3;7868:9;7864:19;7851:33;7911:18;7903:6;7900:30;7897:117;;;7933:79;;:::i;:::-;7897:117;8038:62;8092:7;8083:6;8072:9;8068:22;8038:62;:::i;:::-;8028:72;;7822:288;7028:1089;;;;;;;;:::o;8123:1039::-;8250:6;8258;8266;8315:2;8303:9;8294:7;8290:23;8286:32;8283:119;;;8321:79;;:::i;:::-;8283:119;8441:1;8466:53;8511:7;8502:6;8491:9;8487:22;8466:53;:::i;:::-;8456:63;;8412:117;8596:2;8585:9;8581:18;8568:32;8627:18;8619:6;8616:30;8613:117;;;8649:79;;:::i;:::-;8613:117;8754:78;8824:7;8815:6;8804:9;8800:22;8754:78;:::i;:::-;8744:88;;8539:303;8909:2;8898:9;8894:18;8881:32;8940:18;8932:6;8929:30;8926:117;;;8962:79;;:::i;:::-;8926:117;9067:78;9137:7;9128:6;9117:9;9113:22;9067:78;:::i;:::-;9057:88;;8852:303;8123:1039;;;;;:::o;9168:1363::-;9313:6;9321;9329;9337;9386:3;9374:9;9365:7;9361:23;9357:33;9354:120;;;9393:79;;:::i;:::-;9354:120;9513:1;9538:53;9583:7;9574:6;9563:9;9559:22;9538:53;:::i;:::-;9528:63;;9484:117;9668:2;9657:9;9653:18;9640:32;9699:18;9691:6;9688:30;9685:117;;;9721:79;;:::i;:::-;9685:117;9826:78;9896:7;9887:6;9876:9;9872:22;9826:78;:::i;:::-;9816:88;;9611:303;9981:2;9970:9;9966:18;9953:32;10012:18;10004:6;10001:30;9998:117;;;10034:79;;:::i;:::-;9998:117;10139:78;10209:7;10200:6;10189:9;10185:22;10139:78;:::i;:::-;10129:88;;9924:303;10294:2;10283:9;10279:18;10266:32;10325:18;10317:6;10314:30;10311:117;;;10347:79;;:::i;:::-;10311:117;10452:62;10506:7;10497:6;10486:9;10482:22;10452:62;:::i;:::-;10442:72;;10237:287;9168:1363;;;;;;;:::o;10537:468::-;10602:6;10610;10659:2;10647:9;10638:7;10634:23;10630:32;10627:119;;;10665:79;;:::i;:::-;10627:119;10785:1;10810:53;10855:7;10846:6;10835:9;10831:22;10810:53;:::i;:::-;10800:63;;10756:117;10912:2;10938:50;10980:7;10971:6;10960:9;10956:22;10938:50;:::i;:::-;10928:60;;10883:115;10537:468;;;;;:::o;11011:474::-;11079:6;11087;11136:2;11124:9;11115:7;11111:23;11107:32;11104:119;;;11142:79;;:::i;:::-;11104:119;11262:1;11287:53;11332:7;11323:6;11312:9;11308:22;11287:53;:::i;:::-;11277:63;;11233:117;11389:2;11415:53;11460:7;11451:6;11440:9;11436:22;11415:53;:::i;:::-;11405:63;;11360:118;11011:474;;;;;:::o;11491:619::-;11568:6;11576;11584;11633:2;11621:9;11612:7;11608:23;11604:32;11601:119;;;11639:79;;:::i;:::-;11601:119;11759:1;11784:53;11829:7;11820:6;11809:9;11805:22;11784:53;:::i;:::-;11774:63;;11730:117;11886:2;11912:53;11957:7;11948:6;11937:9;11933:22;11912:53;:::i;:::-;11902:63;;11857:118;12014:2;12040:53;12085:7;12076:6;12065:9;12061:22;12040:53;:::i;:::-;12030:63;;11985:118;11491:619;;;;;:::o;12116:943::-;12211:6;12219;12227;12235;12284:3;12272:9;12263:7;12259:23;12255:33;12252:120;;;12291:79;;:::i;:::-;12252:120;12411:1;12436:53;12481:7;12472:6;12461:9;12457:22;12436:53;:::i;:::-;12426:63;;12382:117;12538:2;12564:53;12609:7;12600:6;12589:9;12585:22;12564:53;:::i;:::-;12554:63;;12509:118;12666:2;12692:53;12737:7;12728:6;12717:9;12713:22;12692:53;:::i;:::-;12682:63;;12637:118;12822:2;12811:9;12807:18;12794:32;12853:18;12845:6;12842:30;12839:117;;;12875:79;;:::i;:::-;12839:117;12980:62;13034:7;13025:6;13014:9;13010:22;12980:62;:::i;:::-;12970:72;;12765:287;12116:943;;;;;;;:::o;13065:894::-;13183:6;13191;13240:2;13228:9;13219:7;13215:23;13211:32;13208:119;;;13246:79;;:::i;:::-;13208:119;13394:1;13383:9;13379:17;13366:31;13424:18;13416:6;13413:30;13410:117;;;13446:79;;:::i;:::-;13410:117;13551:78;13621:7;13612:6;13601:9;13597:22;13551:78;:::i;:::-;13541:88;;13337:302;13706:2;13695:9;13691:18;13678:32;13737:18;13729:6;13726:30;13723:117;;;13759:79;;:::i;:::-;13723:117;13864:78;13934:7;13925:6;13914:9;13910:22;13864:78;:::i;:::-;13854:88;;13649:303;13065:894;;;;;:::o;13965:329::-;14024:6;14073:2;14061:9;14052:7;14048:23;14044:32;14041:119;;;14079:79;;:::i;:::-;14041:119;14199:1;14224:53;14269:7;14260:6;14249:9;14245:22;14224:53;:::i;:::-;14214:63;;14170:117;13965:329;;;;:::o;14300:474::-;14368:6;14376;14425:2;14413:9;14404:7;14400:23;14396:32;14393:119;;;14431:79;;:::i;:::-;14393:119;14551:1;14576:53;14621:7;14612:6;14601:9;14597:22;14576:53;:::i;:::-;14566:63;;14522:117;14678:2;14704:53;14749:7;14740:6;14729:9;14725:22;14704:53;:::i;:::-;14694:63;;14649:118;14300:474;;;;;:::o;14780:::-;14848:6;14856;14905:2;14893:9;14884:7;14880:23;14876:32;14873:119;;;14911:79;;:::i;:::-;14873:119;15031:1;15056:53;15101:7;15092:6;15081:9;15077:22;15056:53;:::i;:::-;15046:63;;15002:117;15158:2;15184:53;15229:7;15220:6;15209:9;15205:22;15184:53;:::i;:::-;15174:63;;15129:118;14780:474;;;;;:::o;15260:327::-;15318:6;15367:2;15355:9;15346:7;15342:23;15338:32;15335:119;;;15373:79;;:::i;:::-;15335:119;15493:1;15518:52;15562:7;15553:6;15542:9;15538:22;15518:52;:::i;:::-;15508:62;;15464:116;15260:327;;;;:::o;15593:349::-;15662:6;15711:2;15699:9;15690:7;15686:23;15682:32;15679:119;;;15717:79;;:::i;:::-;15679:119;15837:1;15862:63;15917:7;15908:6;15897:9;15893:22;15862:63;:::i;:::-;15852:73;;15808:127;15593:349;;;;:::o;15948:509::-;16017:6;16066:2;16054:9;16045:7;16041:23;16037:32;16034:119;;;16072:79;;:::i;:::-;16034:119;16220:1;16209:9;16205:17;16192:31;16250:18;16242:6;16239:30;16236:117;;;16272:79;;:::i;:::-;16236:117;16377:63;16432:7;16423:6;16412:9;16408:22;16377:63;:::i;:::-;16367:73;;16163:287;15948:509;;;;:::o;16463:329::-;16522:6;16571:2;16559:9;16550:7;16546:23;16542:32;16539:119;;;16577:79;;:::i;:::-;16539:119;16697:1;16722:53;16767:7;16758:6;16747:9;16743:22;16722:53;:::i;:::-;16712:63;;16668:117;16463:329;;;;:::o;16798:179::-;16867:10;16888:46;16930:3;16922:6;16888:46;:::i;:::-;16966:4;16961:3;16957:14;16943:28;;16798:179;;;;:::o;16983:118::-;17070:24;17088:5;17070:24;:::i;:::-;17065:3;17058:37;16983:118;;:::o;17137:732::-;17256:3;17285:54;17333:5;17285:54;:::i;:::-;17355:86;17434:6;17429:3;17355:86;:::i;:::-;17348:93;;17465:56;17515:5;17465:56;:::i;:::-;17544:7;17575:1;17560:284;17585:6;17582:1;17579:13;17560:284;;;17661:6;17655:13;17688:63;17747:3;17732:13;17688:63;:::i;:::-;17681:70;;17774:60;17827:6;17774:60;:::i;:::-;17764:70;;17620:224;17607:1;17604;17600:9;17595:14;;17560:284;;;17564:14;17860:3;17853:10;;17261:608;;;17137:732;;;;:::o;17875:109::-;17956:21;17971:5;17956:21;:::i;:::-;17951:3;17944:34;17875:109;;:::o;17990:118::-;18077:24;18095:5;18077:24;:::i;:::-;18072:3;18065:37;17990:118;;:::o;18114:360::-;18200:3;18228:38;18260:5;18228:38;:::i;:::-;18282:70;18345:6;18340:3;18282:70;:::i;:::-;18275:77;;18361:52;18406:6;18401:3;18394:4;18387:5;18383:16;18361:52;:::i;:::-;18438:29;18460:6;18438:29;:::i;:::-;18433:3;18429:39;18422:46;;18204:270;18114:360;;;;:::o;18480:364::-;18568:3;18596:39;18629:5;18596:39;:::i;:::-;18651:71;18715:6;18710:3;18651:71;:::i;:::-;18644:78;;18731:52;18776:6;18771:3;18764:4;18757:5;18753:16;18731:52;:::i;:::-;18808:29;18830:6;18808:29;:::i;:::-;18803:3;18799:39;18792:46;;18572:272;18480:364;;;;:::o;18850:377::-;18956:3;18984:39;19017:5;18984:39;:::i;:::-;19039:89;19121:6;19116:3;19039:89;:::i;:::-;19032:96;;19137:52;19182:6;19177:3;19170:4;19163:5;19159:16;19137:52;:::i;:::-;19214:6;19209:3;19205:16;19198:23;;18960:267;18850:377;;;;:::o;19233:366::-;19375:3;19396:67;19460:2;19455:3;19396:67;:::i;:::-;19389:74;;19472:93;19561:3;19472:93;:::i;:::-;19590:2;19585:3;19581:12;19574:19;;19233:366;;;:::o;19605:::-;19747:3;19768:67;19832:2;19827:3;19768:67;:::i;:::-;19761:74;;19844:93;19933:3;19844:93;:::i;:::-;19962:2;19957:3;19953:12;19946:19;;19605:366;;;:::o;19977:::-;20119:3;20140:67;20204:2;20199:3;20140:67;:::i;:::-;20133:74;;20216:93;20305:3;20216:93;:::i;:::-;20334:2;20329:3;20325:12;20318:19;;19977:366;;;:::o;20349:::-;20491:3;20512:67;20576:2;20571:3;20512:67;:::i;:::-;20505:74;;20588:93;20677:3;20588:93;:::i;:::-;20706:2;20701:3;20697:12;20690:19;;20349:366;;;:::o;20721:::-;20863:3;20884:67;20948:2;20943:3;20884:67;:::i;:::-;20877:74;;20960:93;21049:3;20960:93;:::i;:::-;21078:2;21073:3;21069:12;21062:19;;20721:366;;;:::o;21093:::-;21235:3;21256:67;21320:2;21315:3;21256:67;:::i;:::-;21249:74;;21332:93;21421:3;21332:93;:::i;:::-;21450:2;21445:3;21441:12;21434:19;;21093:366;;;:::o;21465:::-;21607:3;21628:67;21692:2;21687:3;21628:67;:::i;:::-;21621:74;;21704:93;21793:3;21704:93;:::i;:::-;21822:2;21817:3;21813:12;21806:19;;21465:366;;;:::o;21837:::-;21979:3;22000:67;22064:2;22059:3;22000:67;:::i;:::-;21993:74;;22076:93;22165:3;22076:93;:::i;:::-;22194:2;22189:3;22185:12;22178:19;;21837:366;;;:::o;22209:::-;22351:3;22372:67;22436:2;22431:3;22372:67;:::i;:::-;22365:74;;22448:93;22537:3;22448:93;:::i;:::-;22566:2;22561:3;22557:12;22550:19;;22209:366;;;:::o;22581:::-;22723:3;22744:67;22808:2;22803:3;22744:67;:::i;:::-;22737:74;;22820:93;22909:3;22820:93;:::i;:::-;22938:2;22933:3;22929:12;22922:19;;22581:366;;;:::o;22953:::-;23095:3;23116:67;23180:2;23175:3;23116:67;:::i;:::-;23109:74;;23192:93;23281:3;23192:93;:::i;:::-;23310:2;23305:3;23301:12;23294:19;;22953:366;;;:::o;23325:::-;23467:3;23488:67;23552:2;23547:3;23488:67;:::i;:::-;23481:74;;23564:93;23653:3;23564:93;:::i;:::-;23682:2;23677:3;23673:12;23666:19;;23325:366;;;:::o;23697:::-;23839:3;23860:67;23924:2;23919:3;23860:67;:::i;:::-;23853:74;;23936:93;24025:3;23936:93;:::i;:::-;24054:2;24049:3;24045:12;24038:19;;23697:366;;;:::o;24069:::-;24211:3;24232:67;24296:2;24291:3;24232:67;:::i;:::-;24225:74;;24308:93;24397:3;24308:93;:::i;:::-;24426:2;24421:3;24417:12;24410:19;;24069:366;;;:::o;24441:::-;24583:3;24604:67;24668:2;24663:3;24604:67;:::i;:::-;24597:74;;24680:93;24769:3;24680:93;:::i;:::-;24798:2;24793:3;24789:12;24782:19;;24441:366;;;:::o;24813:::-;24955:3;24976:67;25040:2;25035:3;24976:67;:::i;:::-;24969:74;;25052:93;25141:3;25052:93;:::i;:::-;25170:2;25165:3;25161:12;25154:19;;24813:366;;;:::o;25185:::-;25327:3;25348:67;25412:2;25407:3;25348:67;:::i;:::-;25341:74;;25424:93;25513:3;25424:93;:::i;:::-;25542:2;25537:3;25533:12;25526:19;;25185:366;;;:::o;25557:::-;25699:3;25720:67;25784:2;25779:3;25720:67;:::i;:::-;25713:74;;25796:93;25885:3;25796:93;:::i;:::-;25914:2;25909:3;25905:12;25898:19;;25557:366;;;:::o;25929:::-;26071:3;26092:67;26156:2;26151:3;26092:67;:::i;:::-;26085:74;;26168:93;26257:3;26168:93;:::i;:::-;26286:2;26281:3;26277:12;26270:19;;25929:366;;;:::o;26301:402::-;26461:3;26482:85;26564:2;26559:3;26482:85;:::i;:::-;26475:92;;26576:93;26665:3;26576:93;:::i;:::-;26694:2;26689:3;26685:12;26678:19;;26301:402;;;:::o;26709:366::-;26851:3;26872:67;26936:2;26931:3;26872:67;:::i;:::-;26865:74;;26948:93;27037:3;26948:93;:::i;:::-;27066:2;27061:3;27057:12;27050:19;;26709:366;;;:::o;27081:::-;27223:3;27244:67;27308:2;27303:3;27244:67;:::i;:::-;27237:74;;27320:93;27409:3;27320:93;:::i;:::-;27438:2;27433:3;27429:12;27422:19;;27081:366;;;:::o;27453:::-;27595:3;27616:67;27680:2;27675:3;27616:67;:::i;:::-;27609:74;;27692:93;27781:3;27692:93;:::i;:::-;27810:2;27805:3;27801:12;27794:19;;27453:366;;;:::o;27825:::-;27967:3;27988:67;28052:2;28047:3;27988:67;:::i;:::-;27981:74;;28064:93;28153:3;28064:93;:::i;:::-;28182:2;28177:3;28173:12;28166:19;;27825:366;;;:::o;28197:402::-;28357:3;28378:85;28460:2;28455:3;28378:85;:::i;:::-;28371:92;;28472:93;28561:3;28472:93;:::i;:::-;28590:2;28585:3;28581:12;28574:19;;28197:402;;;:::o;28605:366::-;28747:3;28768:67;28832:2;28827:3;28768:67;:::i;:::-;28761:74;;28844:93;28933:3;28844:93;:::i;:::-;28962:2;28957:3;28953:12;28946:19;;28605:366;;;:::o;28977:108::-;29054:24;29072:5;29054:24;:::i;:::-;29049:3;29042:37;28977:108;;:::o;29091:118::-;29178:24;29196:5;29178:24;:::i;:::-;29173:3;29166:37;29091:118;;:::o;29215:967::-;29597:3;29619:148;29763:3;29619:148;:::i;:::-;29612:155;;29784:95;29875:3;29866:6;29784:95;:::i;:::-;29777:102;;29896:148;30040:3;29896:148;:::i;:::-;29889:155;;30061:95;30152:3;30143:6;30061:95;:::i;:::-;30054:102;;30173:3;30166:10;;29215:967;;;;;:::o;30188:222::-;30281:4;30319:2;30308:9;30304:18;30296:26;;30332:71;30400:1;30389:9;30385:17;30376:6;30332:71;:::i;:::-;30188:222;;;;:::o;30416:1053::-;30739:4;30777:3;30766:9;30762:19;30754:27;;30791:71;30859:1;30848:9;30844:17;30835:6;30791:71;:::i;:::-;30872:72;30940:2;30929:9;30925:18;30916:6;30872:72;:::i;:::-;30991:9;30985:4;30981:20;30976:2;30965:9;30961:18;30954:48;31019:108;31122:4;31113:6;31019:108;:::i;:::-;31011:116;;31174:9;31168:4;31164:20;31159:2;31148:9;31144:18;31137:48;31202:108;31305:4;31296:6;31202:108;:::i;:::-;31194:116;;31358:9;31352:4;31348:20;31342:3;31331:9;31327:19;31320:49;31386:76;31457:4;31448:6;31386:76;:::i;:::-;31378:84;;30416:1053;;;;;;;;:::o;31475:751::-;31698:4;31736:3;31725:9;31721:19;31713:27;;31750:71;31818:1;31807:9;31803:17;31794:6;31750:71;:::i;:::-;31831:72;31899:2;31888:9;31884:18;31875:6;31831:72;:::i;:::-;31913;31981:2;31970:9;31966:18;31957:6;31913:72;:::i;:::-;31995;32063:2;32052:9;32048:18;32039:6;31995:72;:::i;:::-;32115:9;32109:4;32105:20;32099:3;32088:9;32084:19;32077:49;32143:76;32214:4;32205:6;32143:76;:::i;:::-;32135:84;;31475:751;;;;;;;;:::o;32232:373::-;32375:4;32413:2;32402:9;32398:18;32390:26;;32462:9;32456:4;32452:20;32448:1;32437:9;32433:17;32426:47;32490:108;32593:4;32584:6;32490:108;:::i;:::-;32482:116;;32232:373;;;;:::o;32611:634::-;32832:4;32870:2;32859:9;32855:18;32847:26;;32919:9;32913:4;32909:20;32905:1;32894:9;32890:17;32883:47;32947:108;33050:4;33041:6;32947:108;:::i;:::-;32939:116;;33102:9;33096:4;33092:20;33087:2;33076:9;33072:18;33065:48;33130:108;33233:4;33224:6;33130:108;:::i;:::-;33122:116;;32611:634;;;;;:::o;33251:210::-;33338:4;33376:2;33365:9;33361:18;33353:26;;33389:65;33451:1;33440:9;33436:17;33427:6;33389:65;:::i;:::-;33251:210;;;;:::o;33467:222::-;33560:4;33598:2;33587:9;33583:18;33575:26;;33611:71;33679:1;33668:9;33664:17;33655:6;33611:71;:::i;:::-;33467:222;;;;:::o;33695:313::-;33808:4;33846:2;33835:9;33831:18;33823:26;;33895:9;33889:4;33885:20;33881:1;33870:9;33866:17;33859:47;33923:78;33996:4;33987:6;33923:78;:::i;:::-;33915:86;;33695:313;;;;:::o;34014:419::-;34180:4;34218:2;34207:9;34203:18;34195:26;;34267:9;34261:4;34257:20;34253:1;34242:9;34238:17;34231:47;34295:131;34421:4;34295:131;:::i;:::-;34287:139;;34014:419;;;:::o;34439:::-;34605:4;34643:2;34632:9;34628:18;34620:26;;34692:9;34686:4;34682:20;34678:1;34667:9;34663:17;34656:47;34720:131;34846:4;34720:131;:::i;:::-;34712:139;;34439:419;;;:::o;34864:::-;35030:4;35068:2;35057:9;35053:18;35045:26;;35117:9;35111:4;35107:20;35103:1;35092:9;35088:17;35081:47;35145:131;35271:4;35145:131;:::i;:::-;35137:139;;34864:419;;;:::o;35289:::-;35455:4;35493:2;35482:9;35478:18;35470:26;;35542:9;35536:4;35532:20;35528:1;35517:9;35513:17;35506:47;35570:131;35696:4;35570:131;:::i;:::-;35562:139;;35289:419;;;:::o;35714:::-;35880:4;35918:2;35907:9;35903:18;35895:26;;35967:9;35961:4;35957:20;35953:1;35942:9;35938:17;35931:47;35995:131;36121:4;35995:131;:::i;:::-;35987:139;;35714:419;;;:::o;36139:::-;36305:4;36343:2;36332:9;36328:18;36320:26;;36392:9;36386:4;36382:20;36378:1;36367:9;36363:17;36356:47;36420:131;36546:4;36420:131;:::i;:::-;36412:139;;36139:419;;;:::o;36564:::-;36730:4;36768:2;36757:9;36753:18;36745:26;;36817:9;36811:4;36807:20;36803:1;36792:9;36788:17;36781:47;36845:131;36971:4;36845:131;:::i;:::-;36837:139;;36564:419;;;:::o;36989:::-;37155:4;37193:2;37182:9;37178:18;37170:26;;37242:9;37236:4;37232:20;37228:1;37217:9;37213:17;37206:47;37270:131;37396:4;37270:131;:::i;:::-;37262:139;;36989:419;;;:::o;37414:::-;37580:4;37618:2;37607:9;37603:18;37595:26;;37667:9;37661:4;37657:20;37653:1;37642:9;37638:17;37631:47;37695:131;37821:4;37695:131;:::i;:::-;37687:139;;37414:419;;;:::o;37839:::-;38005:4;38043:2;38032:9;38028:18;38020:26;;38092:9;38086:4;38082:20;38078:1;38067:9;38063:17;38056:47;38120:131;38246:4;38120:131;:::i;:::-;38112:139;;37839:419;;;:::o;38264:::-;38430:4;38468:2;38457:9;38453:18;38445:26;;38517:9;38511:4;38507:20;38503:1;38492:9;38488:17;38481:47;38545:131;38671:4;38545:131;:::i;:::-;38537:139;;38264:419;;;:::o;38689:::-;38855:4;38893:2;38882:9;38878:18;38870:26;;38942:9;38936:4;38932:20;38928:1;38917:9;38913:17;38906:47;38970:131;39096:4;38970:131;:::i;:::-;38962:139;;38689:419;;;:::o;39114:::-;39280:4;39318:2;39307:9;39303:18;39295:26;;39367:9;39361:4;39357:20;39353:1;39342:9;39338:17;39331:47;39395:131;39521:4;39395:131;:::i;:::-;39387:139;;39114:419;;;:::o;39539:::-;39705:4;39743:2;39732:9;39728:18;39720:26;;39792:9;39786:4;39782:20;39778:1;39767:9;39763:17;39756:47;39820:131;39946:4;39820:131;:::i;:::-;39812:139;;39539:419;;;:::o;39964:::-;40130:4;40168:2;40157:9;40153:18;40145:26;;40217:9;40211:4;40207:20;40203:1;40192:9;40188:17;40181:47;40245:131;40371:4;40245:131;:::i;:::-;40237:139;;39964:419;;;:::o;40389:::-;40555:4;40593:2;40582:9;40578:18;40570:26;;40642:9;40636:4;40632:20;40628:1;40617:9;40613:17;40606:47;40670:131;40796:4;40670:131;:::i;:::-;40662:139;;40389:419;;;:::o;40814:::-;40980:4;41018:2;41007:9;41003:18;40995:26;;41067:9;41061:4;41057:20;41053:1;41042:9;41038:17;41031:47;41095:131;41221:4;41095:131;:::i;:::-;41087:139;;40814:419;;;:::o;41239:::-;41405:4;41443:2;41432:9;41428:18;41420:26;;41492:9;41486:4;41482:20;41478:1;41467:9;41463:17;41456:47;41520:131;41646:4;41520:131;:::i;:::-;41512:139;;41239:419;;;:::o;41664:::-;41830:4;41868:2;41857:9;41853:18;41845:26;;41917:9;41911:4;41907:20;41903:1;41892:9;41888:17;41881:47;41945:131;42071:4;41945:131;:::i;:::-;41937:139;;41664:419;;;:::o;42089:::-;42255:4;42293:2;42282:9;42278:18;42270:26;;42342:9;42336:4;42332:20;42328:1;42317:9;42313:17;42306:47;42370:131;42496:4;42370:131;:::i;:::-;42362:139;;42089:419;;;:::o;42514:::-;42680:4;42718:2;42707:9;42703:18;42695:26;;42767:9;42761:4;42757:20;42753:1;42742:9;42738:17;42731:47;42795:131;42921:4;42795:131;:::i;:::-;42787:139;;42514:419;;;:::o;42939:::-;43105:4;43143:2;43132:9;43128:18;43120:26;;43192:9;43186:4;43182:20;43178:1;43167:9;43163:17;43156:47;43220:131;43346:4;43220:131;:::i;:::-;43212:139;;42939:419;;;:::o;43364:::-;43530:4;43568:2;43557:9;43553:18;43545:26;;43617:9;43611:4;43607:20;43603:1;43592:9;43588:17;43581:47;43645:131;43771:4;43645:131;:::i;:::-;43637:139;;43364:419;;;:::o;43789:::-;43955:4;43993:2;43982:9;43978:18;43970:26;;44042:9;44036:4;44032:20;44028:1;44017:9;44013:17;44006:47;44070:131;44196:4;44070:131;:::i;:::-;44062:139;;43789:419;;;:::o;44214:222::-;44307:4;44345:2;44334:9;44330:18;44322:26;;44358:71;44426:1;44415:9;44411:17;44402:6;44358:71;:::i;:::-;44214:222;;;;:::o;44442:332::-;44563:4;44601:2;44590:9;44586:18;44578:26;;44614:71;44682:1;44671:9;44667:17;44658:6;44614:71;:::i;:::-;44695:72;44763:2;44752:9;44748:18;44739:6;44695:72;:::i;:::-;44442:332;;;;;:::o;44780:129::-;44814:6;44841:20;;:::i;:::-;44831:30;;44870:33;44898:4;44890:6;44870:33;:::i;:::-;44780:129;;;:::o;44915:75::-;44948:6;44981:2;44975:9;44965:19;;44915:75;:::o;44996:311::-;45073:4;45163:18;45155:6;45152:30;45149:56;;;45185:18;;:::i;:::-;45149:56;45235:4;45227:6;45223:17;45215:25;;45295:4;45289;45285:15;45277:23;;44996:311;;;:::o;45313:::-;45390:4;45480:18;45472:6;45469:30;45466:56;;;45502:18;;:::i;:::-;45466:56;45552:4;45544:6;45540:17;45532:25;;45612:4;45606;45602:15;45594:23;;45313:311;;;:::o;45630:307::-;45691:4;45781:18;45773:6;45770:30;45767:56;;;45803:18;;:::i;:::-;45767:56;45841:29;45863:6;45841:29;:::i;:::-;45833:37;;45925:4;45919;45915:15;45907:23;;45630:307;;;:::o;45943:308::-;46005:4;46095:18;46087:6;46084:30;46081:56;;;46117:18;;:::i;:::-;46081:56;46155:29;46177:6;46155:29;:::i;:::-;46147:37;;46239:4;46233;46229:15;46221:23;;45943:308;;;:::o;46257:132::-;46324:4;46347:3;46339:11;;46377:4;46372:3;46368:14;46360:22;;46257:132;;;:::o;46395:114::-;46462:6;46496:5;46490:12;46480:22;;46395:114;;;:::o;46515:98::-;46566:6;46600:5;46594:12;46584:22;;46515:98;;;:::o;46619:99::-;46671:6;46705:5;46699:12;46689:22;;46619:99;;;:::o;46724:113::-;46794:4;46826;46821:3;46817:14;46809:22;;46724:113;;;:::o;46843:184::-;46942:11;46976:6;46971:3;46964:19;47016:4;47011:3;47007:14;46992:29;;46843:184;;;;:::o;47033:168::-;47116:11;47150:6;47145:3;47138:19;47190:4;47185:3;47181:14;47166:29;;47033:168;;;;:::o;47207:169::-;47291:11;47325:6;47320:3;47313:19;47365:4;47360:3;47356:14;47341:29;;47207:169;;;;:::o;47382:148::-;47484:11;47521:3;47506:18;;47382:148;;;;:::o;47536:305::-;47576:3;47595:20;47613:1;47595:20;:::i;:::-;47590:25;;47629:20;47647:1;47629:20;:::i;:::-;47624:25;;47783:1;47715:66;47711:74;47708:1;47705:81;47702:107;;;47789:18;;:::i;:::-;47702:107;47833:1;47830;47826:9;47819:16;;47536:305;;;;:::o;47847:348::-;47887:7;47910:20;47928:1;47910:20;:::i;:::-;47905:25;;47944:20;47962:1;47944:20;:::i;:::-;47939:25;;48132:1;48064:66;48060:74;48057:1;48054:81;48049:1;48042:9;48035:17;48031:105;48028:131;;;48139:18;;:::i;:::-;48028:131;48187:1;48184;48180:9;48169:20;;47847:348;;;;:::o;48201:191::-;48241:4;48261:20;48279:1;48261:20;:::i;:::-;48256:25;;48295:20;48313:1;48295:20;:::i;:::-;48290:25;;48334:1;48331;48328:8;48325:34;;;48339:18;;:::i;:::-;48325:34;48384:1;48381;48377:9;48369:17;;48201:191;;;;:::o;48398:96::-;48435:7;48464:24;48482:5;48464:24;:::i;:::-;48453:35;;48398:96;;;:::o;48500:90::-;48534:7;48577:5;48570:13;48563:21;48552:32;;48500:90;;;:::o;48596:77::-;48633:7;48662:5;48651:16;;48596:77;;;:::o;48679:149::-;48715:7;48755:66;48748:5;48744:78;48733:89;;48679:149;;;:::o;48834:126::-;48871:7;48911:42;48904:5;48900:54;48889:65;;48834:126;;;:::o;48966:77::-;49003:7;49032:5;49021:16;;48966:77;;;:::o;49049:154::-;49133:6;49128:3;49123;49110:30;49195:1;49186:6;49181:3;49177:16;49170:27;49049:154;;;:::o;49209:307::-;49277:1;49287:113;49301:6;49298:1;49295:13;49287:113;;;49386:1;49381:3;49377:11;49371:18;49367:1;49362:3;49358:11;49351:39;49323:2;49320:1;49316:10;49311:15;;49287:113;;;49418:6;49415:1;49412:13;49409:101;;;49498:1;49489:6;49484:3;49480:16;49473:27;49409:101;49258:258;49209:307;;;:::o;49522:171::-;49561:3;49584:24;49602:5;49584:24;:::i;:::-;49575:33;;49630:4;49623:5;49620:15;49617:41;;;49638:18;;:::i;:::-;49617:41;49685:1;49678:5;49674:13;49667:20;;49522:171;;;:::o;49699:320::-;49743:6;49780:1;49774:4;49770:12;49760:22;;49827:1;49821:4;49817:12;49848:18;49838:81;;49904:4;49896:6;49892:17;49882:27;;49838:81;49966:2;49958:6;49955:14;49935:18;49932:38;49929:84;;;49985:18;;:::i;:::-;49929:84;49750:269;49699:320;;;:::o;50025:281::-;50108:27;50130:4;50108:27;:::i;:::-;50100:6;50096:40;50238:6;50226:10;50223:22;50202:18;50190:10;50187:34;50184:62;50181:88;;;50249:18;;:::i;:::-;50181:88;50289:10;50285:2;50278:22;50068:238;50025:281;;:::o;50312:233::-;50351:3;50374:24;50392:5;50374:24;:::i;:::-;50365:33;;50420:66;50413:5;50410:77;50407:103;;;50490:18;;:::i;:::-;50407:103;50537:1;50530:5;50526:13;50519:20;;50312:233;;;:::o;50551:180::-;50599:77;50596:1;50589:88;50696:4;50693:1;50686:15;50720:4;50717:1;50710:15;50737:180;50785:77;50782:1;50775:88;50882:4;50879:1;50872:15;50906:4;50903:1;50896:15;50923:180;50971:77;50968:1;50961:88;51068:4;51065:1;51058:15;51092:4;51089:1;51082:15;51109:180;51157:77;51154:1;51147:88;51254:4;51251:1;51244:15;51278:4;51275:1;51268:15;51295:180;51343:77;51340:1;51333:88;51440:4;51437:1;51430:15;51464:4;51461:1;51454:15;51481:183;51516:3;51554:1;51536:16;51533:23;51530:128;;;51592:1;51589;51586;51571:23;51614:34;51645:1;51639:8;51614:34;:::i;:::-;51607:41;;51530:128;51481:183;:::o;51670:117::-;51779:1;51776;51769:12;51793:117;51902:1;51899;51892:12;51916:117;52025:1;52022;52015:12;52039:117;52148:1;52145;52138:12;52162:117;52271:1;52268;52261:12;52285:102;52326:6;52377:2;52373:7;52368:2;52361:5;52357:14;52353:28;52343:38;;52285:102;;;:::o;52393:106::-;52437:8;52486:5;52481:3;52477:15;52456:36;;52393:106;;;:::o;52505:239::-;52645:34;52641:1;52633:6;52629:14;52622:58;52714:22;52709:2;52701:6;52697:15;52690:47;52505:239;:::o;52750:182::-;52890:34;52886:1;52878:6;52874:14;52867:58;52750:182;:::o;52938:227::-;53078:34;53074:1;53066:6;53062:14;53055:58;53147:10;53142:2;53134:6;53130:15;53123:35;52938:227;:::o;53171:170::-;53311:22;53307:1;53299:6;53295:14;53288:46;53171:170;:::o;53347:230::-;53487:34;53483:1;53475:6;53471:14;53464:58;53556:13;53551:2;53543:6;53539:15;53532:38;53347:230;:::o;53583:225::-;53723:34;53719:1;53711:6;53707:14;53700:58;53792:8;53787:2;53779:6;53775:15;53768:33;53583:225;:::o;53814:223::-;53954:34;53950:1;53942:6;53938:14;53931:58;54023:6;54018:2;54010:6;54006:15;53999:31;53814:223;:::o;54043:231::-;54183:34;54179:1;54171:6;54167:14;54160:58;54252:14;54247:2;54239:6;54235:15;54228:39;54043:231;:::o;54280:228::-;54420:34;54416:1;54408:6;54404:14;54397:58;54489:11;54484:2;54476:6;54472:15;54465:36;54280:228;:::o;54514:166::-;54654:18;54650:1;54642:6;54638:14;54631:42;54514:166;:::o;54686:224::-;54826:34;54822:1;54814:6;54810:14;54803:58;54895:7;54890:2;54882:6;54878:15;54871:32;54686:224;:::o;54916:237::-;55056:34;55052:1;55044:6;55040:14;55033:58;55125:20;55120:2;55112:6;55108:15;55101:45;54916:237;:::o;55159:233::-;55299:34;55295:1;55287:6;55283:14;55276:58;55368:16;55363:2;55355:6;55351:15;55344:41;55159:233;:::o;55398:222::-;55538:34;55534:1;55526:6;55522:14;55515:58;55607:5;55602:2;55594:6;55590:15;55583:30;55398:222;:::o;55626:243::-;55766:34;55762:1;55754:6;55750:14;55743:58;55835:26;55830:2;55822:6;55818:15;55811:51;55626:243;:::o;55875:229::-;56015:34;56011:1;56003:6;55999:14;55992:58;56084:12;56079:2;56071:6;56067:15;56060:37;55875:229;:::o;56110:182::-;56250:34;56246:1;56238:6;56234:14;56227:58;56110:182;:::o;56298:246::-;56438:34;56434:1;56426:6;56422:14;56415:58;56507:29;56502:2;56494:6;56490:15;56483:54;56298:246;:::o;56550:244::-;56690:34;56686:1;56678:6;56674:14;56667:58;56759:27;56754:2;56746:6;56742:15;56735:52;56550:244;:::o;56800:173::-;56940:25;56936:1;56928:6;56924:14;56917:49;56800:173;:::o;56979:228::-;57119:34;57115:1;57107:6;57103:14;57096:58;57188:11;57183:2;57175:6;57171:15;57164:36;56979:228;:::o;57213:::-;57353:34;57349:1;57341:6;57337:14;57330:58;57422:11;57417:2;57409:6;57405:15;57398:36;57213:228;:::o;57447:227::-;57587:34;57583:1;57575:6;57571:14;57564:58;57656:10;57651:2;57643:6;57639:15;57632:35;57447:227;:::o;57680:220::-;57820:34;57816:1;57808:6;57804:14;57797:58;57889:3;57884:2;57876:6;57872:15;57865:28;57680:220;:::o;57906:167::-;58046:19;58042:1;58034:6;58030:14;58023:43;57906:167;:::o;58079:234::-;58219:34;58215:1;58207:6;58203:14;58196:58;58288:17;58283:2;58275:6;58271:15;58264:42;58079:234;:::o;58319:711::-;58358:3;58396:4;58378:16;58375:26;58372:39;;;58404:5;;58372:39;58433:20;;:::i;:::-;58508:1;58490:16;58486:24;58483:1;58477:4;58462:49;58541:4;58535:11;58640:16;58633:4;58625:6;58621:17;58618:39;58585:18;58577:6;58574:30;58558:113;58555:146;;;58686:5;;;;58555:146;58732:6;58726:4;58722:17;58768:3;58762:10;58795:18;58787:6;58784:30;58781:43;;;58817:5;;;;;;58781:43;58865:6;58858:4;58853:3;58849:14;58845:27;58924:1;58906:16;58902:24;58896:4;58892:35;58887:3;58884:44;58881:57;;;58931:5;;;;;;;58881:57;58948;58996:6;58990:4;58986:17;58978:6;58974:30;58968:4;58948:57;:::i;:::-;59021:3;59014:10;;58362:668;;;;;58319:711;;:::o;59036:122::-;59109:24;59127:5;59109:24;:::i;:::-;59102:5;59099:35;59089:63;;59148:1;59145;59138:12;59089:63;59036:122;:::o;59164:116::-;59234:21;59249:5;59234:21;:::i;:::-;59227:5;59224:32;59214:60;;59270:1;59267;59260:12;59214:60;59164:116;:::o;59286:122::-;59359:24;59377:5;59359:24;:::i;:::-;59352:5;59349:35;59339:63;;59398:1;59395;59388:12;59339:63;59286:122;:::o;59414:120::-;59486:23;59503:5;59486:23;:::i;:::-;59479:5;59476:34;59466:62;;59524:1;59521;59514:12;59466:62;59414:120;:::o;59540:122::-;59613:24;59631:5;59613:24;:::i;:::-;59606:5;59603:35;59593:63;;59652:1;59649;59642:12;59593:63;59540:122;:::o
Swarm Source
ipfs://bffe6b8b45ca4c7a65ddae81931ccb637744c0835e191d1e24157b0107279dcb
Loading...
Loading
Loading...
Loading
OVERVIEW
Meyohas initially conceived her Speculations series of photographs for Bitchcoin, a cryptocurrency as an artwork that playfully examines how value is created. The coin needed to be backed by a photograph, and the photograph needed to create value visually, deliberately, and pe...Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.