Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
75
Holders
75
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GRAVITY
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity >= 0.8.12; import "./ERC1155.sol"; import "./IERC20.sol"; import "./IEIP2981.sol"; import "./AdminControl.sol"; ////////////////////////////////////////////////////////////////////////////////////////// // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&, /&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@&& .@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@ .@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@& %&@@@@@@@@@@@@@@@@/ ,&@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@# /@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@% /@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &@@@@@@@@@@@@@ // // @@@@@@@@@@@@@ &@@@@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@, (@@@@@@@@@@@@ // // @@@@@@@@@@@@ /@@@@@@@@. #@@@@@@@@@@@@@ #@@@@@@@@@ .@@@@@@@@@@@ // // @@@@@@@@@@@ @@@@@@@@ @@@@@@@@/ &@@@@@@@. ,@@@@@@@@@@ // // @@@@@@@@@& @@@@@@@@@, #@@@ &@@@@@@@&. &@@@@@@@@@ // // @@@@@@@@@@ .@@@@@@@@@@@& @ /@@@@@@@@@@@@ &@@@@@@@@ // // @@@@@@@@@, @@@@@@@@@@@@@@&, #/ @@@@@@@@@@@@@@@ @@@@@@@@@ // // @@@@@@@@@. @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@, @@@@@@@@@ // // @@@@@@@@@* @@@@@@@@@@@@@@@@ &, #@@@@@@@@@@@@@@@ @@@@@@@@@ // // @@@@@@@@@@ @@@@@@@@@@@@/ .& @@@@@@@@@@@@@ &@@@@@@@@ // // @@@@@@@@@@. #@@@@@@@@& @@, #@@@@@@@@& &@@@@@@@@@ // // @@@@@@@@@@& #@@@@@@, /@@@@@@& &@@@@@@@ /@@@@@@@@@@ // // @@@@@@@@@@@@ .@@@@@@@@ @@@@@@@@@@@@, .@@@@@@@@@ /@@@@@@@@@@@ // // @@@@@@@@@@@@@. /@@@@@@@&,(@@@@@@@@@@@@@@@@@@@@@@@@@@& &@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@& .&@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@@@@@@@@( .@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@&. .%&@@@@@@@@@@@@@@% %@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@. #@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@* &@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&* .#&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // // ////////////////////////////////////////////////////////////////////////////////////////// contract GRAVITY is ERC1155, AdminControl { mapping(uint256 => mapping(address => bool)) public _tokenClaimed; mapping(uint256 => string) _uris; mapping(uint256 => bool) _transferAllowed; string private _name = "GRAVITY"; uint256 public _ashPrice = 55*10**18; //55 Ash uint256 private _royaltyAmount; //in % uint256 public _maxSupply = 100; uint256 public _supply = 0; uint256 public _activeToken; address public _ashContract = 0x64D91f12Ece7362F91A6f8E7940Cd55F05060b92; address private _royalties_recipient; address private _signer; bool public _ALMintOpened = false; bool public _publicMintOpened = false; constructor () ERC1155("") { _activeToken=1; _royalties_recipient = payable(msg.sender); _royaltyAmount = 10; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, AdminControl) returns (bool) { return AdminControl.supportsInterface(interfaceId) || ERC1155.supportsInterface(interfaceId) || interfaceId == type(IEIP2981).interfaceId || super.supportsInterface(interfaceId); } function mintAllowed( uint8 v, bytes32 r, bytes32 s)internal view returns(bool){ return( _signer == ecrecover( keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256( abi.encodePacked( msg.sender, address(this), _activeToken, _ALMintOpened, _tokenClaimed[_activeToken][msg.sender], _supply < _maxSupply ) ) ) ) , v, r, s) ); } function setAshAddress(address ashAddress) external adminRequired{ _ashContract = ashAddress; } function setSigner (address signer) external adminRequired{ _signer = signer; } function name() public view returns (string memory) { return _name; } function ALMint( uint8 v, bytes32 r, bytes32 s ) external { require(mintAllowed(v, r, s), "Mint not allowed"); IERC20(_ashContract).transferFrom(msg.sender, _royalties_recipient, _ashPrice); _mint(msg.sender ,_activeToken ,1 ,"0x00"); _tokenClaimed[_activeToken][msg.sender] = true; _supply += 1; } function publicMint() external { require( _publicMintOpened, "Public mint is currently closed"); require(!_tokenClaimed[_activeToken][msg.sender], "Can only mint one token"); require(_supply < _maxSupply, "Max supply reached"); IERC20(_ashContract).transferFrom(msg.sender, _royalties_recipient, _ashPrice); _mint(msg.sender, _activeToken, 1, "0x00"); _tokenClaimed[_activeToken][msg.sender] = true; _supply += 1; } function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts )external adminRequired{ uint256 quantity = 0; for(uint256 i = 0 ; i < amounts.length; i++){ quantity += amounts[i]; } require(_supply < _maxSupply, "Max supply reached"); _mintBatch(to, ids, amounts, "0x0"); _supply += quantity; } function initateNewDrop( uint256 tokenId, uint256 newPrice, uint256 maxSupply, string calldata newURI ) external adminRequired{ _activeToken = tokenId; _ashPrice = newPrice; _maxSupply = maxSupply; _uris[tokenId] = newURI; _supply = 0; } function setActiveToken(uint256 tokenId)external adminRequired{ _activeToken = tokenId; } function toggleALMintState()external adminRequired{ _ALMintOpened = !_ALMintOpened; } function togglePublicMintState()external adminRequired{ _publicMintOpened = !_publicMintOpened; } function addURI( uint256 tokenId, string calldata newURI ) external adminRequired{ _uris[tokenId] = newURI; } function editURI(uint256 tokenId, string calldata newURI) external adminRequired { _uris[tokenId] = newURI; } function uri(uint256 tokenId) public view virtual override returns (string memory) { return _uris[tokenId]; } function burn(uint256 tokenId, uint256 quantity) external { _burn(msg.sender, tokenId, quantity); } function burnBatch( uint256[] memory ids, uint256[] memory amounts )external{ _burnBatch(msg.sender, ids, amounts); } function activateTransfer(uint256 tokenId)external adminRequired{ _transferAllowed[tokenId] = true; } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal override { for(uint256 i=0; i< ids.length; i++){ require(from == address(0) || _transferAllowed[ids[i]], "Transfer not allowed"); } } function setRoyalties(address payable _recipient, uint256 _royaltyPerCent) external adminRequired { _royalties_recipient = _recipient; _royaltyAmount = _royaltyPerCent; } function royaltyInfo(uint256 salePrice) external view returns (address, uint256) { if(_royalties_recipient != address(0)){ return (_royalties_recipient, (salePrice * _royaltyAmount) / 100 ); } return (address(0), 0); } function withdraw(address recipient) external adminRequired { payable(recipient).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ 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; 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"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "./ERC165.sol"; import "./EnumerableSet.sol"; import "./Ownable.sol"; import "./IAdminControl.sol"; abstract contract AdminControl is Ownable, IAdminControl, ERC165 { using EnumerableSet for EnumerableSet.AddressSet; // Track registered admins EnumerableSet.AddressSet private _admins; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IAdminControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Only allows approved admins to call the specified function */ modifier adminRequired() { require(owner() == msg.sender || _admins.contains(msg.sender), "AdminControl: Must be owner or admin"); _; } /** * @dev See {IAdminControl-getAdmins}. */ function getAdmins() external view override returns (address[] memory admins) { admins = new address[](_admins.length()); for (uint i = 0; i < _admins.length(); i++) { admins[i] = _admins.at(i); } return admins; } /** * @dev See {IAdminControl-approveAdmin}. */ function approveAdmin(address admin) external override onlyOwner { if (!_admins.contains(admin)) { emit AdminApproved(admin, msg.sender); _admins.add(admin); } } /** * @dev See {IAdminControl-revokeAdmin}. */ function revokeAdmin(address admin) external override onlyOwner { if (_admins.contains(admin)) { emit AdminRevoked(admin, msg.sender); _admins.remove(admin); } } /** * @dev See {IAdminControl-isAdmin}. */ function isAdmin(address admin) public override view returns (bool) { return (owner() == admin || _admins.contains(admin)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @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 EnumerableSet { // 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]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // 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)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // 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)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./IERC1155MetadataURI.sol"; import "./Address.sol"; import "./Context.sol"; import "./ERC165.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 ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address 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}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).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 { _setApprovalForAll(_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 `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, 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 (uint256 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 `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, 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 from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); 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: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.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 IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.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 ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "./IERC165.sol"; /** * @dev Interface for admin control */ interface IAdminControl is IERC165 { event AdminApproved(address indexed account, address indexed sender); event AdminRevoked(address indexed account, address indexed sender); /** * @dev gets address of all admins */ function getAdmins() external view returns (address[] memory); /** * @dev add an admin. Can only be called by contract owner. */ function approveAdmin(address admin) external; /** * @dev remove an admin. Can only be called by contract owner. */ function revokeAdmin(address admin) external; /** * @dev checks whether or not given address is an admin * Returns True if they are */ function isAdmin(address admin) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * EIP-2981 */ interface IEIP2981 { /** * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * * => 0x2a55205a = 0x2a55205a */ function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "./IERC165.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 IERC1155 is IERC165 { /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "./IERC1155.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 IERC1155MetadataURI is IERC1155 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"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":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"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ALMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_ALMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_activeToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ashContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ashPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"_tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"activateTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newURI","type":"string"}],"name":"addURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"approveAdmin","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newURI","type":"string"}],"name":"editURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"newURI","type":"string"}],"name":"initateNewDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"}],"name":"setActiveToken","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":"address","name":"ashAddress","type":"address"}],"name":"setAshAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_royaltyPerCent","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","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":[],"name":"toggleALMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260076080819052664752415649545960c81b60a09081526200002a916009919062000135565b506802fb474098f67c0000600a556064600c556000600d55600f80546001600160a01b0319167364d91f12ece7362f91a6f8e7940cd55f05060b921790556011805461ffff60a01b191690553480156200008357600080fd5b506040805160208101909152600081526200009e33620000cc565b620000a9816200011c565b506001600e55601080546001600160a01b03191633179055600a600b5562000218565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516200013190600390602084019062000135565b5050565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b61328080620002286000396000f3fe608060405234801561001057600080fd5b50600436106102525760003560e01c806383ca4b6f11610146578063cb4b1423116100c3578063debfe14c11610087578063debfe14c1461050c578063e4b0f1631461051f578063e985e9c514610532578063ef3ef4e51461056e578063f242432a14610582578063f2fde38b1461059557600080fd5b8063cb4b1423146104b7578063cd10ba77146104bf578063cef6d368146104c7578063d2c0a6ea146102da578063d81d0a15146104f957600080fd5b8063af07704c1161010a578063af07704c1461043d578063b1a198d014610450578063b390c0ab1461047e578063bf9bb8fa14610491578063c1990e4d146104a457600080fd5b806383ca4b6f146103cb5780638c7ea24b146103de5780638da5cb5b146103f1578063a22cb46514610416578063acb4f9411461042957600080fd5b80632eb2c2d6116101d45780635c371672116101985780635c371672146103815780636c19e7831461038a5780636d73e6691461039d578063715018a6146103b057806374ef3962146103b857600080fd5b80632eb2c2d61461031d57806331ae450b1461033057806337789850146103455780634e1273f41461034e57806351cff8d91461036e57600080fd5b806322f4596f1161021b57806322f4596f146102d1578063232d556d146102da57806324d7806c146102ef57806326092b83146103025780632d3456701461030a57600080fd5b8062fdd58e1461025757806301ffc9a71461027d57806306fdde03146102a05780630e89341c146102b557806315945790146102c8575b600080fd5b61026a6102653660046125cd565b6105a8565b6040519081526020015b60405180910390f35b61029061028b36600461260f565b610644565b6040519015158152602001610274565b6102a8610688565b6040516102749190612679565b6102a86102c336600461268c565b61071a565b61026a600d5481565b61026a600c5481565b6102ed6102e83660046126ed565b6107bc565b005b6102906102fd366004612738565b610825565b6102ed61085e565b6102ed610318366004612738565b610a5f565b6102ed61032b36600461289e565b610adf565b610338610b76565b604051610274919061294b565b61026a600e5481565b61036161035c366004612998565b610c24565b6040516102749190612a9f565b6102ed61037c366004612738565b610d4d565b61026a600a5481565b6102ed610398366004612738565b610dcc565b6102ed6103ab366004612738565b610e38565b6102ed610eb2565b6102ed6103c6366004612738565b610ee8565b6102ed6103d9366004612ab2565b610f54565b6102ed6103ec3660046125cd565b610f5f565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610274565b6102ed610424366004612b0c565b610fcf565b60115461029090600160a81b900460ff1681565b6102ed61044b36600461268c565b610fda565b61029061045e366004612b45565b600660209081526000928352604080842090915290825290205460ff1681565b6102ed61048c366004612b6a565b61103f565b6102ed61049f366004612b8c565b61104a565b6102ed6104b2366004612bc7565b61118a565b6102ed611209565b6102ed611274565b6104da6104d536600461268c565b6112df565b604080516001600160a01b039093168352602083019190915201610274565b6102ed610507366004612c27565b611332565b600f546103fe906001600160a01b031681565b6102ed61052d36600461268c565b61144f565b610290610540366004612c9c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b60115461029090600160a01b900460ff1681565b6102ed610590366004612cca565b61149e565b6102ed6105a3366004612738565b611525565b60006001600160a01b0383166106195760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b600061064f826115bd565b8061065e575061065e826115de565b8061067957506001600160e01b0319821663152a902d60e11b145b8061063e575061063e826115bd565b60606009805461069790612d32565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390612d32565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600081815260076020526040902080546060919061073790612d32565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612d32565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b50505050509050919050565b336107cf6000546001600160a01b031690565b6001600160a01b031614806107ea57506107ea60043361162e565b6108065760405162461bcd60e51b815260040161061090612d6d565b600083815260076020526040902061081f908383612528565b50505050565b6000816001600160a01b03166108436000546001600160a01b031690565b6001600160a01b0316148061063e575061063e60048361162e565b601154600160a81b900460ff166108b75760405162461bcd60e51b815260206004820152601f60248201527f5075626c6963206d696e742069732063757272656e746c7920636c6f736564006044820152606401610610565b600e54600090815260066020908152604080832033845290915290205460ff16156109245760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206f6e6520746f6b656e0000000000000000006044820152606401610610565b600c54600d541061096c5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610610565b600f54601054600a546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af11580156109cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ef9190612db1565b50610a1b33600e546001604051806040016040528060048152602001630307830360e41b815250611653565b600e5460009081526006602090815260408083203384529091528120805460ff19166001908117909155600d805491929091610a58908490612de4565b9091555050565b6000546001600160a01b03163314610a895760405162461bcd60e51b815260040161061090612dfc565b610a9460048261162e565b15610adc5760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610ada60048261172b565b505b50565b6001600160a01b038516331480610afb5750610afb8533610540565b610b625760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610610565b610b6f8585858585611740565b5050505050565b6060610b8260046118ed565b6001600160401b03811115610b9957610b99612755565b604051908082528060200260200182016040528015610bc2578160200160208202803683370190505b50905060005b610bd260046118ed565b811015610c2057610be46004826118f7565b828281518110610bf657610bf6612e31565b6001600160a01b039092166020928302919091019091015280610c1881612e47565b915050610bc8565b5090565b60608151835114610c895760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610610565b600083516001600160401b03811115610ca457610ca4612755565b604051908082528060200260200182016040528015610ccd578160200160208202803683370190505b50905060005b8451811015610d4557610d18858281518110610cf157610cf1612e31565b6020026020010151858381518110610d0b57610d0b612e31565b60200260200101516105a8565b828281518110610d2a57610d2a612e31565b6020908102919091010152610d3e81612e47565b9050610cd3565b509392505050565b33610d606000546001600160a01b031690565b6001600160a01b03161480610d7b5750610d7b60043361162e565b610d975760405162461bcd60e51b815260040161061090612d6d565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ada573d6000803e3d6000fd5b33610ddf6000546001600160a01b031690565b6001600160a01b03161480610dfa5750610dfa60043361162e565b610e165760405162461bcd60e51b815260040161061090612d6d565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e625760405162461bcd60e51b815260040161061090612dfc565b610e6d60048261162e565b610adc5760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610ada600482611903565b6000546001600160a01b03163314610edc5760405162461bcd60e51b815260040161061090612dfc565b610ee66000611918565b565b33610efb6000546001600160a01b031690565b6001600160a01b03161480610f165750610f1660043361162e565b610f325760405162461bcd60e51b815260040161061090612d6d565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610ada338383611968565b33610f726000546001600160a01b031690565b6001600160a01b03161480610f8d5750610f8d60043361162e565b610fa95760405162461bcd60e51b815260040161061090612d6d565b601080546001600160a01b0319166001600160a01b039390931692909217909155600b55565b610ada338383611af9565b33610fed6000546001600160a01b031690565b6001600160a01b03161480611008575061100860043361162e565b6110245760405162461bcd60e51b815260040161061090612d6d565b6000908152600860205260409020805460ff19166001179055565b610ada338383611bda565b611055838383611cdf565b6110945760405162461bcd60e51b815260206004820152601060248201526f135a5b9d081b9bdd08185b1b1bddd95960821b6044820152606401610610565b600f54601054600a546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af11580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111179190612db1565b5061114333600e546001604051806040016040528060048152602001630307830360e41b815250611653565b600e5460009081526006602090815260408083203384529091528120805460ff19166001908117909155600d805491929091611180908490612de4565b9091555050505050565b3361119d6000546001600160a01b031690565b6001600160a01b031614806111b857506111b860043361162e565b6111d45760405162461bcd60e51b815260040161061090612d6d565b600e859055600a849055600c83905560008581526007602052604090206111fc908383612528565b50506000600d5550505050565b3361121c6000546001600160a01b031690565b6001600160a01b03161480611237575061123760043361162e565b6112535760405162461bcd60e51b815260040161061090612d6d565b6011805460ff60a01b198116600160a01b9182900460ff1615909102179055565b336112876000546001600160a01b031690565b6001600160a01b031614806112a257506112a260043361162e565b6112be5760405162461bcd60e51b815260040161061090612d6d565b6011805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60105460009081906001600160a01b03161561132757601054600b546001600160a01b03909116906064906113149086612e62565b61131e9190612e81565b91509150915091565b506000928392509050565b336113456000546001600160a01b031690565b6001600160a01b03161480611360575061136060043361162e565b61137c5760405162461bcd60e51b815260040161061090612d6d565b6000805b82518110156113c25782818151811061139b5761139b612e31565b6020026020010151826113ae9190612de4565b9150806113ba81612e47565b915050611380565b50600c54600d541061140b5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610610565b6114328484846040518060400160405280600381526020016203078360ec1b815250611e37565b80600d60008282546114449190612de4565b909155505050505050565b336114626000546001600160a01b031690565b6001600160a01b0316148061147d575061147d60043361162e565b6114995760405162461bcd60e51b815260040161061090612d6d565b600e55565b6001600160a01b0385163314806114ba57506114ba8533610540565b6115185760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610610565b610b6f8585858585611f92565b6000546001600160a01b0316331461154f5760405162461bcd60e51b815260040161061090612dfc565b6001600160a01b0381166115b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b610adc81611918565b60006001600160e01b03198216632a9f3abf60e11b148061063e575061063e825b60006001600160e01b03198216636cdb3d1360e11b148061160f57506001600160e01b031982166303a24d0760e21b145b8061063e57506301ffc9a760e01b6001600160e01b031983161461063e565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6001600160a01b0384166116795760405162461bcd60e51b815260040161061090612ea3565b336116998160008761168a886120b3565b611693886120b3565b876120fe565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906116cb908490612de4565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b6f816000878787876121a5565b600061164c836001600160a01b038416612301565b81518351146117615760405162461bcd60e51b815260040161061090612ee4565b6001600160a01b0384166117875760405162461bcd60e51b815260040161061090612f2c565b336117968187878787876120fe565b60005b845181101561187f5760008582815181106117b6576117b6612e31565b6020026020010151905060008583815181106117d4576117d4612e31565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156118255760405162461bcd60e51b815260040161061090612f71565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611864908490612de4565b925050819055505050508061187890612e47565b9050611799565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118cf929190612fbb565b60405180910390a46118e58187878787876123f4565b505050505050565b600061063e825490565b600061164c83836124af565b600061164c836001600160a01b0384166124d9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831661198e5760405162461bcd60e51b815260040161061090612fe9565b80518251146119af5760405162461bcd60e51b815260040161061090612ee4565b60003390506119d2818560008686604051806020016040528060008152506120fe565b60005b8351811015611a9a5760008482815181106119f2576119f2612e31565b602002602001015190506000848381518110611a1057611a10612e31565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015611a615760405162461bcd60e51b81526004016106109061302c565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580611a9281612e47565b9150506119d5565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611aeb929190612fbb565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03161415611b6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610610565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316611c005760405162461bcd60e51b815260040161061090612fe9565b33611c2f81856000611c11876120b3565b611c1a876120b3565b604051806020016040528060008152506120fe565b60008381526001602090815260408083206001600160a01b038816845290915290205482811015611c725760405162461bcd60e51b81526004016106109061302c565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b600e5460115460008281526006602090815260408083203380855290835281842054600c54600d5493516bffffffffffffffffffffffff19606094851b8116968201969096523090931b90941660348301526048820196909652600160a01b90940460ff908116151560f890811b606887015295161515851b60698501521090921b606a820152600190606b0160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015611e13573d6000803e3d6000fd5b5050604051601f1901516011546001600160a01b0391821691161495945050505050565b6001600160a01b038416611e5d5760405162461bcd60e51b815260040161061090612ea3565b8151835114611e7e5760405162461bcd60e51b815260040161061090612ee4565b33611e8e816000878787876120fe565b60005b8451811015611f2a57838181518110611eac57611eac612e31565b602002602001015160016000878481518110611eca57611eca612e31565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611f129190612de4565b90915550819050611f2281612e47565b915050611e91565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f7b929190612fbb565b60405180910390a4610b6f816000878787876123f4565b6001600160a01b038416611fb85760405162461bcd60e51b815260040161061090612f2c565b33611fc881878761168a886120b3565b60008481526001602090815260408083206001600160a01b038a1684529091529020548381101561200b5760405162461bcd60e51b815260040161061090612f71565b60008581526001602090815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061204a908490612de4565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46120aa8288888888886121a5565b50505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106120ed576120ed612e31565b602090810291909101015292915050565b60005b83518110156120aa576001600160a01b038616158061215057506008600085838151811061213157612131612e31565b60209081029190910181015182528101919091526040016000205460ff165b6121935760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c881b9bdd08185b1b1bddd95960621b6044820152606401610610565b8061219d81612e47565b915050612101565b6001600160a01b0384163b156118e55760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121e99089908990889088908890600401613070565b6020604051808303816000875af1925050508015612224575060408051601f3d908101601f19168201909252612221918101906130b5565b60015b6122d1576122306130d2565b806308c379a0141561226a57506122456130ee565b80612250575061226c565b8060405162461bcd60e51b81526004016106109190612679565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610610565b6001600160e01b0319811663f23a6e6160e01b146120aa5760405162461bcd60e51b815260040161061090613177565b600081815260018301602052604081205480156123ea5760006123256001836131bf565b8554909150600090612339906001906131bf565b905081811461239e57600086600001828154811061235957612359612e31565b906000526020600020015490508087600001848154811061237c5761237c612e31565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806123af576123af6131d6565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061063e565b600091505061063e565b6001600160a01b0384163b156118e55760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061243890899089908890889088906004016131ec565b6020604051808303816000875af1925050508015612473575060408051601f3d908101601f19168201909252612470918101906130b5565b60015b61247f576122306130d2565b6001600160e01b0319811663bc197c8160e01b146120aa5760405162461bcd60e51b815260040161061090613177565b60008260000182815481106124c6576124c6612e31565b9060005260206000200154905092915050565b60008181526001830160205260408120546125205750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561063e565b50600061063e565b82805461253490612d32565b90600052602060002090601f016020900481019282612556576000855561259c565b82601f1061256f5782800160ff1982351617855561259c565b8280016001018555821561259c579182015b8281111561259c578235825591602001919060010190612581565b50610c209291505b80821115610c2057600081556001016125a4565b6001600160a01b0381168114610adc57600080fd5b600080604083850312156125e057600080fd5b82356125eb816125b8565b946020939093013593505050565b6001600160e01b031981168114610adc57600080fd5b60006020828403121561262157600080fd5b813561164c816125f9565b6000815180845260005b8181101561265257602081850181015186830182015201612636565b81811115612664576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061164c602083018461262c565b60006020828403121561269e57600080fd5b5035919050565b60008083601f8401126126b757600080fd5b5081356001600160401b038111156126ce57600080fd5b6020830191508360208285010111156126e657600080fd5b9250929050565b60008060006040848603121561270257600080fd5b8335925060208401356001600160401b0381111561271f57600080fd5b61272b868287016126a5565b9497909650939450505050565b60006020828403121561274a57600080fd5b813561164c816125b8565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561279057612790612755565b6040525050565b60006001600160401b038211156127b0576127b0612755565b5060051b60200190565b600082601f8301126127cb57600080fd5b813560206127d882612797565b6040516127e5828261276b565b83815260059390931b850182019282810191508684111561280557600080fd5b8286015b848110156128205780358352918301918301612809565b509695505050505050565b600082601f83011261283c57600080fd5b81356001600160401b0381111561285557612855612755565b60405161286c601f8301601f19166020018261276b565b81815284602083860101111561288157600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156128b657600080fd5b85356128c1816125b8565b945060208601356128d1816125b8565b935060408601356001600160401b03808211156128ed57600080fd5b6128f989838a016127ba565b9450606088013591508082111561290f57600080fd5b61291b89838a016127ba565b9350608088013591508082111561293157600080fd5b5061293e8882890161282b565b9150509295509295909350565b6020808252825182820181905260009190848201906040850190845b8181101561298c5783516001600160a01b031683529284019291840191600101612967565b50909695505050505050565b600080604083850312156129ab57600080fd5b82356001600160401b03808211156129c257600080fd5b818501915085601f8301126129d657600080fd5b813560206129e382612797565b6040516129f0828261276b565b83815260059390931b8501820192828101915089841115612a1057600080fd5b948201945b83861015612a37578535612a28816125b8565b82529482019490820190612a15565b96505086013592505080821115612a4d57600080fd5b50612a5a858286016127ba565b9150509250929050565b600081518084526020808501945080840160005b83811015612a9457815187529582019590820190600101612a78565b509495945050505050565b60208152600061164c6020830184612a64565b60008060408385031215612ac557600080fd5b82356001600160401b0380821115612adc57600080fd5b612ae8868387016127ba565b93506020850135915080821115612a4d57600080fd5b8015158114610adc57600080fd5b60008060408385031215612b1f57600080fd5b8235612b2a816125b8565b91506020830135612b3a81612afe565b809150509250929050565b60008060408385031215612b5857600080fd5b823591506020830135612b3a816125b8565b60008060408385031215612b7d57600080fd5b50508035926020909101359150565b600080600060608486031215612ba157600080fd5b833560ff81168114612bb257600080fd5b95602085013595506040909401359392505050565b600080600080600060808688031215612bdf57600080fd5b85359450602086013593506040860135925060608601356001600160401b03811115612c0a57600080fd5b612c16888289016126a5565b969995985093965092949392505050565b600080600060608486031215612c3c57600080fd5b8335612c47816125b8565b925060208401356001600160401b0380821115612c6357600080fd5b612c6f878388016127ba565b93506040860135915080821115612c8557600080fd5b50612c92868287016127ba565b9150509250925092565b60008060408385031215612caf57600080fd5b8235612cba816125b8565b91506020830135612b3a816125b8565b600080600080600060a08688031215612ce257600080fd5b8535612ced816125b8565b94506020860135612cfd816125b8565b9350604086013592506060860135915060808601356001600160401b03811115612d2657600080fd5b61293e8882890161282b565b600181811c90821680612d4657607f821691505b60208210811415612d6757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b600060208284031215612dc357600080fd5b815161164c81612afe565b634e487b7160e01b600052601160045260246000fd5b60008219821115612df757612df7612dce565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612e5b57612e5b612dce565b5060010190565b6000816000190483118215151615612e7c57612e7c612dce565b500290565b600082612e9e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612fce6040830185612a64565b8281036020840152612fe08185612a64565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906130aa9083018461262c565b979650505050505050565b6000602082840312156130c757600080fd5b815161164c816125f9565b600060033d11156130eb5760046000803e5060005160e01c5b90565b600060443d10156130fc5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561312b57505050505090565b82850191508151818111156131435750505050505090565b843d870101602082850101111561315d5750505050505090565b61316c6020828601018761276b565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6000828210156131d1576131d1612dce565b500390565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0386811682528516602082015260a06040820181905260009061321890830186612a64565b828103606084015261322a8186612a64565b9050828103608084015261323e818561262c565b9897505050505050505056fea26469706673582212203a14b67267767d3dfeb1a8656738b5e8201736ed13b7e1edaac6eca656b833c964736f6c634300080c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102525760003560e01c806383ca4b6f11610146578063cb4b1423116100c3578063debfe14c11610087578063debfe14c1461050c578063e4b0f1631461051f578063e985e9c514610532578063ef3ef4e51461056e578063f242432a14610582578063f2fde38b1461059557600080fd5b8063cb4b1423146104b7578063cd10ba77146104bf578063cef6d368146104c7578063d2c0a6ea146102da578063d81d0a15146104f957600080fd5b8063af07704c1161010a578063af07704c1461043d578063b1a198d014610450578063b390c0ab1461047e578063bf9bb8fa14610491578063c1990e4d146104a457600080fd5b806383ca4b6f146103cb5780638c7ea24b146103de5780638da5cb5b146103f1578063a22cb46514610416578063acb4f9411461042957600080fd5b80632eb2c2d6116101d45780635c371672116101985780635c371672146103815780636c19e7831461038a5780636d73e6691461039d578063715018a6146103b057806374ef3962146103b857600080fd5b80632eb2c2d61461031d57806331ae450b1461033057806337789850146103455780634e1273f41461034e57806351cff8d91461036e57600080fd5b806322f4596f1161021b57806322f4596f146102d1578063232d556d146102da57806324d7806c146102ef57806326092b83146103025780632d3456701461030a57600080fd5b8062fdd58e1461025757806301ffc9a71461027d57806306fdde03146102a05780630e89341c146102b557806315945790146102c8575b600080fd5b61026a6102653660046125cd565b6105a8565b6040519081526020015b60405180910390f35b61029061028b36600461260f565b610644565b6040519015158152602001610274565b6102a8610688565b6040516102749190612679565b6102a86102c336600461268c565b61071a565b61026a600d5481565b61026a600c5481565b6102ed6102e83660046126ed565b6107bc565b005b6102906102fd366004612738565b610825565b6102ed61085e565b6102ed610318366004612738565b610a5f565b6102ed61032b36600461289e565b610adf565b610338610b76565b604051610274919061294b565b61026a600e5481565b61036161035c366004612998565b610c24565b6040516102749190612a9f565b6102ed61037c366004612738565b610d4d565b61026a600a5481565b6102ed610398366004612738565b610dcc565b6102ed6103ab366004612738565b610e38565b6102ed610eb2565b6102ed6103c6366004612738565b610ee8565b6102ed6103d9366004612ab2565b610f54565b6102ed6103ec3660046125cd565b610f5f565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610274565b6102ed610424366004612b0c565b610fcf565b60115461029090600160a81b900460ff1681565b6102ed61044b36600461268c565b610fda565b61029061045e366004612b45565b600660209081526000928352604080842090915290825290205460ff1681565b6102ed61048c366004612b6a565b61103f565b6102ed61049f366004612b8c565b61104a565b6102ed6104b2366004612bc7565b61118a565b6102ed611209565b6102ed611274565b6104da6104d536600461268c565b6112df565b604080516001600160a01b039093168352602083019190915201610274565b6102ed610507366004612c27565b611332565b600f546103fe906001600160a01b031681565b6102ed61052d36600461268c565b61144f565b610290610540366004612c9c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b60115461029090600160a01b900460ff1681565b6102ed610590366004612cca565b61149e565b6102ed6105a3366004612738565b611525565b60006001600160a01b0383166106195760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060008181526001602090815260408083206001600160a01b03861684529091529020545b92915050565b600061064f826115bd565b8061065e575061065e826115de565b8061067957506001600160e01b0319821663152a902d60e11b145b8061063e575061063e826115bd565b60606009805461069790612d32565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390612d32565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600081815260076020526040902080546060919061073790612d32565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612d32565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b50505050509050919050565b336107cf6000546001600160a01b031690565b6001600160a01b031614806107ea57506107ea60043361162e565b6108065760405162461bcd60e51b815260040161061090612d6d565b600083815260076020526040902061081f908383612528565b50505050565b6000816001600160a01b03166108436000546001600160a01b031690565b6001600160a01b0316148061063e575061063e60048361162e565b601154600160a81b900460ff166108b75760405162461bcd60e51b815260206004820152601f60248201527f5075626c6963206d696e742069732063757272656e746c7920636c6f736564006044820152606401610610565b600e54600090815260066020908152604080832033845290915290205460ff16156109245760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206f6e6520746f6b656e0000000000000000006044820152606401610610565b600c54600d541061096c5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610610565b600f54601054600a546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af11580156109cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ef9190612db1565b50610a1b33600e546001604051806040016040528060048152602001630307830360e41b815250611653565b600e5460009081526006602090815260408083203384529091528120805460ff19166001908117909155600d805491929091610a58908490612de4565b9091555050565b6000546001600160a01b03163314610a895760405162461bcd60e51b815260040161061090612dfc565b610a9460048261162e565b15610adc5760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610ada60048261172b565b505b50565b6001600160a01b038516331480610afb5750610afb8533610540565b610b625760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610610565b610b6f8585858585611740565b5050505050565b6060610b8260046118ed565b6001600160401b03811115610b9957610b99612755565b604051908082528060200260200182016040528015610bc2578160200160208202803683370190505b50905060005b610bd260046118ed565b811015610c2057610be46004826118f7565b828281518110610bf657610bf6612e31565b6001600160a01b039092166020928302919091019091015280610c1881612e47565b915050610bc8565b5090565b60608151835114610c895760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610610565b600083516001600160401b03811115610ca457610ca4612755565b604051908082528060200260200182016040528015610ccd578160200160208202803683370190505b50905060005b8451811015610d4557610d18858281518110610cf157610cf1612e31565b6020026020010151858381518110610d0b57610d0b612e31565b60200260200101516105a8565b828281518110610d2a57610d2a612e31565b6020908102919091010152610d3e81612e47565b9050610cd3565b509392505050565b33610d606000546001600160a01b031690565b6001600160a01b03161480610d7b5750610d7b60043361162e565b610d975760405162461bcd60e51b815260040161061090612d6d565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ada573d6000803e3d6000fd5b33610ddf6000546001600160a01b031690565b6001600160a01b03161480610dfa5750610dfa60043361162e565b610e165760405162461bcd60e51b815260040161061090612d6d565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e625760405162461bcd60e51b815260040161061090612dfc565b610e6d60048261162e565b610adc5760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610ada600482611903565b6000546001600160a01b03163314610edc5760405162461bcd60e51b815260040161061090612dfc565b610ee66000611918565b565b33610efb6000546001600160a01b031690565b6001600160a01b03161480610f165750610f1660043361162e565b610f325760405162461bcd60e51b815260040161061090612d6d565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610ada338383611968565b33610f726000546001600160a01b031690565b6001600160a01b03161480610f8d5750610f8d60043361162e565b610fa95760405162461bcd60e51b815260040161061090612d6d565b601080546001600160a01b0319166001600160a01b039390931692909217909155600b55565b610ada338383611af9565b33610fed6000546001600160a01b031690565b6001600160a01b03161480611008575061100860043361162e565b6110245760405162461bcd60e51b815260040161061090612d6d565b6000908152600860205260409020805460ff19166001179055565b610ada338383611bda565b611055838383611cdf565b6110945760405162461bcd60e51b815260206004820152601060248201526f135a5b9d081b9bdd08185b1b1bddd95960821b6044820152606401610610565b600f54601054600a546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af11580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111179190612db1565b5061114333600e546001604051806040016040528060048152602001630307830360e41b815250611653565b600e5460009081526006602090815260408083203384529091528120805460ff19166001908117909155600d805491929091611180908490612de4565b9091555050505050565b3361119d6000546001600160a01b031690565b6001600160a01b031614806111b857506111b860043361162e565b6111d45760405162461bcd60e51b815260040161061090612d6d565b600e859055600a849055600c83905560008581526007602052604090206111fc908383612528565b50506000600d5550505050565b3361121c6000546001600160a01b031690565b6001600160a01b03161480611237575061123760043361162e565b6112535760405162461bcd60e51b815260040161061090612d6d565b6011805460ff60a01b198116600160a01b9182900460ff1615909102179055565b336112876000546001600160a01b031690565b6001600160a01b031614806112a257506112a260043361162e565b6112be5760405162461bcd60e51b815260040161061090612d6d565b6011805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60105460009081906001600160a01b03161561132757601054600b546001600160a01b03909116906064906113149086612e62565b61131e9190612e81565b91509150915091565b506000928392509050565b336113456000546001600160a01b031690565b6001600160a01b03161480611360575061136060043361162e565b61137c5760405162461bcd60e51b815260040161061090612d6d565b6000805b82518110156113c25782818151811061139b5761139b612e31565b6020026020010151826113ae9190612de4565b9150806113ba81612e47565b915050611380565b50600c54600d541061140b5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610610565b6114328484846040518060400160405280600381526020016203078360ec1b815250611e37565b80600d60008282546114449190612de4565b909155505050505050565b336114626000546001600160a01b031690565b6001600160a01b0316148061147d575061147d60043361162e565b6114995760405162461bcd60e51b815260040161061090612d6d565b600e55565b6001600160a01b0385163314806114ba57506114ba8533610540565b6115185760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610610565b610b6f8585858585611f92565b6000546001600160a01b0316331461154f5760405162461bcd60e51b815260040161061090612dfc565b6001600160a01b0381166115b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b610adc81611918565b60006001600160e01b03198216632a9f3abf60e11b148061063e575061063e825b60006001600160e01b03198216636cdb3d1360e11b148061160f57506001600160e01b031982166303a24d0760e21b145b8061063e57506301ffc9a760e01b6001600160e01b031983161461063e565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6001600160a01b0384166116795760405162461bcd60e51b815260040161061090612ea3565b336116998160008761168a886120b3565b611693886120b3565b876120fe565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906116cb908490612de4565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b6f816000878787876121a5565b600061164c836001600160a01b038416612301565b81518351146117615760405162461bcd60e51b815260040161061090612ee4565b6001600160a01b0384166117875760405162461bcd60e51b815260040161061090612f2c565b336117968187878787876120fe565b60005b845181101561187f5760008582815181106117b6576117b6612e31565b6020026020010151905060008583815181106117d4576117d4612e31565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156118255760405162461bcd60e51b815260040161061090612f71565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611864908490612de4565b925050819055505050508061187890612e47565b9050611799565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118cf929190612fbb565b60405180910390a46118e58187878787876123f4565b505050505050565b600061063e825490565b600061164c83836124af565b600061164c836001600160a01b0384166124d9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03831661198e5760405162461bcd60e51b815260040161061090612fe9565b80518251146119af5760405162461bcd60e51b815260040161061090612ee4565b60003390506119d2818560008686604051806020016040528060008152506120fe565b60005b8351811015611a9a5760008482815181106119f2576119f2612e31565b602002602001015190506000848381518110611a1057611a10612e31565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015611a615760405162461bcd60e51b81526004016106109061302c565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580611a9281612e47565b9150506119d5565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611aeb929190612fbb565b60405180910390a450505050565b816001600160a01b0316836001600160a01b03161415611b6d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610610565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316611c005760405162461bcd60e51b815260040161061090612fe9565b33611c2f81856000611c11876120b3565b611c1a876120b3565b604051806020016040528060008152506120fe565b60008381526001602090815260408083206001600160a01b038816845290915290205482811015611c725760405162461bcd60e51b81526004016106109061302c565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b600e5460115460008281526006602090815260408083203380855290835281842054600c54600d5493516bffffffffffffffffffffffff19606094851b8116968201969096523090931b90941660348301526048820196909652600160a01b90940460ff908116151560f890811b606887015295161515851b60698501521090921b606a820152600190606b0160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015611e13573d6000803e3d6000fd5b5050604051601f1901516011546001600160a01b0391821691161495945050505050565b6001600160a01b038416611e5d5760405162461bcd60e51b815260040161061090612ea3565b8151835114611e7e5760405162461bcd60e51b815260040161061090612ee4565b33611e8e816000878787876120fe565b60005b8451811015611f2a57838181518110611eac57611eac612e31565b602002602001015160016000878481518110611eca57611eca612e31565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611f129190612de4565b90915550819050611f2281612e47565b915050611e91565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f7b929190612fbb565b60405180910390a4610b6f816000878787876123f4565b6001600160a01b038416611fb85760405162461bcd60e51b815260040161061090612f2c565b33611fc881878761168a886120b3565b60008481526001602090815260408083206001600160a01b038a1684529091529020548381101561200b5760405162461bcd60e51b815260040161061090612f71565b60008581526001602090815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061204a908490612de4565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46120aa8288888888886121a5565b50505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106120ed576120ed612e31565b602090810291909101015292915050565b60005b83518110156120aa576001600160a01b038616158061215057506008600085838151811061213157612131612e31565b60209081029190910181015182528101919091526040016000205460ff165b6121935760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c881b9bdd08185b1b1bddd95960621b6044820152606401610610565b8061219d81612e47565b915050612101565b6001600160a01b0384163b156118e55760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121e99089908990889088908890600401613070565b6020604051808303816000875af1925050508015612224575060408051601f3d908101601f19168201909252612221918101906130b5565b60015b6122d1576122306130d2565b806308c379a0141561226a57506122456130ee565b80612250575061226c565b8060405162461bcd60e51b81526004016106109190612679565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610610565b6001600160e01b0319811663f23a6e6160e01b146120aa5760405162461bcd60e51b815260040161061090613177565b600081815260018301602052604081205480156123ea5760006123256001836131bf565b8554909150600090612339906001906131bf565b905081811461239e57600086600001828154811061235957612359612e31565b906000526020600020015490508087600001848154811061237c5761237c612e31565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806123af576123af6131d6565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061063e565b600091505061063e565b6001600160a01b0384163b156118e55760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061243890899089908890889088906004016131ec565b6020604051808303816000875af1925050508015612473575060408051601f3d908101601f19168201909252612470918101906130b5565b60015b61247f576122306130d2565b6001600160e01b0319811663bc197c8160e01b146120aa5760405162461bcd60e51b815260040161061090613177565b60008260000182815481106124c6576124c6612e31565b9060005260206000200154905092915050565b60008181526001830160205260408120546125205750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561063e565b50600061063e565b82805461253490612d32565b90600052602060002090601f016020900481019282612556576000855561259c565b82601f1061256f5782800160ff1982351617855561259c565b8280016001018555821561259c579182015b8281111561259c578235825591602001919060010190612581565b50610c209291505b80821115610c2057600081556001016125a4565b6001600160a01b0381168114610adc57600080fd5b600080604083850312156125e057600080fd5b82356125eb816125b8565b946020939093013593505050565b6001600160e01b031981168114610adc57600080fd5b60006020828403121561262157600080fd5b813561164c816125f9565b6000815180845260005b8181101561265257602081850181015186830182015201612636565b81811115612664576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061164c602083018461262c565b60006020828403121561269e57600080fd5b5035919050565b60008083601f8401126126b757600080fd5b5081356001600160401b038111156126ce57600080fd5b6020830191508360208285010111156126e657600080fd5b9250929050565b60008060006040848603121561270257600080fd5b8335925060208401356001600160401b0381111561271f57600080fd5b61272b868287016126a5565b9497909650939450505050565b60006020828403121561274a57600080fd5b813561164c816125b8565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561279057612790612755565b6040525050565b60006001600160401b038211156127b0576127b0612755565b5060051b60200190565b600082601f8301126127cb57600080fd5b813560206127d882612797565b6040516127e5828261276b565b83815260059390931b850182019282810191508684111561280557600080fd5b8286015b848110156128205780358352918301918301612809565b509695505050505050565b600082601f83011261283c57600080fd5b81356001600160401b0381111561285557612855612755565b60405161286c601f8301601f19166020018261276b565b81815284602083860101111561288157600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156128b657600080fd5b85356128c1816125b8565b945060208601356128d1816125b8565b935060408601356001600160401b03808211156128ed57600080fd5b6128f989838a016127ba565b9450606088013591508082111561290f57600080fd5b61291b89838a016127ba565b9350608088013591508082111561293157600080fd5b5061293e8882890161282b565b9150509295509295909350565b6020808252825182820181905260009190848201906040850190845b8181101561298c5783516001600160a01b031683529284019291840191600101612967565b50909695505050505050565b600080604083850312156129ab57600080fd5b82356001600160401b03808211156129c257600080fd5b818501915085601f8301126129d657600080fd5b813560206129e382612797565b6040516129f0828261276b565b83815260059390931b8501820192828101915089841115612a1057600080fd5b948201945b83861015612a37578535612a28816125b8565b82529482019490820190612a15565b96505086013592505080821115612a4d57600080fd5b50612a5a858286016127ba565b9150509250929050565b600081518084526020808501945080840160005b83811015612a9457815187529582019590820190600101612a78565b509495945050505050565b60208152600061164c6020830184612a64565b60008060408385031215612ac557600080fd5b82356001600160401b0380821115612adc57600080fd5b612ae8868387016127ba565b93506020850135915080821115612a4d57600080fd5b8015158114610adc57600080fd5b60008060408385031215612b1f57600080fd5b8235612b2a816125b8565b91506020830135612b3a81612afe565b809150509250929050565b60008060408385031215612b5857600080fd5b823591506020830135612b3a816125b8565b60008060408385031215612b7d57600080fd5b50508035926020909101359150565b600080600060608486031215612ba157600080fd5b833560ff81168114612bb257600080fd5b95602085013595506040909401359392505050565b600080600080600060808688031215612bdf57600080fd5b85359450602086013593506040860135925060608601356001600160401b03811115612c0a57600080fd5b612c16888289016126a5565b969995985093965092949392505050565b600080600060608486031215612c3c57600080fd5b8335612c47816125b8565b925060208401356001600160401b0380821115612c6357600080fd5b612c6f878388016127ba565b93506040860135915080821115612c8557600080fd5b50612c92868287016127ba565b9150509250925092565b60008060408385031215612caf57600080fd5b8235612cba816125b8565b91506020830135612b3a816125b8565b600080600080600060a08688031215612ce257600080fd5b8535612ced816125b8565b94506020860135612cfd816125b8565b9350604086013592506060860135915060808601356001600160401b03811115612d2657600080fd5b61293e8882890161282b565b600181811c90821680612d4657607f821691505b60208210811415612d6757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b600060208284031215612dc357600080fd5b815161164c81612afe565b634e487b7160e01b600052601160045260246000fd5b60008219821115612df757612df7612dce565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612e5b57612e5b612dce565b5060010190565b6000816000190483118215151615612e7c57612e7c612dce565b500290565b600082612e9e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612fce6040830185612a64565b8281036020840152612fe08185612a64565b95945050505050565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906130aa9083018461262c565b979650505050505050565b6000602082840312156130c757600080fd5b815161164c816125f9565b600060033d11156130eb5760046000803e5060005160e01c5b90565b600060443d10156130fc5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561312b57505050505090565b82850191508151818111156131435750505050505090565b843d870101602082850101111561315d5750505050505090565b61316c6020828601018761276b565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6000828210156131d1576131d1612dce565b500390565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0386811682528516602082015260a06040820181905260009061321890830186612a64565b828103606084015261322a8186612a64565b9050828103608084015261323e818561262c565b9897505050505050505056fea26469706673582212203a14b67267767d3dfeb1a8656738b5e8201736ed13b7e1edaac6eca656b833c964736f6c634300080c0033
Deployed Bytecode Sourcemap
3441:6064:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:228:3;;;;;;:::i;:::-;;:::i;:::-;;;616:25:15;;;604:2;589:18;2115:228:3;;;;;;;;4271:384:6;;;;;;:::i;:::-;;:::i;:::-;;;1203:14:15;;1196:22;1178:41;;1166:2;1151:18;4271:384:6;1038:187:15;5739:81:6;;;:::i;:::-;;;;;;;:::i;8021:121::-;;;;;;:::i;:::-;;:::i;3821:26::-;;;;;;3784:31;;;;;;7747:141;;;;;;:::i;:::-;;:::i;:::-;;1873:137:1;;;;;;:::i;:::-;;:::i;6203:477:6:-;;;:::i;1605:205:1:-;;;;;;:::i;:::-;;:::i;3990:430:3:-;;;;;;:::i;:::-;;:::i;1004:261:1:-;;;:::i;:::-;;;;;;;:::i;3853:27:6:-;;;;;;2500:508:3;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9375:127:6:-;;;;;;:::i;:::-;;:::i;3689:36::-;;;;;;5642:91;;;;;;:::i;:::-;;:::i;1333:205:1:-;;;;;;:::i;:::-;;:::i;1661:101:14:-;;;:::i;5529:107:6:-;;;;;;:::i;:::-;;:::i;8265:149::-;;;;;;:::i;:::-;;:::i;8915:190::-;;;;;;:::i;:::-;;:::i;1029:85:14:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:14;1029:85;;;-1:-1:-1;;;;;9888:32:15;;;9870:51;;9858:2;9843:18;1029:85:14;9724:203:15;3076:153:3;;;;;;:::i;:::-;;:::i;4076:37:6:-;;;;;-1:-1:-1;;;4076:37:6;;;;;;8420:113;;;;;;:::i;:::-;;:::i;3494:65::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;8148:111;;;;;;:::i;:::-;;:::i;5826:371::-;;;;;;:::i;:::-;;:::i;7095:321::-;;;;;;:::i;:::-;;:::i;7529:97::-;;;:::i;7632:109::-;;;:::i;9111:258::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;12238:32:15;;;12220:51;;12302:2;12287:18;;12280:34;;;;12193:18;9111:258:6;12046:274:15;6686:403:6;;;;;;:::i;:::-;;:::i;3887:72::-;;;;;-1:-1:-1;;;;;3887:72:6;;;7422:101;;;;;;:::i;:::-;;:::i;3296:166:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3418:27:3;;;3395:4;3418:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3296:166;4037:33:6;;;;;-1:-1:-1;;;4037:33:6;;;;;;3529:389:3;;;;;;:::i;:::-;;:::i;1911:198:14:-;;;;;;:::i;:::-;;:::i;2115:228:3:-;2201:7;-1:-1:-1;;;;;2228:21:3;;2220:77;;;;-1:-1:-1;;;2220:77:3;;14394:2:15;2220:77:3;;;14376:21:15;14433:2;14413:18;;;14406:30;14472:34;14452:18;;;14445:62;-1:-1:-1;;;14523:18:15;;;14516:41;14574:19;;2220:77:3;;;;;;;;;-1:-1:-1;2314:13:3;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;2314:22:3;;;;;;;;;;2115:228;;;;;:::o;4271:384:6:-;4419:4;4454:43;4485:11;4454:30;:43::i;:::-;:93;;;;4509:38;4535:11;4509:25;:38::i;:::-;4454:146;;;-1:-1:-1;;;;;;;4559:41:6;;-1:-1:-1;;;4559:41:6;4454:146;:194;;;;4612:36;4636:11;4612:23;:36::i;5739:81::-;5776:13;5808:5;5801:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5739:81;:::o;8021:121::-;8121:14;;;;:5;:14;;;;;8114:21;;8089:13;;8121:14;8114:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8021:121;;;:::o;7747:141::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;7858:14:6::1;::::0;;;:5:::1;:14;::::0;;;;:23:::1;::::0;7875:6;;7858:23:::1;:::i;:::-;;7747:141:::0;;;:::o;1873:137:1:-;1935:4;1970:5;-1:-1:-1;;;;;1959:16:1;:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;1959:7:1;-1:-1:-1;;;;;1959:16:1;;:43;;;-1:-1:-1;1979:23:1;:7;1996:5;1979:16;:23::i;6203:477:6:-;6253:17;;-1:-1:-1;;;6253:17:6;;;;6244:63;;;;-1:-1:-1;;;6244:63:6;;15596:2:15;6244:63:6;;;15578:21:15;15635:2;15615:18;;;15608:30;15674:33;15654:18;;;15647:61;15725:18;;6244:63:6;15394:355:15;6244:63:6;6340:12;;6326:27;;;;:13;:27;;;;;;;;6354:10;6326:39;;;;;;;;;;6325:40;6317:77;;;;-1:-1:-1;;;6317:77:6;;15956:2:15;6317:77:6;;;15938:21:15;15995:2;15975:18;;;15968:30;16034:25;16014:18;;;16007:53;16077:18;;6317:77:6;15754:347:15;6317:77:6;6422:10;;6412:7;;:20;6404:51;;;;-1:-1:-1;;;6404:51:6;;16308:2:15;6404:51:6;;;16290:21:15;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16366:18:15;;;16359:48;16424:18;;6404:51:6;16106:342:15;6404:51:6;6472:12;;6511:20;;6533:9;;6465:78;;-1:-1:-1;;;6465:78:6;;6499:10;6465:78;;;16693:34:15;-1:-1:-1;;;;;6511:20:6;;;16743:18:15;;;16736:43;16795:18;;;16788:34;;;;6472:12:6;;;6465:33;;16628:18:15;;6465:78:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6553:42;6559:10;6571:12;;6585:1;6553:42;;;;;;;;;;;;;-1:-1:-1;;;6553:42:6;;;:5;:42::i;:::-;6619:12;;6605:27;;;;:13;:27;;;;;;;;6633:10;6605:39;;;;;;;:46;;-1:-1:-1;;6605:46:6;6647:4;6605:46;;;;;;6661:7;:12;;6647:4;;6661:7;;:12;;6647:4;;6661:12;:::i;:::-;;;;-1:-1:-1;;6203:477:6:o;1605:205:1:-;1075:7:14;1101:6;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1683:23:1::1;:7;1700:5:::0;1683:16:::1;:23::i;:::-;1679:125;;;1727:31;::::0;1747:10:::1;::::0;-1:-1:-1;;;;;1727:31:1;::::1;::::0;::::1;::::0;;;::::1;1772:21;:7;1787:5:::0;1772:14:::1;:21::i;:::-;;1679:125;1605:205:::0;:::o;3990:430:3:-;-1:-1:-1;;;;;4215:20:3;;719:10:2;4215:20:3;;:60;;-1:-1:-1;4239:36:3;4256:4;719:10:2;3296:166:3;:::i;4239:36::-;4194:157;;;;-1:-1:-1;;;4194:157:3;;17911:2:15;4194:157:3;;;17893:21:15;17950:2;17930:18;;;17923:30;17989:34;17969:18;;;17962:62;-1:-1:-1;;;18040:18:15;;;18033:48;18098:19;;4194:157:3;17709:414:15;4194:157:3;4361:52;4384:4;4390:2;4394:3;4399:7;4408:4;4361:22;:52::i;:::-;3990:430;;;;;:::o;1004:261:1:-;1057:23;1115:16;:7;:14;:16::i;:::-;-1:-1:-1;;;;;1101:31:1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1101:31:1;;1092:40;;1147:6;1142:94;1163:16;:7;:14;:16::i;:::-;1159:1;:20;1142:94;;;1212:13;:7;1223:1;1212:10;:13::i;:::-;1200:6;1207:1;1200:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1200:25:1;;;:9;;;;;;;;;;;:25;1181:3;;;;:::i;:::-;;;;1142:94;;;;1004:261;:::o;2500:508:3:-;2651:16;2710:3;:10;2691:8;:15;:29;2683:83;;;;-1:-1:-1;;;2683:83:3;;18602:2:15;2683:83:3;;;18584:21:15;18641:2;18621:18;;;18614:30;18680:34;18660:18;;;18653:62;-1:-1:-1;;;18731:18:15;;;18724:39;18780:19;;2683:83:3;18400:405:15;2683:83:3;2777:30;2824:8;:15;-1:-1:-1;;;;;2810:30:3;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2810:30:3;;2777:63;;2856:9;2851:120;2875:8;:15;2871:1;:19;2851:120;;;2930:30;2940:8;2949:1;2940:11;;;;;;;;:::i;:::-;;;;;;;2953:3;2957:1;2953:6;;;;;;;;:::i;:::-;;;;;;;2930:9;:30::i;:::-;2911:13;2925:1;2911:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2892:3;;;:::i;:::-;;;2851:120;;;-1:-1:-1;2988:13:3;2500:508;-1:-1:-1;;;2500:508:3:o;9375:127:6:-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;9445:50:6::1;::::0;-1:-1:-1;;;;;9445:27:6;::::1;::::0;9473:21:::1;9445:50:::0;::::1;;;::::0;::::1;::::0;;;9473:21;9445:27;:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;5642:91:::0;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;5710:7:6::1;:16:::0;;-1:-1:-1;;;;;;5710:16:6::1;-1:-1:-1::0;;;;;5710:16:6;;;::::1;::::0;;;::::1;::::0;;5642:91::o;1333:205:1:-;1075:7:14;1101:6;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1413:23:1::1;:7;1430:5:::0;1413:16:::1;:23::i;:::-;1408:124;;1457:32;::::0;1478:10:::1;::::0;-1:-1:-1;;;;;1457:32:1;::::1;::::0;::::1;::::0;;;::::1;1503:18;:7;1515:5:::0;1503:11:::1;:18::i;1661:101:14:-:0;1075:7;1101:6;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;5529:107:6:-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;5604:12:6::1;:25:::0;;-1:-1:-1;;;;;;5604:25:6::1;-1:-1:-1::0;;;;;5604:25:6;;;::::1;::::0;;;::::1;::::0;;5529:107::o;8265:149::-;8371:36;8382:10;8394:3;8399:7;8371:10;:36::i;8915:190::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;9023:20:6::1;:33:::0;;-1:-1:-1;;;;;;9023:33:6::1;-1:-1:-1::0;;;;;9023:33:6;;;::::1;::::0;;;::::1;::::0;;;9066:14:::1;:32:::0;8915:190::o;3076:153:3:-;3170:52;719:10:2;3203:8:3;3213;3170:18;:52::i;8420:113:6:-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;8494:25:6::1;::::0;;;:16:::1;:25;::::0;;;;:32;;-1:-1:-1;;8494:32:6::1;8522:4;8494:32;::::0;;8420:113::o;8148:111::-;8216:36;8222:10;8234:7;8243:8;8216:5;:36::i;5826:371::-;5931:20;5943:1;5946;5949;5931:11;:20::i;:::-;5923:49;;;;-1:-1:-1;;;5923:49:6;;19012:2:15;5923:49:6;;;18994:21:15;19051:2;19031:18;;;19024:30;-1:-1:-1;;;19070:18:15;;;19063:46;19126:18;;5923:49:6;18810:340:15;5923:49:6;5989:12;;6028:20;;6050:9;;5982:78;;-1:-1:-1;;;5982:78:6;;6016:10;5982:78;;;16693:34:15;-1:-1:-1;;;;;6028:20:6;;;16743:18:15;;;16736:43;16795:18;;;16788:34;;;;5989:12:6;;;5982:33;;16628:18:15;;5982:78:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6070:42;6076:10;6088:12;;6102:1;6070:42;;;;;;;;;;;;;-1:-1:-1;;;6070:42:6;;;:5;:42::i;:::-;6136:12;;6122:27;;;;:13;:27;;;;;;;;6150:10;6122:39;;;;;;;:46;;-1:-1:-1;;6122:46:6;6164:4;6122:46;;;;;;6178:7;:12;;6164:4;;6178:7;;:12;;6164:4;;6178:12;:::i;:::-;;;;-1:-1:-1;;;;;5826:371:6:o;7095:321::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;7271:12:6::1;:22:::0;;;7303:9:::1;:20:::0;;;7333:10:::1;:22:::0;;;-1:-1:-1;7365:14:6;;;:5:::1;:14;::::0;;;;:23:::1;::::0;7382:6;;7365:23:::1;:::i;:::-;-1:-1:-1::0;;7408:1:6::1;7398:7;:11:::0;-1:-1:-1;;;;7095:321:6:o;7529:97::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;7606:13:6::1;::::0;;-1:-1:-1;;;;7589:30:6;::::1;-1:-1:-1::0;;;7606:13:6;;;::::1;;;7605:14;7589:30:::0;;::::1;;::::0;;7529:97::o;7632:109::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;7717:17:6::1;::::0;;-1:-1:-1;;;;7696:38:6;::::1;-1:-1:-1::0;;;7717:17:6;;;::::1;;;7716:18;7696:38:::0;;::::1;;::::0;;7632:109::o;9111:258::-;9205:20;;9174:7;;;;-1:-1:-1;;;;;9205:20:6;:34;9202:129;;9262:20;;9297:14;;-1:-1:-1;;;;;9262:20:6;;;;9315:3;;9285:26;;:9;:26;:::i;:::-;9284:34;;;;:::i;:::-;9254:66;;;;9111:258;;;:::o;9202:129::-;-1:-1:-1;9356:1:6;;;;-1:-1:-1;9111:258:6;-1:-1:-1;9111:258:6:o;6686:403::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;6826:16:6::1;6861:9:::0;6857:91:::1;6881:7;:14;6877:1;:18;6857:91;;;6927:7;6935:1;6927:10;;;;;;;;:::i;:::-;;;;;;;6915:22;;;;;:::i;:::-;::::0;-1:-1:-1;6897:3:6;::::1;::::0;::::1;:::i;:::-;;;;6857:91;;;;6975:10;;6965:7;;:20;6957:51;;;::::0;-1:-1:-1;;;6957:51:6;;16308:2:15;6957:51:6::1;::::0;::::1;16290:21:15::0;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16366:18:15;;;16359:48;16424:18;;6957:51:6::1;16106:342:15::0;6957:51:6::1;7018:35;7029:2;7033:3;7038:7;7018:35;;;;;;;;;;;;;-1:-1:-1::0;;;7018:35:6::1;;::::0;:10:::1;:35::i;:::-;7074:8;7063:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;6686:403:6:o;7422:101::-;835:10:1;824:7;1075::14;1101:6;-1:-1:-1;;;;;1101:6:14;;1029:85;824:7:1;-1:-1:-1;;;;;824:21:1;;:53;;;-1:-1:-1;849:28:1;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:1;;;;;;;:::i;:::-;7494:12:6::1;:22:::0;7422:101::o;3529:389:3:-;-1:-1:-1;;;;;3729:20:3;;719:10:2;3729:20:3;;:60;;-1:-1:-1;3753:36:3;3770:4;719:10:2;3296:166:3;:::i;3753:36::-;3708:148;;;;-1:-1:-1;;;3708:148:3;;19752:2:15;3708:148:3;;;19734:21:15;19791:2;19771:18;;;19764:30;19830:34;19810:18;;;19803:62;-1:-1:-1;;;19881:18:15;;;19874:39;19930:19;;3708:148:3;19550:405:15;3708:148:3;3866:45;3884:4;3890:2;3894;3898:6;3906:4;3866:17;:45::i;1911:198:14:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:14;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:14;;20162:2:15;1991:73:14::1;::::0;::::1;20144:21:15::0;20201:2;20181:18;;;20174:30;20240:34;20220:18;;;20213:62;-1:-1:-1;;;20291:18:15;;;20284:36;20337:19;;1991:73:14::1;19960:402:15::0;1991:73:14::1;2074:28;2093:8;2074:18;:28::i;458:230:1:-:0;560:4;-1:-1:-1;;;;;;583:46:1;;-1:-1:-1;;;583:46:1;;:98;;;645:36;669:11;1166:305:3;1268:4;-1:-1:-1;;;;;;1303:41:3;;-1:-1:-1;;;1303:41:3;;:109;;-1:-1:-1;;;;;;;1360:52:3;;-1:-1:-1;;;1360:52:3;1303:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:4;;;1428:36:3;829:155:4;8167:165:5;-1:-1:-1;;;;;8300:23:5;;8247:4;3834:19;;;:12;;;:19;;;;;;:24;;8270:55;8263:62;8167:165;-1:-1:-1;;;8167:165:5:o;8340:553:3:-;-1:-1:-1;;;;;8487:16:3;;8479:62;;;;-1:-1:-1;;;8479:62:3;;;;;;;:::i;:::-;719:10:2;8594:102:3;719:10:2;8552:16:3;8637:2;8641:21;8659:2;8641:17;:21::i;:::-;8664:25;8682:6;8664:17;:25::i;:::-;8691:4;8594:20;:102::i;:::-;8707:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;8707:17:3;;;;;;;;;:27;;8728:6;;8707:13;:27;;8728:6;;8707:27;:::i;:::-;;;;-1:-1:-1;;8749:52:3;;;20943:25:15;;;20999:2;20984:18;;20977:34;;;-1:-1:-1;;;;;8749:52:3;;;;8782:1;;8749:52;;;;;;20916:18:15;8749:52:3;;;;;;;8812:74;8843:8;8861:1;8865:2;8869;8873:6;8881:4;8812:30;:74::i;7930:156:5:-;8003:4;8026:53;8034:3;-1:-1:-1;;;;;8054:23:5;;8026:7;:53::i;6013:1045:3:-;6233:7;:14;6219:3;:10;:28;6211:81;;;;-1:-1:-1;;;6211:81:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;6310:16:3;;6302:66;;;;-1:-1:-1;;;6302:66:3;;;;;;;:::i;:::-;719:10:2;6421:60:3;719:10:2;6452:4:3;6458:2;6462:3;6467:7;6476:4;6421:20;:60::i;:::-;6497:9;6492:411;6516:3;:10;6512:1;:14;6492:411;;;6547:10;6560:3;6564:1;6560:6;;;;;;;;:::i;:::-;;;;;;;6547:19;;6580:14;6597:7;6605:1;6597:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6622:19;6644:13;;;:9;:13;;;;;;-1:-1:-1;;;;;6644:19:3;;;;;;;;;;;;6597:10;;-1:-1:-1;6685:21:3;;;;6677:76;;;;-1:-1:-1;;;6677:76:3;;;;;;;:::i;:::-;6795:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;6795:19:3;;;;;;;;;;6817:20;;;6795:42;;6865:17;;;;;;;:27;;6817:20;;6795:13;6865:27;;6817:20;;6865:27;:::i;:::-;;;;;;;;6533:370;;;6528:3;;;;:::i;:::-;;;6492:411;;;;6948:2;-1:-1:-1;;;;;6918:47:3;6942:4;-1:-1:-1;;;;;6918:47:3;6932:8;-1:-1:-1;;;;;6918:47:3;;6952:3;6957:7;6918:47;;;;;;;:::i;:::-;;;;;;;;6976:75;7012:8;7022:4;7028:2;7032:3;7037:7;7046:4;6976:35;:75::i;:::-;6201:857;6013:1045;;;;;:::o;8413:115:5:-;8476:7;8502:19;8510:3;4028:18;;3946:107;8870:156;8944:7;8994:22;8998:3;9010:5;8994:3;:22::i;7612:150::-;7682:4;7705:50;7710:3;-1:-1:-1;;;;;7730:23:5;;7705:4;:50::i;2263:187:14:-;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:14;;;-1:-1:-1;;;;;;2371:17:14;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;11017:867:3:-;-1:-1:-1;;;;;11164:18:3;;11156:66;;;;-1:-1:-1;;;11156:66:3;;;;;;;:::i;:::-;11254:7;:14;11240:3;:10;:28;11232:81;;;;-1:-1:-1;;;11232:81:3;;;;;;;:::i;:::-;11324:16;719:10:2;11324:31:3;;11366:66;11387:8;11397:4;11411:1;11415:3;11420:7;11366:66;;;;;;;;;;;;:20;:66::i;:::-;11448:9;11443:364;11467:3;:10;11463:1;:14;11443:364;;;11498:10;11511:3;11515:1;11511:6;;;;;;;;:::i;:::-;;;;;;;11498:19;;11531:14;11548:7;11556:1;11548:10;;;;;;;;:::i;:::-;;;;;;;;;;;;11573:19;11595:13;;;:9;:13;;;;;;-1:-1:-1;;;;;11595:19:3;;;;;;;;;;;;11548:10;;-1:-1:-1;11636:21:3;;;;11628:70;;;;-1:-1:-1;;;11628:70:3;;;;;;;:::i;:::-;11740:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;11740:19:3;;;;;;;;;;11762:20;;11740:42;;11479:3;;;;:::i;:::-;;;;11443:364;;;;11860:1;-1:-1:-1;;;;;11822:55:3;11846:4;-1:-1:-1;;;;;11822:55:3;11836:8;-1:-1:-1;;;;;11822:55:3;;11864:3;11869:7;11822:55;;;;;;;:::i;:::-;;;;;;;;11146:738;11017:867;;;:::o;12019:323::-;12169:8;-1:-1:-1;;;;;12160:17:3;:5;-1:-1:-1;;;;;12160:17:3;;;12152:71;;;;-1:-1:-1;;;12152:71:3;;23729:2:15;12152:71:3;;;23711:21:15;23768:2;23748:18;;;23741:30;23807:34;23787:18;;;23780:62;-1:-1:-1;;;23858:18:15;;;23851:39;23907:19;;12152:71:3;23527:405:15;12152:71:3;-1:-1:-1;;;;;12233:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12233:46:3;;;;;;;;;;12294:41;;1178::15;;;12294::3;;1151:18:15;12294:41:3;;;;;;;12019:323;;;:::o;10193:630::-;-1:-1:-1;;;;;10315:18:3;;10307:66;;;;-1:-1:-1;;;10307:66:3;;;;;;;:::i;:::-;719:10:2;10426:102:3;719:10:2;10457:4:3;10384:16;10475:21;10493:2;10475:17;:21::i;:::-;10498:25;10516:6;10498:17;:25::i;:::-;10426:102;;;;;;;;;;;;:20;:102::i;:::-;10539:19;10561:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;10561:19:3;;;;;;;;;;10598:21;;;;10590:70;;;;-1:-1:-1;;;10590:70:3;;;;;;;:::i;:::-;10694:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;10694:19:3;;;;;;;;;;;;10716:20;;;10694:42;;10762:54;;20943:25:15;;;20984:18;;;20977:34;;;10694:19:3;;10762:54;;;;;;20916:18:15;10762:54:3;;;;;;;10297:526;;10193:630;;;:::o;4661:862:6:-;5169:12;;5219:13;;4735:4;5270:27;;;:13;:27;;;;;;;;5070:10;5270:39;;;;;;;;;;5357:10;;5347:7;;5016:385;;-1:-1:-1;;24258:2:15;24254:15;;;24250:24;;5016:385:6;;;24238:37:15;;;;5126:4:6;24309:15:15;;;24305:24;;;24291:12;;;24284:46;24346:12;;;24339:28;;;;-1:-1:-1;;;5219:13:6;;;;;;;24413:14:15;24406:22;24401:3;24397:32;;;24383:12;;;24376:54;5270:39:6;;24476:14:15;24469:22;24460:32;;24446:12;;;24439:54;5347:20:6;24523:32:15;;;24509:12;;;24502:54;4797:709:6;;24572:12:15;;5016:385:6;;;-1:-1:-1;;5016:385:6;;;;;;;;;;4973:458;;5016:385;4973:458;;;;24837:66:15;4863:594:6;;;24825:79:15;;;;24920:12;;;24913:28;24957:12;;4863:594:6;;;-1:-1:-1;;4863:594:6;;;;;;;;;4828:651;;4863:594;4828:651;;;;4797:709;;;;;;;;;25207:25:15;25280:4;25268:17;;25248:18;;;25241:45;25302:18;;;25295:34;;;25345:18;;;25338:34;;;25179:19;;4797:709:6;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4797:709:6;;-1:-1:-1;;4797:709:6;;4770:7;;-1:-1:-1;;;;;4770:736:6;;;:7;;:736;;4661:862;-1:-1:-1;;;;;4661:862:6:o;9238:715:3:-;-1:-1:-1;;;;;9410:16:3;;9402:62;;;;-1:-1:-1;;;9402:62:3;;;;;;;:::i;:::-;9496:7;:14;9482:3;:10;:28;9474:81;;;;-1:-1:-1;;;9474:81:3;;;;;;;:::i;:::-;719:10:2;9608:66:3;719:10:2;9566:16:3;9651:2;9655:3;9660:7;9669:4;9608:20;:66::i;:::-;9690:9;9685:101;9709:3;:10;9705:1;:14;9685:101;;;9765:7;9773:1;9765:10;;;;;;;;:::i;:::-;;;;;;;9740:9;:17;9750:3;9754:1;9750:6;;;;;;;;:::i;:::-;;;;;;;9740:17;;;;;;;;;;;:21;9758:2;-1:-1:-1;;;;;9740:21:3;-1:-1:-1;;;;;9740:21:3;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;9721:3:3;;-1:-1:-1;9721:3:3;;;:::i;:::-;;;;9685:101;;;;9837:2;-1:-1:-1;;;;;9801:53:3;9833:1;-1:-1:-1;;;;;9801:53:3;9815:8;-1:-1:-1;;;;;9801:53:3;;9841:3;9846:7;9801:53;;;;;;;:::i;:::-;;;;;;;;9865:81;9901:8;9919:1;9923:2;9927:3;9932:7;9941:4;9865:35;:81::i;4870:797::-;-1:-1:-1;;;;;5051:16:3;;5043:66;;;;-1:-1:-1;;;5043:66:3;;;;;;;:::i;:::-;719:10:2;5162:96:3;719:10:2;5193:4:3;5199:2;5203:21;5221:2;5203:17;:21::i;5162:96::-;5269:19;5291:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;5291:19:3;;;;;;;;;;5328:21;;;;5320:76;;;;-1:-1:-1;;;5320:76:3;;;;;;;:::i;:::-;5430:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;5430:19:3;;;;;;;;;;5452:20;;;5430:42;;5492:17;;;;;;;:27;;5452:20;;5430:13;5492:27;;5452:20;;5492:27;:::i;:::-;;;;-1:-1:-1;;5535:46:3;;;20943:25:15;;;20999:2;20984:18;;20977:34;;;-1:-1:-1;;;;;5535:46:3;;;;;;;;;;;;;;20916:18:15;5535:46:3;;;;;;;5592:68;5623:8;5633:4;5639:2;5643;5647:6;5655:4;5592:30;:68::i;:::-;5033:634;;4870:797;;;;;:::o;15025:193::-;15144:16;;;15158:1;15144:16;;;;;;;;;15091;;15119:22;;15144:16;;;;;;;;;;;;-1:-1:-1;15144:16:3;15119:41;;15181:7;15170:5;15176:1;15170:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15206:5;15025:193;-1:-1:-1;;15025:193:3:o;8539:370:6:-;8766:9;8762:141;8782:3;:10;8779:1;:13;8762:141;;;-1:-1:-1;;;;;8820:18:6;;;;:47;;;8843:16;:24;8860:3;8864:1;8860:6;;;;;;;;:::i;:::-;;;;;;;;;;;;8843:24;;;;;;;;;;-1:-1:-1;8843:24:6;;;;8820:47;8812:80;;;;-1:-1:-1;;;8812:80:6;;25585:2:15;8812:80:6;;;25567:21:15;25624:2;25604:18;;;25597:30;-1:-1:-1;;;25643:18:15;;;25636:50;25703:18;;8812:80:6;25383:344:15;8812:80:6;8794:3;;;;:::i;:::-;;;;8762:141;;13496:725:3;-1:-1:-1;;;;;13703:13:3;;1087:20:0;1133:8;13699:516:3;;13738:72;;-1:-1:-1;;;13738:72:3;;-1:-1:-1;;;;;13738:38:3;;;;;:72;;13777:8;;13787:4;;13793:2;;13797:6;;13805:4;;13738:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13738:72:3;;;;;;;;-1:-1:-1;;13738:72:3;;;;;;;;;;;;:::i;:::-;;;13734:471;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14081:6;14074:14;;-1:-1:-1;;;14074:14:3;;;;;;;;:::i;13734:471::-;;;14128:62;;-1:-1:-1;;;14128:62:3;;27614:2:15;14128:62:3;;;27596:21:15;27653:2;27633:18;;;27626:30;27692:34;27672:18;;;27665:62;-1:-1:-1;;;27743:18:15;;;27736:50;27803:19;;14128:62:3;27412:416:15;13734:471:3;-1:-1:-1;;;;;;13859:55:3;;-1:-1:-1;;;13859:55:3;13855:152;;13938:50;;-1:-1:-1;;;13938:50:3;;;;;;;:::i;2269:1388:5:-;2335:4;2472:19;;;:12;;;:19;;;;;;2506:15;;2502:1149;;2875:21;2899:14;2912:1;2899:10;:14;:::i;:::-;2947:18;;2875:38;;-1:-1:-1;2927:17:5;;2947:22;;2968:1;;2947:22;:::i;:::-;2927:42;;3001:13;2988:9;:26;2984:398;;3034:17;3054:3;:11;;3066:9;3054:22;;;;;;;;:::i;:::-;;;;;;;;;3034:42;;3205:9;3176:3;:11;;3188:13;3176:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3288:23;;;:12;;;:23;;;;;:36;;;2984:398;3460:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3552:3;:12;;:19;3565:5;3552:19;;;;;;;;;;;3545:26;;;3593:4;3586:11;;;;;;;2502:1149;3635:5;3628:12;;;;;14227:792:3;-1:-1:-1;;;;;14459:13:3;;1087:20:0;1133:8;14455:558:3;;14494:79;;-1:-1:-1;;;14494:79:3;;-1:-1:-1;;;;;14494:43:3;;;;;:79;;14538:8;;14548:4;;14554:3;;14559:7;;14568:4;;14494:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14494:79:3;;;;;;;;-1:-1:-1;;14494:79:3;;;;;;;;;;;;:::i;:::-;;;14490:513;;;;:::i;:::-;-1:-1:-1;;;;;;14652:60:3;;-1:-1:-1;;;14652:60:3;14648:157;;14736:50;;-1:-1:-1;;;14736:50:3;;;;;;;:::i;4395:118:5:-;4462:7;4488:3;:11;;4500:5;4488:18;;;;;;;;:::i;:::-;;;;;;;;;4481:25;;4395:118;;;;:::o;1697:404::-;1760:4;3834:19;;;:12;;;:19;;;;;;1776:319;;-1:-1:-1;1818:23:5;;;;;;;;:11;:23;;;;;;;;;;;;;1998:18;;1976:19;;;:12;;;:19;;;;;;:40;;;;2030:11;;1776:319;-1:-1:-1;2079:5:5;2072:12;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:15;-1:-1:-1;;;;;89:31:15;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:15:o;652:131::-;-1:-1:-1;;;;;;726:32:15;;716:43;;706:71;;773:1;770;763:12;788:245;846:6;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;954:9;941:23;973:30;997:5;973:30;:::i;1230:472::-;1272:3;1310:5;1304:12;1337:6;1332:3;1325:19;1362:1;1372:162;1386:6;1383:1;1380:13;1372:162;;;1448:4;1504:13;;;1500:22;;1494:29;1476:11;;;1472:20;;1465:59;1401:12;1372:162;;;1552:6;1549:1;1546:13;1543:87;;;1618:1;1611:4;1602:6;1597:3;1593:16;1589:27;1582:38;1543:87;-1:-1:-1;1684:2:15;1663:15;-1:-1:-1;;1659:29:15;1650:39;;;;1691:4;1646:50;;1230:472;-1:-1:-1;;1230:472:15:o;1707:220::-;1856:2;1845:9;1838:21;1819:4;1876:45;1917:2;1906:9;1902:18;1894:6;1876:45;:::i;1932:180::-;1991:6;2044:2;2032:9;2023:7;2019:23;2015:32;2012:52;;;2060:1;2057;2050:12;2012:52;-1:-1:-1;2083:23:15;;1932:180;-1:-1:-1;1932:180:15:o;2117:348::-;2169:8;2179:6;2233:3;2226:4;2218:6;2214:17;2210:27;2200:55;;2251:1;2248;2241:12;2200:55;-1:-1:-1;2274:20:15;;-1:-1:-1;;;;;2306:30:15;;2303:50;;;2349:1;2346;2339:12;2303:50;2386:4;2378:6;2374:17;2362:29;;2438:3;2431:4;2422:6;2414;2410:19;2406:30;2403:39;2400:59;;;2455:1;2452;2445:12;2400:59;2117:348;;;;;:::o;2470:479::-;2550:6;2558;2566;2619:2;2607:9;2598:7;2594:23;2590:32;2587:52;;;2635:1;2632;2625:12;2587:52;2671:9;2658:23;2648:33;;2732:2;2721:9;2717:18;2704:32;-1:-1:-1;;;;;2751:6:15;2748:30;2745:50;;;2791:1;2788;2781:12;2745:50;2830:59;2881:7;2872:6;2861:9;2857:22;2830:59;:::i;:::-;2470:479;;2908:8;;-1:-1:-1;2804:85:15;;-1:-1:-1;;;;2470:479:15:o;2954:247::-;3013:6;3066:2;3054:9;3045:7;3041:23;3037:32;3034:52;;;3082:1;3079;3072:12;3034:52;3121:9;3108:23;3140:31;3165:5;3140:31;:::i;3206:127::-;3267:10;3262:3;3258:20;3255:1;3248:31;3298:4;3295:1;3288:15;3322:4;3319:1;3312:15;3338:249;3448:2;3429:13;;-1:-1:-1;;3425:27:15;3413:40;;-1:-1:-1;;;;;3468:34:15;;3504:22;;;3465:62;3462:88;;;3530:18;;:::i;:::-;3566:2;3559:22;-1:-1:-1;;3338:249:15:o;3592:183::-;3652:4;-1:-1:-1;;;;;3677:6:15;3674:30;3671:56;;;3707:18;;:::i;:::-;-1:-1:-1;3752:1:15;3748:14;3764:4;3744:25;;3592:183::o;3780:724::-;3834:5;3887:3;3880:4;3872:6;3868:17;3864:27;3854:55;;3905:1;3902;3895:12;3854:55;3941:6;3928:20;3967:4;3990:43;4030:2;3990:43;:::i;:::-;4062:2;4056:9;4074:31;4102:2;4094:6;4074:31;:::i;:::-;4140:18;;;4232:1;4228:10;;;;4216:23;;4212:32;;;4174:15;;;;-1:-1:-1;4256:15:15;;;4253:35;;;4284:1;4281;4274:12;4253:35;4320:2;4312:6;4308:15;4332:142;4348:6;4343:3;4340:15;4332:142;;;4414:17;;4402:30;;4452:12;;;;4365;;4332:142;;;-1:-1:-1;4492:6:15;3780:724;-1:-1:-1;;;;;;3780:724:15:o;4509:555::-;4551:5;4604:3;4597:4;4589:6;4585:17;4581:27;4571:55;;4622:1;4619;4612:12;4571:55;4658:6;4645:20;-1:-1:-1;;;;;4680:2:15;4677:26;4674:52;;;4706:18;;:::i;:::-;4755:2;4749:9;4767:67;4822:2;4803:13;;-1:-1:-1;;4799:27:15;4828:4;4795:38;4749:9;4767:67;:::i;:::-;4858:2;4850:6;4843:18;4904:3;4897:4;4892:2;4884:6;4880:15;4876:26;4873:35;4870:55;;;4921:1;4918;4911:12;4870:55;4985:2;4978:4;4970:6;4966:17;4959:4;4951:6;4947:17;4934:54;5032:1;5008:15;;;5025:4;5004:26;4997:37;;;;5012:6;4509:555;-1:-1:-1;;;4509:555:15:o;5069:1071::-;5223:6;5231;5239;5247;5255;5308:3;5296:9;5287:7;5283:23;5279:33;5276:53;;;5325:1;5322;5315:12;5276:53;5364:9;5351:23;5383:31;5408:5;5383:31;:::i;:::-;5433:5;-1:-1:-1;5490:2:15;5475:18;;5462:32;5503:33;5462:32;5503:33;:::i;:::-;5555:7;-1:-1:-1;5613:2:15;5598:18;;5585:32;-1:-1:-1;;;;;5666:14:15;;;5663:34;;;5693:1;5690;5683:12;5663:34;5716:61;5769:7;5760:6;5749:9;5745:22;5716:61;:::i;:::-;5706:71;;5830:2;5819:9;5815:18;5802:32;5786:48;;5859:2;5849:8;5846:16;5843:36;;;5875:1;5872;5865:12;5843:36;5898:63;5953:7;5942:8;5931:9;5927:24;5898:63;:::i;:::-;5888:73;;6014:3;6003:9;5999:19;5986:33;5970:49;;6044:2;6034:8;6031:16;6028:36;;;6060:1;6057;6050:12;6028:36;;6083:51;6126:7;6115:8;6104:9;6100:24;6083:51;:::i;:::-;6073:61;;;5069:1071;;;;;;;;:::o;6145:658::-;6316:2;6368:21;;;6438:13;;6341:18;;;6460:22;;;6287:4;;6316:2;6539:15;;;;6513:2;6498:18;;;6287:4;6582:195;6596:6;6593:1;6590:13;6582:195;;;6661:13;;-1:-1:-1;;;;;6657:39:15;6645:52;;6752:15;;;;6717:12;;;;6693:1;6611:9;6582:195;;;-1:-1:-1;6794:3:15;;6145:658;-1:-1:-1;;;;;;6145:658:15:o;6808:1277::-;6926:6;6934;6987:2;6975:9;6966:7;6962:23;6958:32;6955:52;;;7003:1;7000;6993:12;6955:52;7043:9;7030:23;-1:-1:-1;;;;;7113:2:15;7105:6;7102:14;7099:34;;;7129:1;7126;7119:12;7099:34;7167:6;7156:9;7152:22;7142:32;;7212:7;7205:4;7201:2;7197:13;7193:27;7183:55;;7234:1;7231;7224:12;7183:55;7270:2;7257:16;7292:4;7315:43;7355:2;7315:43;:::i;:::-;7387:2;7381:9;7399:31;7427:2;7419:6;7399:31;:::i;:::-;7465:18;;;7553:1;7549:10;;;;7541:19;;7537:28;;;7499:15;;;;-1:-1:-1;7577:19:15;;;7574:39;;;7609:1;7606;7599:12;7574:39;7633:11;;;;7653:217;7669:6;7664:3;7661:15;7653:217;;;7749:3;7736:17;7766:31;7791:5;7766:31;:::i;:::-;7810:18;;7686:12;;;;7848;;;;7653:217;;;7889:6;-1:-1:-1;;7933:18:15;;7920:32;;-1:-1:-1;;7964:16:15;;;7961:36;;;7993:1;7990;7983:12;7961:36;;8016:63;8071:7;8060:8;8049:9;8045:24;8016:63;:::i;:::-;8006:73;;;6808:1277;;;;;:::o;8090:435::-;8143:3;8181:5;8175:12;8208:6;8203:3;8196:19;8234:4;8263:2;8258:3;8254:12;8247:19;;8300:2;8293:5;8289:14;8321:1;8331:169;8345:6;8342:1;8339:13;8331:169;;;8406:13;;8394:26;;8440:12;;;;8475:15;;;;8367:1;8360:9;8331:169;;;-1:-1:-1;8516:3:15;;8090:435;-1:-1:-1;;;;;8090:435:15:o;8530:261::-;8709:2;8698:9;8691:21;8672:4;8729:56;8781:2;8770:9;8766:18;8758:6;8729:56;:::i;8796:595::-;8914:6;8922;8975:2;8963:9;8954:7;8950:23;8946:32;8943:52;;;8991:1;8988;8981:12;8943:52;9031:9;9018:23;-1:-1:-1;;;;;9101:2:15;9093:6;9090:14;9087:34;;;9117:1;9114;9107:12;9087:34;9140:61;9193:7;9184:6;9173:9;9169:22;9140:61;:::i;:::-;9130:71;;9254:2;9243:9;9239:18;9226:32;9210:48;;9283:2;9273:8;9270:16;9267:36;;;9299:1;9296;9289:12;9932:118;10018:5;10011:13;10004:21;9997:5;9994:32;9984:60;;10040:1;10037;10030:12;10055:382;10120:6;10128;10181:2;10169:9;10160:7;10156:23;10152:32;10149:52;;;10197:1;10194;10187:12;10149:52;10236:9;10223:23;10255:31;10280:5;10255:31;:::i;:::-;10305:5;-1:-1:-1;10362:2:15;10347:18;;10334:32;10375:30;10334:32;10375:30;:::i;:::-;10424:7;10414:17;;;10055:382;;;;;:::o;10442:315::-;10510:6;10518;10571:2;10559:9;10550:7;10546:23;10542:32;10539:52;;;10587:1;10584;10577:12;10539:52;10623:9;10610:23;10600:33;;10683:2;10672:9;10668:18;10655:32;10696:31;10721:5;10696:31;:::i;10762:248::-;10830:6;10838;10891:2;10879:9;10870:7;10866:23;10862:32;10859:52;;;10907:1;10904;10897:12;10859:52;-1:-1:-1;;10930:23:15;;;11000:2;10985:18;;;10972:32;;-1:-1:-1;10762:248:15:o;11015:405::-;11090:6;11098;11106;11159:2;11147:9;11138:7;11134:23;11130:32;11127:52;;;11175:1;11172;11165:12;11127:52;11214:9;11201:23;11264:4;11257:5;11253:16;11246:5;11243:27;11233:55;;11284:1;11281;11274:12;11233:55;11307:5;11359:2;11344:18;;11331:32;;-1:-1:-1;11410:2:15;11395:18;;;11382:32;;11015:405;-1:-1:-1;;;11015:405:15:o;11425:616::-;11523:6;11531;11539;11547;11555;11608:3;11596:9;11587:7;11583:23;11579:33;11576:53;;;11625:1;11622;11615:12;11576:53;11661:9;11648:23;11638:33;;11718:2;11707:9;11703:18;11690:32;11680:42;;11769:2;11758:9;11754:18;11741:32;11731:42;;11824:2;11813:9;11809:18;11796:32;-1:-1:-1;;;;;11843:6:15;11840:30;11837:50;;;11883:1;11880;11873:12;11837:50;11922:59;11973:7;11964:6;11953:9;11949:22;11922:59;:::i;:::-;11425:616;;;;-1:-1:-1;11425:616:15;;-1:-1:-1;12000:8:15;;11896:85;11425:616;-1:-1:-1;;;11425:616:15:o;12325:730::-;12452:6;12460;12468;12521:2;12509:9;12500:7;12496:23;12492:32;12489:52;;;12537:1;12534;12527:12;12489:52;12576:9;12563:23;12595:31;12620:5;12595:31;:::i;:::-;12645:5;-1:-1:-1;12701:2:15;12686:18;;12673:32;-1:-1:-1;;;;;12754:14:15;;;12751:34;;;12781:1;12778;12771:12;12751:34;12804:61;12857:7;12848:6;12837:9;12833:22;12804:61;:::i;:::-;12794:71;;12918:2;12907:9;12903:18;12890:32;12874:48;;12947:2;12937:8;12934:16;12931:36;;;12963:1;12960;12953:12;12931:36;;12986:63;13041:7;13030:8;13019:9;13015:24;12986:63;:::i;:::-;12976:73;;;12325:730;;;;;:::o;13060:388::-;13128:6;13136;13189:2;13177:9;13168:7;13164:23;13160:32;13157:52;;;13205:1;13202;13195:12;13157:52;13244:9;13231:23;13263:31;13288:5;13263:31;:::i;:::-;13313:5;-1:-1:-1;13370:2:15;13355:18;;13342:32;13383:33;13342:32;13383:33;:::i;13453:734::-;13557:6;13565;13573;13581;13589;13642:3;13630:9;13621:7;13617:23;13613:33;13610:53;;;13659:1;13656;13649:12;13610:53;13698:9;13685:23;13717:31;13742:5;13717:31;:::i;:::-;13767:5;-1:-1:-1;13824:2:15;13809:18;;13796:32;13837:33;13796:32;13837:33;:::i;:::-;13889:7;-1:-1:-1;13943:2:15;13928:18;;13915:32;;-1:-1:-1;13994:2:15;13979:18;;13966:32;;-1:-1:-1;14049:3:15;14034:19;;14021:33;-1:-1:-1;;;;;14066:30:15;;14063:50;;;14109:1;14106;14099:12;14063:50;14132:49;14173:7;14164:6;14153:9;14149:22;14132:49;:::i;14604:380::-;14683:1;14679:12;;;;14726;;;14747:61;;14801:4;14793:6;14789:17;14779:27;;14747:61;14854:2;14846:6;14843:14;14823:18;14820:38;14817:161;;;14900:10;14895:3;14891:20;14888:1;14881:31;14935:4;14932:1;14925:15;14963:4;14960:1;14953:15;14817:161;;14604:380;;;:::o;14989:400::-;15191:2;15173:21;;;15230:2;15210:18;;;15203:30;15269:34;15264:2;15249:18;;15242:62;-1:-1:-1;;;15335:2:15;15320:18;;15313:34;15379:3;15364:19;;14989:400::o;16833:245::-;16900:6;16953:2;16941:9;16932:7;16928:23;16924:32;16921:52;;;16969:1;16966;16959:12;16921:52;17001:9;16995:16;17020:28;17042:5;17020:28;:::i;17083:127::-;17144:10;17139:3;17135:20;17132:1;17125:31;17175:4;17172:1;17165:15;17199:4;17196:1;17189:15;17215:128;17255:3;17286:1;17282:6;17279:1;17276:13;17273:39;;;17292:18;;:::i;:::-;-1:-1:-1;17328:9:15;;17215:128::o;17348:356::-;17550:2;17532:21;;;17569:18;;;17562:30;17628:34;17623:2;17608:18;;17601:62;17695:2;17680:18;;17348:356::o;18128:127::-;18189:10;18184:3;18180:20;18177:1;18170:31;18220:4;18217:1;18210:15;18244:4;18241:1;18234:15;18260:135;18299:3;-1:-1:-1;;18320:17:15;;18317:43;;;18340:18;;:::i;:::-;-1:-1:-1;18387:1:15;18376:13;;18260:135::o;19155:168::-;19195:7;19261:1;19257;19253:6;19249:14;19246:1;19243:21;19238:1;19231:9;19224:17;19220:45;19217:71;;;19268:18;;:::i;:::-;-1:-1:-1;19308:9:15;;19155:168::o;19328:217::-;19368:1;19394;19384:132;;19438:10;19433:3;19429:20;19426:1;19419:31;19473:4;19470:1;19463:15;19501:4;19498:1;19491:15;19384:132;-1:-1:-1;19530:9:15;;19328:217::o;20367:397::-;20569:2;20551:21;;;20608:2;20588:18;;;20581:30;20647:34;20642:2;20627:18;;20620:62;-1:-1:-1;;;20713:2:15;20698:18;;20691:31;20754:3;20739:19;;20367:397::o;21022:404::-;21224:2;21206:21;;;21263:2;21243:18;;;21236:30;21302:34;21297:2;21282:18;;21275:62;-1:-1:-1;;;21368:2:15;21353:18;;21346:38;21416:3;21401:19;;21022:404::o;21431:401::-;21633:2;21615:21;;;21672:2;21652:18;;;21645:30;21711:34;21706:2;21691:18;;21684:62;-1:-1:-1;;;21777:2:15;21762:18;;21755:35;21822:3;21807:19;;21431:401::o;21837:406::-;22039:2;22021:21;;;22078:2;22058:18;;;22051:30;22117:34;22112:2;22097:18;;22090:62;-1:-1:-1;;;22183:2:15;22168:18;;22161:40;22233:3;22218:19;;21837:406::o;22248:465::-;22505:2;22494:9;22487:21;22468:4;22531:56;22583:2;22572:9;22568:18;22560:6;22531:56;:::i;:::-;22635:9;22627:6;22623:22;22618:2;22607:9;22603:18;22596:50;22663:44;22700:6;22692;22663:44;:::i;:::-;22655:52;22248:465;-1:-1:-1;;;;;22248:465:15:o;22718:399::-;22920:2;22902:21;;;22959:2;22939:18;;;22932:30;22998:34;22993:2;22978:18;;22971:62;-1:-1:-1;;;23064:2:15;23049:18;;23042:33;23107:3;23092:19;;22718:399::o;23122:400::-;23324:2;23306:21;;;23363:2;23343:18;;;23336:30;23402:34;23397:2;23382:18;;23375:62;-1:-1:-1;;;23468:2:15;23453:18;;23446:34;23512:3;23497:19;;23122:400::o;25732:561::-;-1:-1:-1;;;;;26029:15:15;;;26011:34;;26081:15;;26076:2;26061:18;;26054:43;26128:2;26113:18;;26106:34;;;26171:2;26156:18;;26149:34;;;25991:3;26214;26199:19;;26192:32;;;25954:4;;26241:46;;26267:19;;26259:6;26241:46;:::i;:::-;26233:54;25732:561;-1:-1:-1;;;;;;;25732:561:15:o;26298:249::-;26367:6;26420:2;26408:9;26399:7;26395:23;26391:32;26388:52;;;26436:1;26433;26426:12;26388:52;26468:9;26462:16;26487:30;26511:5;26487:30;:::i;26552:179::-;26587:3;26629:1;26611:16;26608:23;26605:120;;;26675:1;26672;26669;26654:23;-1:-1:-1;26712:1:15;26706:8;26701:3;26697:18;26605:120;26552:179;:::o;26736:671::-;26775:3;26817:4;26799:16;26796:26;26793:39;;;26736:671;:::o;26793:39::-;26859:2;26853:9;-1:-1:-1;;26924:16:15;26920:25;;26917:1;26853:9;26896:50;26975:4;26969:11;26999:16;-1:-1:-1;;;;;27105:2:15;27098:4;27090:6;27086:17;27083:25;27078:2;27070:6;27067:14;27064:45;27061:58;;;27112:5;;;;;26736:671;:::o;27061:58::-;27149:6;27143:4;27139:17;27128:28;;27185:3;27179:10;27212:2;27204:6;27201:14;27198:27;;;27218:5;;;;;;26736:671;:::o;27198:27::-;27302:2;27283:16;27277:4;27273:27;27269:36;27262:4;27253:6;27248:3;27244:16;27240:27;27237:69;27234:82;;;27309:5;;;;;;26736:671;:::o;27234:82::-;27325:57;27376:4;27367:6;27359;27355:19;27351:30;27345:4;27325:57;:::i;:::-;-1:-1:-1;27398:3:15;;26736:671;-1:-1:-1;;;;;26736:671:15:o;27833:404::-;28035:2;28017:21;;;28074:2;28054:18;;;28047:30;28113:34;28108:2;28093:18;;28086:62;-1:-1:-1;;;28179:2:15;28164:18;;28157:38;28227:3;28212:19;;27833:404::o;28242:125::-;28282:4;28310:1;28307;28304:8;28301:34;;;28315:18;;:::i;:::-;-1:-1:-1;28352:9:15;;28242:125::o;28372:127::-;28433:10;28428:3;28424:20;28421:1;28414:31;28464:4;28461:1;28454:15;28488:4;28485:1;28478:15;28504:827;-1:-1:-1;;;;;28901:15:15;;;28883:34;;28953:15;;28948:2;28933:18;;28926:43;28863:3;29000:2;28985:18;;28978:31;;;28826:4;;29032:57;;29069:19;;29061:6;29032:57;:::i;:::-;29137:9;29129:6;29125:22;29120:2;29109:9;29105:18;29098:50;29171:44;29208:6;29200;29171:44;:::i;:::-;29157:58;;29264:9;29256:6;29252:22;29246:3;29235:9;29231:19;29224:51;29292:33;29318:6;29310;29292:33;:::i;:::-;29284:41;28504:827;-1:-1:-1;;;;;;;;28504:827:15:o
Swarm Source
ipfs://3a14b67267767d3dfeb1a8656738b5e8201736ed13b7e1edaac6eca656b833c9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.