Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
0
Holders
41
Total Transfers
-
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 |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xe47E8B5b...bcbD20fc3 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ERC1155Solmate
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-31 */ // Sources flattened with hardhat v2.8.3 https://hardhat.org // File @rari-capital/solmate/src/tokens/[email protected] /// @notice Minimalist and gas efficient standard ERC1155 implementation. /// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC1155.sol) abstract contract ERC1155 { /*/////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event TransferSingle( address indexed operator, address indexed from, address indexed to, uint256 id, uint256 amount ); event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] amounts ); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); event URI(string value, uint256 indexed id); /*/////////////////////////////////////////////////////////////// ERC1155 STORAGE //////////////////////////////////////////////////////////////*/ mapping(address => mapping(uint256 => uint256)) public balanceOf; mapping(address => mapping(address => bool)) public isApprovedForAll; /*/////////////////////////////////////////////////////////////// METADATA LOGIC //////////////////////////////////////////////////////////////*/ function uri(uint256 id) public view virtual returns (string memory); /*/////////////////////////////////////////////////////////////// ERC1155 LOGIC //////////////////////////////////////////////////////////////*/ function setApprovalForAll(address operator, bool approved) public virtual { isApprovedForAll[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual { require(msg.sender == from || isApprovedForAll[from][msg.sender], "NOT_AUTHORIZED"); balanceOf[from][id] -= amount; balanceOf[to][id] += amount; emit TransferSingle(msg.sender, from, to, id, amount); require( to.code.length == 0 ? to != address(0) : ERC1155TokenReceiver(to).onERC1155Received(msg.sender, from, id, amount, data) == ERC1155TokenReceiver.onERC1155Received.selector, "UNSAFE_RECIPIENT" ); } function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual { uint256 idsLength = ids.length; // Saves MLOADs. require(idsLength == amounts.length, "LENGTH_MISMATCH"); require(msg.sender == from || isApprovedForAll[from][msg.sender], "NOT_AUTHORIZED"); // Storing these outside the loop saves ~15 gas per iteration. uint256 id; uint256 amount; for (uint256 i = 0; i < idsLength; ) { id = ids[i]; amount = amounts[i]; balanceOf[from][id] -= amount; balanceOf[to][id] += amount; // An array can't have a total length // larger than the max uint256 value. unchecked { ++i; } } emit TransferBatch(msg.sender, from, to, ids, amounts); require( to.code.length == 0 ? to != address(0) : ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender, from, ids, amounts, data) == ERC1155TokenReceiver.onERC1155BatchReceived.selector, "UNSAFE_RECIPIENT" ); } function balanceOfBatch(address[] memory owners, uint256[] memory ids) public view virtual returns (uint256[] memory balances) { uint256 ownersLength = owners.length; // Saves MLOADs. require(ownersLength == ids.length, "LENGTH_MISMATCH"); balances = new uint256[](ownersLength); // Unchecked because the only math done is incrementing // the array index counter which cannot possibly overflow. unchecked { for (uint256 i = 0; i < ownersLength; ++i) { balances[i] = balanceOf[owners[i]][ids[i]]; } } } /*/////////////////////////////////////////////////////////////// ERC165 LOGIC //////////////////////////////////////////////////////////////*/ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0xd9b67a26 || // ERC165 Interface ID for ERC1155 interfaceId == 0x0e89341c; // ERC165 Interface ID for ERC1155MetadataURI } /*/////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal { balanceOf[to][id] += amount; emit TransferSingle(msg.sender, address(0), to, id, amount); require( to.code.length == 0 ? to != address(0) : ERC1155TokenReceiver(to).onERC1155Received(msg.sender, address(0), id, amount, data) == ERC1155TokenReceiver.onERC1155Received.selector, "UNSAFE_RECIPIENT" ); } function _batchMint( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal { uint256 idsLength = ids.length; // Saves MLOADs. require(idsLength == amounts.length, "LENGTH_MISMATCH"); for (uint256 i = 0; i < idsLength; ) { balanceOf[to][ids[i]] += amounts[i]; // An array can't have a total length // larger than the max uint256 value. unchecked { ++i; } } emit TransferBatch(msg.sender, address(0), to, ids, amounts); require( to.code.length == 0 ? to != address(0) : ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender, address(0), ids, amounts, data) == ERC1155TokenReceiver.onERC1155BatchReceived.selector, "UNSAFE_RECIPIENT" ); } function _batchBurn( address from, uint256[] memory ids, uint256[] memory amounts ) internal { uint256 idsLength = ids.length; // Saves MLOADs. require(idsLength == amounts.length, "LENGTH_MISMATCH"); for (uint256 i = 0; i < idsLength; ) { balanceOf[from][ids[i]] -= amounts[i]; // An array can't have a total length // larger than the max uint256 value. unchecked { ++i; } } emit TransferBatch(msg.sender, from, address(0), ids, amounts); } function _burn( address from, uint256 id, uint256 amount ) internal { balanceOf[from][id] -= amount; emit TransferSingle(msg.sender, from, address(0), id, amount); } } /// @notice A generic interface for a contract which properly accepts ERC1155 tokens. /// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC1155.sol) interface ERC1155TokenReceiver { function onERC1155Received( address operator, address from, uint256 id, uint256 amount, bytes calldata data ) external returns (bytes4); function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File contracts/tokens/ERC1155Solmate.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/presets/ERC1155PresetMinterPauser.sol) // SPDX-License-Identifier: MIT pragma solidity 0.8.12; /** * @dev {ERC1155} token, including: * * - ability to check the total supply for a token id * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. * * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._ */ contract ERC1155Solmate is AccessControl, ERC1155 { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); event GrantMinterRole(address minter); event RevokeMinterRole(address minter); error ZeroAddress(); error NotMinter(); constructor() { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); } /** @notice Grant the minter role to an address @param minter address Address to grant the minter role */ function grantMinterRole(address minter) external onlyRole(DEFAULT_ADMIN_ROLE) { if (minter == address(0)) revert ZeroAddress(); _grantRole(MINTER_ROLE, minter); emit GrantMinterRole(minter); } /** @notice Revoke the minter role from an address @param minter address Address to revoke the minter role */ function revokeMinterRole(address minter) external onlyRole(DEFAULT_ADMIN_ROLE) { if (hasRole(MINTER_ROLE, minter) == false) revert NotMinter(); _revokeRole(MINTER_ROLE, minter); emit RevokeMinterRole(minter); } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address to, uint256 id, uint256 amount, bytes calldata data ) external onlyRole(MINTER_ROLE) { _mint(to, id, amount, data); } function mintBatch( address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external onlyRole(MINTER_ROLE) { _batchMint(to, ids, amounts, data); } function burnBatch( address from, uint256[] calldata ids, uint256[] calldata amounts ) external onlyRole(MINTER_ROLE) { _batchBurn(from, ids, amounts); } function burn( address from, uint256 id, uint256 amount ) external onlyRole(MINTER_ROLE) { _burn(from, id, amount); } function uri(uint256 id) public view override returns (string memory) {} // Necessary override due to AccessControl having the same method function supportsInterface(bytes4 interfaceId) public pure override(AccessControl, ERC1155) returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0xd9b67a26 || // ERC165 Interface ID for ERC1155 interfaceId == 0x0e89341c; // ERC165 Interface ID for ERC1155MetadataURI } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NotMinter","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":false,"internalType":"address","name":"minter","type":"address"}],"name":"GrantMinterRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"RevokeMinterRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","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":"amount","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"grantMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001c600033610021565b6100c0565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166100bc576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561007b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611ea6806100cf6000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c806369e2f0fb116100b8578063a22cb4651161007c578063a22cb465146102b5578063d5391393146102c8578063d547741f146102dd578063e985e9c5146102f0578063f242432a1461031e578063f5298aca1461033157600080fd5b806369e2f0fb146102615780636b20c45414610274578063731133e91461028757806391d148541461029a578063a217fddf146102ad57600080fd5b80632eb2c2d6116100ff5780632eb2c2d6146101f55780632f2ff15d1461020857806336568abe1461021b5780633dd1eb611461022e5780634e1273f41461024157600080fd5b8062fdd58e1461013b57806301ffc9a7146101795780630e89341c1461019c5780631f7fdffa146101bd578063248a9ca3146101d2575b600080fd5b6101666101493660046114e2565b600160209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b61018c610187366004611525565b610344565b6040519015158152602001610170565b6101b06101aa366004611542565b50606090565b60405161017091906115b3565b6101d06101cb366004611652565b610396565b005b6101666101e0366004611542565b60009081526020819052604090206001015490565b6101d061020336600461183f565b61045b565b6101d06102163660046118e8565b6106e8565b6101d06102293660046118e8565b610713565b6101d061023c366004611914565b610791565b61025461024f36600461192f565b61081d565b6040516101709190611a29565b6101d061026f366004611914565b610928565b6101d0610282366004611a3c565b6109ba565b6101d0610295366004611abc565b610a49565b61018c6102a83660046118e8565b610aa4565b610166600081565b6101d06102c3366004611b12565b610acd565b610166600080516020611e5183398151915281565b6101d06102eb3660046118e8565b610b39565b61018c6102fe366004611b4e565b600260209081526000928352604080842090915290825290205460ff1681565b6101d061032c366004611b78565b610b5f565b6101d061033f366004611bdc565b610d5a565b60006301ffc9a760e01b6001600160e01b0319831614806103755750636cdb3d1360e11b6001600160e01b03198316145b8061039057506303a24d0760e21b6001600160e01b03198316145b92915050565b600080516020611e518339815191526103af8133610d84565b6104518888888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808c0282810182019093528b82529093508b92508a91829185019084908082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250610de892505050565b5050505050505050565b8251825181146104865760405162461bcd60e51b815260040161047d90611c0f565b60405180910390fd5b336001600160a01b03871614806104c057506001600160a01b038616600090815260026020908152604080832033845290915290205460ff165b6104fd5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b604482015260640161047d565b60008060005b838110156105ce5786818151811061051d5761051d611c38565b6020026020010151925085818151811061053957610539611c38565b6020026020010151915081600160008b6001600160a01b03166001600160a01b03168152602001908152602001600020600085815260200190815260200160002060008282546105899190611c64565b90915550506001600160a01b0388166000908152600160209081526040808320868452909152812080548492906105c1908490611c7b565b9091555050600101610503565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898960405161061e929190611c93565b60405180910390a46001600160a01b0387163b156106bf5760405163bc197c8160e01b808252906001600160a01b0389169063bc197c819061066c9033908d908c908c908c90600401611cc1565b6020604051808303816000875af115801561068b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106af9190611d1f565b6001600160e01b031916146106cc565b6001600160a01b03871615155b6104515760405162461bcd60e51b815260040161047d90611d3c565b6000828152602081905260409020600101546107048133610d84565b61070e8383610f60565b505050565b6001600160a01b03811633146107835760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161047d565b61078d8282610fe4565b5050565b600061079d8133610d84565b6001600160a01b0382166107c45760405163d92e233d60e01b815260040160405180910390fd5b6107dc600080516020611e5183398151915283610f60565b6040516001600160a01b03831681527fccb21c15f968f0bb52788d368fb02536292037fde699477f34712bc4abfa260d906020015b60405180910390a15050565b815181516060919081146108435760405162461bcd60e51b815260040161047d90611c0f565b806001600160401b0381111561085b5761085b6116fc565b604051908082528060200260200182016040528015610884578160200160208202803683370190505b50915060005b8181101561092057600160008683815181106108a8576108a8611c38565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008583815181106108e4576108e4611c38565b602002602001015181526020019081526020016000205483828151811061090d5761090d611c38565b602090810291909101015260010161088a565b505092915050565b60006109348133610d84565b61094c600080516020611e5183398151915283610aa4565b61096957604051633e34a41b60e21b815260040160405180910390fd5b610981600080516020611e5183398151915283610fe4565b6040516001600160a01b03831681527f92afd941d07c798907745566641168d1336079ffdca81e49c6db5d9a5f76009990602001610811565b600080516020611e518339815191526109d38133610d84565b610a418686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a0282810182019093528982529093508992508891829185019084908082843760009201919091525061104992505050565b505050505050565b600080516020611e51833981519152610a628133610d84565b610a4186868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061115a92505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600082815260208190526040902060010154610b558133610d84565b61070e8383610fe4565b336001600160a01b0386161480610b9957506001600160a01b038516600090815260026020908152604080832033845290915290205460ff165b610bd65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b604482015260640161047d565b6001600160a01b038516600090815260016020908152604080832086845290915281208054849290610c09908490611c64565b90915550506001600160a01b038416600090815260016020908152604080832086845290915281208054849290610c41908490611c7b565b909155505060408051848152602081018490526001600160a01b03808716929088169133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46001600160a01b0384163b15610d2a5760405163f23a6e6160e01b808252906001600160a01b0386169063f23a6e6190610cd79033908a90899089908990600401611d66565b6020604051808303816000875af1158015610cf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1a9190611d1f565b6001600160e01b03191614610d37565b6001600160a01b03841615155b610d535760405162461bcd60e51b815260040161047d90611d3c565b5050505050565b600080516020611e51833981519152610d738133610d84565b610d7e84848461129e565b50505050565b610d8e8282610aa4565b61078d57610da6816001600160a01b03166014611324565b610db1836020611324565b604051602001610dc2929190611dab565b60408051601f198184030181529082905262461bcd60e51b825261047d916004016115b3565b825182518114610e0a5760405162461bcd60e51b815260040161047d90611c0f565b60005b81811015610e9a57838181518110610e2757610e27611c38565b602002602001015160016000886001600160a01b03166001600160a01b031681526020019081526020016000206000878481518110610e6857610e68611c38565b602002602001015181526020019081526020016000206000828254610e8d9190611c7b565b9091555050600101610e0d565b50846001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610eeb929190611c93565b60405180910390a46001600160a01b0385163b15610f3a5760405163bc197c8160e01b808252906001600160a01b0387169063bc197c8190610cd79033906000908a908a908a90600401611cc1565b6001600160a01b038516610d535760405162461bcd60e51b815260040161047d90611d3c565b610f6a8282610aa4565b61078d576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610fa03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fee8282610aa4565b1561078d576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b81518151811461106b5760405162461bcd60e51b815260040161047d90611c0f565b60005b818110156110fb5782818151811061108857611088611c38565b602002602001015160016000876001600160a01b03166001600160a01b0316815260200190815260200160002060008684815181106110c9576110c9611c38565b6020026020010151815260200190815260200160002060008282546110ee9190611c64565b909155505060010161106e565b5060006001600160a01b0316846001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161114c929190611c93565b60405180910390a450505050565b6001600160a01b03841660009081526001602090815260408083208684529091528120805484929061118d908490611c7b565b909155505060408051848152602081018490526001600160a01b0386169160009133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46001600160a01b0384163b156112755760405163f23a6e6160e01b808252906001600160a01b0386169063f23a6e6190611222903390600090899089908990600401611d66565b6020604051808303816000875af1158015611241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112659190611d1f565b6001600160e01b03191614611282565b6001600160a01b03841615155b610d7e5760405162461bcd60e51b815260040161047d90611d3c565b6001600160a01b0383166000908152600160209081526040808320858452909152812080548392906112d1908490611c64565b909155505060408051838152602081018390526000916001600160a01b0386169133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4505050565b60606000611333836002611e1a565b61133e906002611c7b565b6001600160401b03811115611355576113556116fc565b6040519080825280601f01601f19166020018201604052801561137f576020820181803683370190505b509050600360fc1b8160008151811061139a5761139a611c38565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106113c9576113c9611c38565b60200101906001600160f81b031916908160001a90535060006113ed846002611e1a565b6113f8906001611c7b565b90505b6001811115611470576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061142c5761142c611c38565b1a60f81b82828151811061144257611442611c38565b60200101906001600160f81b031916908160001a90535060049490941c9361146981611e39565b90506113fb565b5083156114bf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161047d565b9392505050565b80356001600160a01b03811681146114dd57600080fd5b919050565b600080604083850312156114f557600080fd5b6114fe836114c6565b946020939093013593505050565b6001600160e01b03198116811461152257600080fd5b50565b60006020828403121561153757600080fd5b81356114bf8161150c565b60006020828403121561155457600080fd5b5035919050565b60005b8381101561157657818101518382015260200161155e565b83811115610d7e5750506000910152565b6000815180845261159f81602086016020860161155b565b601f01601f19169290920160200192915050565b6020815260006114bf6020830184611587565b60008083601f8401126115d857600080fd5b5081356001600160401b038111156115ef57600080fd5b6020830191508360208260051b850101111561160a57600080fd5b9250929050565b60008083601f84011261162357600080fd5b5081356001600160401b0381111561163a57600080fd5b60208301915083602082850101111561160a57600080fd5b60008060008060008060006080888a03121561166d57600080fd5b611676886114c6565b965060208801356001600160401b038082111561169257600080fd5b61169e8b838c016115c6565b909850965060408a01359150808211156116b757600080fd5b6116c38b838c016115c6565b909650945060608a01359150808211156116dc57600080fd5b506116e98a828b01611611565b989b979a50959850939692959293505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561173a5761173a6116fc565b604052919050565b60006001600160401b0382111561175b5761175b6116fc565b5060051b60200190565b600082601f83011261177657600080fd5b8135602061178b61178683611742565b611712565b82815260059290921b840181019181810190868411156117aa57600080fd5b8286015b848110156117c557803583529183019183016117ae565b509695505050505050565b600082601f8301126117e157600080fd5b81356001600160401b038111156117fa576117fa6116fc565b61180d601f8201601f1916602001611712565b81815284602083860101111561182257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561185757600080fd5b611860866114c6565b945061186e602087016114c6565b935060408601356001600160401b038082111561188a57600080fd5b61189689838a01611765565b945060608801359150808211156118ac57600080fd5b6118b889838a01611765565b935060808801359150808211156118ce57600080fd5b506118db888289016117d0565b9150509295509295909350565b600080604083850312156118fb57600080fd5b8235915061190b602084016114c6565b90509250929050565b60006020828403121561192657600080fd5b6114bf826114c6565b6000806040838503121561194257600080fd5b82356001600160401b038082111561195957600080fd5b818501915085601f83011261196d57600080fd5b8135602061197d61178683611742565b82815260059290921b8401810191818101908984111561199c57600080fd5b948201945b838610156119c1576119b2866114c6565b825294820194908201906119a1565b965050860135925050808211156119d757600080fd5b506119e485828601611765565b9150509250929050565b600081518084526020808501945080840160005b83811015611a1e57815187529582019590820190600101611a02565b509495945050505050565b6020815260006114bf60208301846119ee565b600080600080600060608688031215611a5457600080fd5b611a5d866114c6565b945060208601356001600160401b0380821115611a7957600080fd5b611a8589838a016115c6565b90965094506040880135915080821115611a9e57600080fd5b50611aab888289016115c6565b969995985093965092949392505050565b600080600080600060808688031215611ad457600080fd5b611add866114c6565b9450602086013593506040860135925060608601356001600160401b03811115611b0657600080fd5b611aab88828901611611565b60008060408385031215611b2557600080fd5b611b2e836114c6565b915060208301358015158114611b4357600080fd5b809150509250929050565b60008060408385031215611b6157600080fd5b611b6a836114c6565b915061190b602084016114c6565b600080600080600060a08688031215611b9057600080fd5b611b99866114c6565b9450611ba7602087016114c6565b9350604086013592506060860135915060808601356001600160401b03811115611bd057600080fd5b6118db888289016117d0565b600080600060608486031215611bf157600080fd5b611bfa846114c6565b95602085013595506040909401359392505050565b6020808252600f908201526e0988a9c8ea890be9a92a69a82a8869608b1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015611c7657611c76611c4e565b500390565b60008219821115611c8e57611c8e611c4e565b500190565b604081526000611ca660408301856119ee565b8281036020840152611cb881856119ee565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611ced908301866119ee565b8281036060840152611cff81866119ee565b90508281036080840152611d138185611587565b98975050505050505050565b600060208284031215611d3157600080fd5b81516114bf8161150c565b60208082526010908201526f155394d0519157d49150d2541251539560821b604082015260600190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611da090830184611587565b979650505050505050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351611ddd81601785016020880161155b565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e0e81602884016020880161155b565b01602801949350505050565b6000816000190483118215151615611e3457611e34611c4e565b500290565b600081611e4857611e48611c4e565b50600019019056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220b8b141da0581f83921445c01c2697fdb53b992b3ab4ae380d7dddd594afeb35a64736f6c634300080c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101365760003560e01c806369e2f0fb116100b8578063a22cb4651161007c578063a22cb465146102b5578063d5391393146102c8578063d547741f146102dd578063e985e9c5146102f0578063f242432a1461031e578063f5298aca1461033157600080fd5b806369e2f0fb146102615780636b20c45414610274578063731133e91461028757806391d148541461029a578063a217fddf146102ad57600080fd5b80632eb2c2d6116100ff5780632eb2c2d6146101f55780632f2ff15d1461020857806336568abe1461021b5780633dd1eb611461022e5780634e1273f41461024157600080fd5b8062fdd58e1461013b57806301ffc9a7146101795780630e89341c1461019c5780631f7fdffa146101bd578063248a9ca3146101d2575b600080fd5b6101666101493660046114e2565b600160209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b61018c610187366004611525565b610344565b6040519015158152602001610170565b6101b06101aa366004611542565b50606090565b60405161017091906115b3565b6101d06101cb366004611652565b610396565b005b6101666101e0366004611542565b60009081526020819052604090206001015490565b6101d061020336600461183f565b61045b565b6101d06102163660046118e8565b6106e8565b6101d06102293660046118e8565b610713565b6101d061023c366004611914565b610791565b61025461024f36600461192f565b61081d565b6040516101709190611a29565b6101d061026f366004611914565b610928565b6101d0610282366004611a3c565b6109ba565b6101d0610295366004611abc565b610a49565b61018c6102a83660046118e8565b610aa4565b610166600081565b6101d06102c3366004611b12565b610acd565b610166600080516020611e5183398151915281565b6101d06102eb3660046118e8565b610b39565b61018c6102fe366004611b4e565b600260209081526000928352604080842090915290825290205460ff1681565b6101d061032c366004611b78565b610b5f565b6101d061033f366004611bdc565b610d5a565b60006301ffc9a760e01b6001600160e01b0319831614806103755750636cdb3d1360e11b6001600160e01b03198316145b8061039057506303a24d0760e21b6001600160e01b03198316145b92915050565b600080516020611e518339815191526103af8133610d84565b6104518888888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808c0282810182019093528b82529093508b92508a91829185019084908082843760009201919091525050604080516020601f8b018190048102820181019092528981529250899150889081908401838280828437600092019190915250610de892505050565b5050505050505050565b8251825181146104865760405162461bcd60e51b815260040161047d90611c0f565b60405180910390fd5b336001600160a01b03871614806104c057506001600160a01b038616600090815260026020908152604080832033845290915290205460ff165b6104fd5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b604482015260640161047d565b60008060005b838110156105ce5786818151811061051d5761051d611c38565b6020026020010151925085818151811061053957610539611c38565b6020026020010151915081600160008b6001600160a01b03166001600160a01b03168152602001908152602001600020600085815260200190815260200160002060008282546105899190611c64565b90915550506001600160a01b0388166000908152600160209081526040808320868452909152812080548492906105c1908490611c7b565b9091555050600101610503565b50866001600160a01b0316886001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898960405161061e929190611c93565b60405180910390a46001600160a01b0387163b156106bf5760405163bc197c8160e01b808252906001600160a01b0389169063bc197c819061066c9033908d908c908c908c90600401611cc1565b6020604051808303816000875af115801561068b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106af9190611d1f565b6001600160e01b031916146106cc565b6001600160a01b03871615155b6104515760405162461bcd60e51b815260040161047d90611d3c565b6000828152602081905260409020600101546107048133610d84565b61070e8383610f60565b505050565b6001600160a01b03811633146107835760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161047d565b61078d8282610fe4565b5050565b600061079d8133610d84565b6001600160a01b0382166107c45760405163d92e233d60e01b815260040160405180910390fd5b6107dc600080516020611e5183398151915283610f60565b6040516001600160a01b03831681527fccb21c15f968f0bb52788d368fb02536292037fde699477f34712bc4abfa260d906020015b60405180910390a15050565b815181516060919081146108435760405162461bcd60e51b815260040161047d90611c0f565b806001600160401b0381111561085b5761085b6116fc565b604051908082528060200260200182016040528015610884578160200160208202803683370190505b50915060005b8181101561092057600160008683815181106108a8576108a8611c38565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008583815181106108e4576108e4611c38565b602002602001015181526020019081526020016000205483828151811061090d5761090d611c38565b602090810291909101015260010161088a565b505092915050565b60006109348133610d84565b61094c600080516020611e5183398151915283610aa4565b61096957604051633e34a41b60e21b815260040160405180910390fd5b610981600080516020611e5183398151915283610fe4565b6040516001600160a01b03831681527f92afd941d07c798907745566641168d1336079ffdca81e49c6db5d9a5f76009990602001610811565b600080516020611e518339815191526109d38133610d84565b610a418686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808a0282810182019093528982529093508992508891829185019084908082843760009201919091525061104992505050565b505050505050565b600080516020611e51833981519152610a628133610d84565b610a4186868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061115a92505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600082815260208190526040902060010154610b558133610d84565b61070e8383610fe4565b336001600160a01b0386161480610b9957506001600160a01b038516600090815260026020908152604080832033845290915290205460ff165b610bd65760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b604482015260640161047d565b6001600160a01b038516600090815260016020908152604080832086845290915281208054849290610c09908490611c64565b90915550506001600160a01b038416600090815260016020908152604080832086845290915281208054849290610c41908490611c7b565b909155505060408051848152602081018490526001600160a01b03808716929088169133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46001600160a01b0384163b15610d2a5760405163f23a6e6160e01b808252906001600160a01b0386169063f23a6e6190610cd79033908a90899089908990600401611d66565b6020604051808303816000875af1158015610cf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1a9190611d1f565b6001600160e01b03191614610d37565b6001600160a01b03841615155b610d535760405162461bcd60e51b815260040161047d90611d3c565b5050505050565b600080516020611e51833981519152610d738133610d84565b610d7e84848461129e565b50505050565b610d8e8282610aa4565b61078d57610da6816001600160a01b03166014611324565b610db1836020611324565b604051602001610dc2929190611dab565b60408051601f198184030181529082905262461bcd60e51b825261047d916004016115b3565b825182518114610e0a5760405162461bcd60e51b815260040161047d90611c0f565b60005b81811015610e9a57838181518110610e2757610e27611c38565b602002602001015160016000886001600160a01b03166001600160a01b031681526020019081526020016000206000878481518110610e6857610e68611c38565b602002602001015181526020019081526020016000206000828254610e8d9190611c7b565b9091555050600101610e0d565b50846001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610eeb929190611c93565b60405180910390a46001600160a01b0385163b15610f3a5760405163bc197c8160e01b808252906001600160a01b0387169063bc197c8190610cd79033906000908a908a908a90600401611cc1565b6001600160a01b038516610d535760405162461bcd60e51b815260040161047d90611d3c565b610f6a8282610aa4565b61078d576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610fa03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fee8282610aa4565b1561078d576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b81518151811461106b5760405162461bcd60e51b815260040161047d90611c0f565b60005b818110156110fb5782818151811061108857611088611c38565b602002602001015160016000876001600160a01b03166001600160a01b0316815260200190815260200160002060008684815181106110c9576110c9611c38565b6020026020010151815260200190815260200160002060008282546110ee9190611c64565b909155505060010161106e565b5060006001600160a01b0316846001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161114c929190611c93565b60405180910390a450505050565b6001600160a01b03841660009081526001602090815260408083208684529091528120805484929061118d908490611c7b565b909155505060408051848152602081018490526001600160a01b0386169160009133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46001600160a01b0384163b156112755760405163f23a6e6160e01b808252906001600160a01b0386169063f23a6e6190611222903390600090899089908990600401611d66565b6020604051808303816000875af1158015611241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112659190611d1f565b6001600160e01b03191614611282565b6001600160a01b03841615155b610d7e5760405162461bcd60e51b815260040161047d90611d3c565b6001600160a01b0383166000908152600160209081526040808320858452909152812080548392906112d1908490611c64565b909155505060408051838152602081018390526000916001600160a01b0386169133917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4505050565b60606000611333836002611e1a565b61133e906002611c7b565b6001600160401b03811115611355576113556116fc565b6040519080825280601f01601f19166020018201604052801561137f576020820181803683370190505b509050600360fc1b8160008151811061139a5761139a611c38565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106113c9576113c9611c38565b60200101906001600160f81b031916908160001a90535060006113ed846002611e1a565b6113f8906001611c7b565b90505b6001811115611470576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061142c5761142c611c38565b1a60f81b82828151811061144257611442611c38565b60200101906001600160f81b031916908160001a90535060049490941c9361146981611e39565b90506113fb565b5083156114bf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161047d565b9392505050565b80356001600160a01b03811681146114dd57600080fd5b919050565b600080604083850312156114f557600080fd5b6114fe836114c6565b946020939093013593505050565b6001600160e01b03198116811461152257600080fd5b50565b60006020828403121561153757600080fd5b81356114bf8161150c565b60006020828403121561155457600080fd5b5035919050565b60005b8381101561157657818101518382015260200161155e565b83811115610d7e5750506000910152565b6000815180845261159f81602086016020860161155b565b601f01601f19169290920160200192915050565b6020815260006114bf6020830184611587565b60008083601f8401126115d857600080fd5b5081356001600160401b038111156115ef57600080fd5b6020830191508360208260051b850101111561160a57600080fd5b9250929050565b60008083601f84011261162357600080fd5b5081356001600160401b0381111561163a57600080fd5b60208301915083602082850101111561160a57600080fd5b60008060008060008060006080888a03121561166d57600080fd5b611676886114c6565b965060208801356001600160401b038082111561169257600080fd5b61169e8b838c016115c6565b909850965060408a01359150808211156116b757600080fd5b6116c38b838c016115c6565b909650945060608a01359150808211156116dc57600080fd5b506116e98a828b01611611565b989b979a50959850939692959293505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561173a5761173a6116fc565b604052919050565b60006001600160401b0382111561175b5761175b6116fc565b5060051b60200190565b600082601f83011261177657600080fd5b8135602061178b61178683611742565b611712565b82815260059290921b840181019181810190868411156117aa57600080fd5b8286015b848110156117c557803583529183019183016117ae565b509695505050505050565b600082601f8301126117e157600080fd5b81356001600160401b038111156117fa576117fa6116fc565b61180d601f8201601f1916602001611712565b81815284602083860101111561182257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561185757600080fd5b611860866114c6565b945061186e602087016114c6565b935060408601356001600160401b038082111561188a57600080fd5b61189689838a01611765565b945060608801359150808211156118ac57600080fd5b6118b889838a01611765565b935060808801359150808211156118ce57600080fd5b506118db888289016117d0565b9150509295509295909350565b600080604083850312156118fb57600080fd5b8235915061190b602084016114c6565b90509250929050565b60006020828403121561192657600080fd5b6114bf826114c6565b6000806040838503121561194257600080fd5b82356001600160401b038082111561195957600080fd5b818501915085601f83011261196d57600080fd5b8135602061197d61178683611742565b82815260059290921b8401810191818101908984111561199c57600080fd5b948201945b838610156119c1576119b2866114c6565b825294820194908201906119a1565b965050860135925050808211156119d757600080fd5b506119e485828601611765565b9150509250929050565b600081518084526020808501945080840160005b83811015611a1e57815187529582019590820190600101611a02565b509495945050505050565b6020815260006114bf60208301846119ee565b600080600080600060608688031215611a5457600080fd5b611a5d866114c6565b945060208601356001600160401b0380821115611a7957600080fd5b611a8589838a016115c6565b90965094506040880135915080821115611a9e57600080fd5b50611aab888289016115c6565b969995985093965092949392505050565b600080600080600060808688031215611ad457600080fd5b611add866114c6565b9450602086013593506040860135925060608601356001600160401b03811115611b0657600080fd5b611aab88828901611611565b60008060408385031215611b2557600080fd5b611b2e836114c6565b915060208301358015158114611b4357600080fd5b809150509250929050565b60008060408385031215611b6157600080fd5b611b6a836114c6565b915061190b602084016114c6565b600080600080600060a08688031215611b9057600080fd5b611b99866114c6565b9450611ba7602087016114c6565b9350604086013592506060860135915060808601356001600160401b03811115611bd057600080fd5b6118db888289016117d0565b600080600060608486031215611bf157600080fd5b611bfa846114c6565b95602085013595506040909401359392505050565b6020808252600f908201526e0988a9c8ea890be9a92a69a82a8869608b1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015611c7657611c76611c4e565b500390565b60008219821115611c8e57611c8e611c4e565b500190565b604081526000611ca660408301856119ee565b8281036020840152611cb881856119ee565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611ced908301866119ee565b8281036060840152611cff81866119ee565b90508281036080840152611d138185611587565b98975050505050505050565b600060208284031215611d3157600080fd5b81516114bf8161150c565b60208082526010908201526f155394d0519157d49150d2541251539560821b604082015260600190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611da090830184611587565b979650505050505050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351611ddd81601785016020880161155b565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e0e81602884016020880161155b565b01602801949350505050565b6000816000190483118215151615611e3457611e34611c4e565b500290565b600081611e4857611e48611c4e565b50600019019056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220b8b141da0581f83921445c01c2697fdb53b992b3ab4ae380d7dddd594afeb35a64736f6c634300080c0033
Deployed Bytecode Sourcemap
24799:2762:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1206:64;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;597:25:1;;;585:2;570:18;1206:64:0;;;;;;;;27147:411;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;27147:411:0;1019:187:1;26996:72:0;;;;;;:::i;:::-;-1:-1:-1;27051:13:0;;26996:72;;;;;;;;:::i;26379:231::-;;;;;;:::i;:::-;;:::i;:::-;;20362:131;;;;;;:::i;:::-;20436:7;20463:12;;;;;;;;;;:22;;;;20362:131;2749:1299;;;;;;:::i;:::-;;:::i;20755:147::-;;;;;;:::i;:::-;;:::i;21803:218::-;;;;;;:::i;:::-;;:::i;25291:252::-;;;;;;:::i;:::-;;:::i;4056:659::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25684:270::-;;;;;;:::i;:::-;;:::i;26618:199::-;;;;;;:::i;:::-;;:::i;26176:195::-;;;;;;:::i;:::-;;:::i;19231:147::-;;;;;;:::i;:::-;;:::i;18322:49::-;;18367:4;18322:49;;1808:207;;;;;;:::i;:::-;;:::i;24856:62::-;;-1:-1:-1;;;;;;;;;;;24856:62:0;;21147:149;;;;;;:::i;:::-;;:::i;1279:68::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;2023:718;;;;;;:::i;:::-;;:::i;26825:163::-;;;;;;:::i;:::-;;:::i;27147:411::-;27284:4;-1:-1:-1;;;;;;;;;27326:25:0;;;;:101;;-1:-1:-1;;;;;;;;;;27402:25:0;;;27326:101;:178;;;-1:-1:-1;;;;;;;;;;27479:25:0;;;27326:178;27306:198;27147:411;-1:-1:-1;;27147:411:0:o;26379:231::-;-1:-1:-1;;;;;;;;;;;18813:30:0;24894:24;12228:10;18813;:30::i;:::-;26568:34:::1;26579:2;26583:3;;26568:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;26568:34:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;26588:7:0;;-1:-1:-1;26588:7:0;;;;26568:34;::::1;::::0;26588:7;;26568:34;26588:7;26568:34;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;;26568:34:0::1;::::0;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;26597:4:0;;-1:-1:-1;26597:4:0;;;;26568:34;::::1;26597:4:::0;;;;26568:34;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;26568:10:0::1;::::0;-1:-1:-1;;;26568:34:0:i:1;:::-;26379:231:::0;;;;;;;;:::o;2749:1299::-;2971:10;;3032:14;;3019:27;;3011:55;;;;-1:-1:-1;;;3011:55:0;;;;;;;:::i;:::-;;;;;;;;;3087:10;-1:-1:-1;;;;;3087:18:0;;;;:56;;-1:-1:-1;;;;;;3109:22:0;;;;;;:16;:22;;;;;;;;3132:10;3109:34;;;;;;;;;;3087:56;3079:83;;;;-1:-1:-1;;;3079:83:0;;13013:2:1;3079:83:0;;;12995:21:1;13052:2;13032:18;;;13025:30;-1:-1:-1;;;13071:18:1;;;13064:44;13125:18;;3079:83:0;12811:338:1;3079:83:0;3247:10;3268:14;3300:9;3295:363;3319:9;3315:1;:13;3295:363;;;3352:3;3356:1;3352:6;;;;;;;;:::i;:::-;;;;;;;3347:11;;3382:7;3390:1;3382:10;;;;;;;;:::i;:::-;;;;;;;3373:19;;3432:6;3409:9;:15;3419:4;-1:-1:-1;;;;;3409:15:0;-1:-1:-1;;;;;3409:15:0;;;;;;;;;;;;:19;3425:2;3409:19;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;3453:13:0;;;;;;:9;:13;;;;;;;;:17;;;;;;;;:27;;3474:6;;3453:13;:27;;3474:6;;3453:27;:::i;:::-;;;;-1:-1:-1;;3628:3:0;;3295:363;;;;3707:2;-1:-1:-1;;;;;3675:49:0;3701:4;-1:-1:-1;;;;;3675:49:0;3689:10;-1:-1:-1;;;;;3675:49:0;;3711:3;3716:7;3675:49;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;3759:14:0;;;:19;:237;;3834:85;;-1:-1:-1;;;3834:85:0;;;3944:52;-1:-1:-1;;;;;3834:47:0;;;3944:52;;3834:85;;3882:10;;3894:4;;3900:3;;3905:7;;3914:4;;3834:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3834:162:0;;3759:237;;;-1:-1:-1;;;;;3798:16:0;;;;3759:237;3737:303;;;;-1:-1:-1;;;3737:303:0;;;;;;;:::i;20755:147::-;20436:7;20463:12;;;;;;;;;;:22;;;18813:30;18824:4;12228:10;18813;:30::i;:::-;20869:25:::1;20880:4;20886:7;20869:10;:25::i;:::-;20755:147:::0;;;:::o;21803:218::-;-1:-1:-1;;;;;21899:23:0;;12228:10;21899:23;21891:83;;;;-1:-1:-1;;;21891:83:0;;15784:2:1;21891:83:0;;;15766:21:1;15823:2;15803:18;;;15796:30;15862:34;15842:18;;;15835:62;-1:-1:-1;;;15913:18:1;;;15906:45;15968:19;;21891:83:0;15582:411:1;21891:83:0;21987:26;21999:4;22005:7;21987:11;:26::i;:::-;21803:218;;:::o;25291:252::-;18367:4;18813:30;18367:4;12228:10;18813;:30::i;:::-;-1:-1:-1;;;;;25408:20:0;::::1;25404:46;;25437:13;;-1:-1:-1::0;;;25437:13:0::1;;;;;;;;;;;25404:46;25463:31;-1:-1:-1::0;;;;;;;;;;;25487:6:0::1;25463:10;:31::i;:::-;25512:23;::::0;-1:-1:-1;;;;;16162:32:1;;16144:51;;25512:23:0::1;::::0;16132:2:1;16117:18;25512:23:0::1;;;;;;;;25291:252:::0;;:::o;4056:659::-;4258:13;;4325:10;;4192:25;;4258:13;4309:26;;4301:54;;;;-1:-1:-1;;;4301:54:0;;;;;;;:::i;:::-;4393:12;-1:-1:-1;;;;;4379:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4379:27:0;;4368:38;;4582:9;4577:120;4601:12;4597:1;:16;4577:120;;;4653:9;:20;4663:6;4670:1;4663:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;4653:20:0;-1:-1:-1;;;;;4653:20:0;;;;;;;;;;;;:28;4674:3;4678:1;4674:6;;;;;;;;:::i;:::-;;;;;;;4653:28;;;;;;;;;;;;4639:8;4648:1;4639:11;;;;;;;;:::i;:::-;;;;;;;;;;:42;4615:3;;4577:120;;;;4224:491;4056:659;;;;:::o;25684:270::-;18367:4;18813:30;18367:4;12228:10;18813;:30::i;:::-;25802:28:::1;-1:-1:-1::0;;;;;;;;;;;25823:6:0::1;25802:7;:28::i;:::-;25798:61;;25848:11;;-1:-1:-1::0;;;25848:11:0::1;;;;;;;;;;;25798:61;25872:32;-1:-1:-1::0;;;;;;;;;;;25897:6:0::1;25872:11;:32::i;:::-;25922:24;::::0;-1:-1:-1;;;;;16162:32:1;;16144:51;;25922:24:0::1;::::0;16132:2:1;16117:18;25922:24:0::1;15998:203:1::0;26618:199:0;-1:-1:-1;;;;;;;;;;;18813:30:0;24894:24;12228:10;18813;:30::i;:::-;26779::::1;26790:4;26796:3;;26779:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;26779:30:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;26801:7:0;;-1:-1:-1;26801:7:0;;;;26779:30;::::1;::::0;26801:7;;26779:30;26801:7;26779:30;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;26779:10:0::1;::::0;-1:-1:-1;;;26779:30:0:i:1;:::-;26618:199:::0;;;;;;:::o;26176:195::-;-1:-1:-1;;;;;;;;;;;18813:30:0;24894:24;12228:10;18813;:30::i;:::-;26336:27:::1;26342:2;26346;26350:6;26358:4;;26336:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;26336:5:0::1;::::0;-1:-1:-1;;;26336:27:0:i:1;19231:147::-:0;19317:4;19341:12;;;;;;;;;;;-1:-1:-1;;;;;19341:29:0;;;;;;;;;;;;;;;19231:147::o;1808:207::-;1911:10;1894:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;1894:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;1894:49:0;;;;;;;;;;1961:46;;1159:41:1;;;1894:38:0;;1911:10;1961:46;;1132:18:1;1961:46:0;;;;;;;1808:207;;:::o;21147:149::-;20436:7;20463:12;;;;;;;;;;:22;;;18813:30;18824:4;12228:10;18813;:30::i;:::-;21262:26:::1;21274:4;21280:7;21262:11;:26::i;2023:718::-:0;2208:10;-1:-1:-1;;;;;2208:18:0;;;;:56;;-1:-1:-1;;;;;;2230:22:0;;;;;;:16;:22;;;;;;;;2253:10;2230:34;;;;;;;;;;2208:56;2200:83;;;;-1:-1:-1;;;2200:83:0;;13013:2:1;2200:83:0;;;12995:21:1;13052:2;13032:18;;;13025:30;-1:-1:-1;;;13071:18:1;;;13064:44;13125:18;;2200:83:0;12811:338:1;2200:83:0;-1:-1:-1;;;;;2296:15:0;;;;;;:9;:15;;;;;;;;:19;;;;;;;;:29;;2319:6;;2296:15;:29;;2319:6;;2296:29;:::i;:::-;;;;-1:-1:-1;;;;;;;2336:13:0;;;;;;:9;:13;;;;;;;;:17;;;;;;;;:27;;2357:6;;2336:13;:27;;2357:6;;2336:27;:::i;:::-;;;;-1:-1:-1;;2381:48:0;;;16380:25:1;;;16436:2;16421:18;;16414:34;;;-1:-1:-1;;;;;2381:48:0;;;;;;;;2396:10;;2381:48;;16353:18:1;2381:48:0;;;;;;;-1:-1:-1;;;;;2464:14:0;;;:19;:225;;2539:78;;-1:-1:-1;;;2539:78:0;;;2642:47;-1:-1:-1;;;;;2539:42:0;;;2642:47;;2539:78;;2582:10;;2594:4;;2600:2;;2604:6;;2612:4;;2539:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2539:150:0;;2464:225;;;-1:-1:-1;;;;;2503:16:0;;;;2464:225;2442:291;;;;-1:-1:-1;;;2442:291:0;;;;;;;:::i;:::-;2023:718;;;;;:::o;26825:163::-;-1:-1:-1;;;;;;;;;;;18813:30:0;24894:24;12228:10;18813;:30::i;:::-;26957:23:::1;26963:4;26969:2;26973:6;26957:5;:23::i;:::-;26825:163:::0;;;;:::o;19668:505::-;19757:22;19765:4;19771:7;19757;:22::i;:::-;19752:414;;19945:41;19973:7;-1:-1:-1;;;;;19945:41:0;19983:2;19945:19;:41::i;:::-;20059:38;20087:4;20094:2;20059:19;:38::i;:::-;19850:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;19850:270:0;;;;;;;;;;-1:-1:-1;;;19796:358:0;;;;;;;:::i;6018:957::-;6200:10;;6261:14;;6248:27;;6240:55;;;;-1:-1:-1;;;6240:55:0;;;;;;;:::i;:::-;6313:9;6308:265;6332:9;6328:1;:13;6308:265;;;6385:7;6393:1;6385:10;;;;;;;;:::i;:::-;;;;;;;6360:9;:13;6370:2;-1:-1:-1;;;;;6360:13:0;-1:-1:-1;;;;;6360:13:0;;;;;;;;;;;;:21;6374:3;6378:1;6374:6;;;;;;;;:::i;:::-;;;;;;;6360:21;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;;6543:3:0;;6308:265;;;;6628:2;-1:-1:-1;;;;;6590:55:0;6624:1;-1:-1:-1;;;;;6590:55:0;6604:10;-1:-1:-1;;;;;6590:55:0;;6632:3;6637:7;6590:55;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;6680:14:0;;;:19;:243;;6755:91;;-1:-1:-1;;;6755:91:0;;;6871:52;-1:-1:-1;;;;;6755:47:0;;;6871:52;;6755:91;;6803:10;;6823:1;;6827:3;;6832:7;;6841:4;;6755:91;;;:::i;6680:243::-;-1:-1:-1;;;;;6719:16:0;;6658:309;;;;-1:-1:-1;;;6658:309:0;;;;;;;:::i;23304:238::-;23388:22;23396:4;23402:7;23388;:22::i;:::-;23383:152;;23427:6;:12;;;;;;;;;;;-1:-1:-1;;;;;23427:29:0;;;;;;;;;:36;;-1:-1:-1;;23427:36:0;23459:4;23427:36;;;23510:12;12228:10;;12148:98;23510:12;-1:-1:-1;;;;;23483:40:0;23501:7;-1:-1:-1;;;;;23483:40:0;23495:4;23483:40;;;;;;;;;;23304:238;;:::o;23674:239::-;23758:22;23766:4;23772:7;23758;:22::i;:::-;23754:152;;;23829:5;23797:12;;;;;;;;;;;-1:-1:-1;;;;;23797:29:0;;;;;;;;;;:37;;-1:-1:-1;;23797:37:0;;;23854:40;12228:10;;23797:12;;23854:40;;23829:5;23854:40;23674:239;;:::o;6983:613::-;7139:10;;7200:14;;7187:27;;7179:55;;;;-1:-1:-1;;;7179:55:0;;;;;;;:::i;:::-;7252:9;7247:267;7271:9;7267:1;:13;7247:267;;;7326:7;7334:1;7326:10;;;;;;;;:::i;:::-;;;;;;;7299:9;:15;7309:4;-1:-1:-1;;;;;7299:15:0;-1:-1:-1;;;;;7299:15:0;;;;;;;;;;;;:23;7315:3;7319:1;7315:6;;;;;;;;:::i;:::-;;;;;;;7299:23;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;;7484:3:0;;7247:267;;;;7571:1;-1:-1:-1;;;;;7531:57:0;7557:4;-1:-1:-1;;;;;7531:57:0;7545:10;-1:-1:-1;;;;;7531:57:0;;7575:3;7580:7;7531:57;;;;;;;:::i;:::-;;;;;;;;7108:488;6983:613;;;:::o;5456:554::-;-1:-1:-1;;;;;5593:13:0;;;;;;:9;:13;;;;;;;;:17;;;;;;;;:27;;5614:6;;5593:13;:27;;5614:6;;5593:27;:::i;:::-;;;;-1:-1:-1;;5638:54:0;;;16380:25:1;;;16436:2;16421:18;;16414:34;;;-1:-1:-1;;;;;5638:54:0;;;5673:1;;5653:10;;5638:54;;16353:18:1;5638:54:0;;;;;;;-1:-1:-1;;;;;5727:14:0;;;:19;:231;;5802:84;;-1:-1:-1;;;5802:84:0;;;5911:47;-1:-1:-1;;;;;5802:42:0;;;5911:47;;5802:84;;5845:10;;5865:1;;5869:2;;5873:6;;5881:4;;5802:84;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5802:156:0;;5727:231;;;-1:-1:-1;;;;;5766:16:0;;;;5727:231;5705:297;;;;-1:-1:-1;;;5705:297:0;;;;;;;:::i;7604:222::-;-1:-1:-1;;;;;7715:15:0;;;;;;:9;:15;;;;;;;;:19;;;;;;;;:29;;7738:6;;7715:15;:29;;7738:6;;7715:29;:::i;:::-;;;;-1:-1:-1;;7762:56:0;;;16380:25:1;;;16436:2;16421:18;;16414:34;;;7803:1:0;;-1:-1:-1;;;;;7762:56:0;;;7777:10;;7762:56;;16353:18:1;7762:56:0;;;;;;;7604:222;;;:::o;14007:451::-;14082:13;14108:19;14140:10;14144:6;14140:1;:10;:::i;:::-;:14;;14153:1;14140:14;:::i;:::-;-1:-1:-1;;;;;14130:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14130:25:0;;14108:47;;-1:-1:-1;;;14166:6:0;14173:1;14166:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;14166:15:0;;;;;;;;;-1:-1:-1;;;14192:6:0;14199:1;14192:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;14192:15:0;;;;;;;;-1:-1:-1;14223:9:0;14235:10;14239:6;14235:1;:10;:::i;:::-;:14;;14248:1;14235:14;:::i;:::-;14223:26;;14218:135;14255:1;14251;:5;14218:135;;;-1:-1:-1;;;14303:5:0;14311:3;14303:11;14290:25;;;;;;;:::i;:::-;;;;14278:6;14285:1;14278:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;14278:37:0;;;;;;;;-1:-1:-1;14340:1:0;14330:11;;;;;14258:3;;;:::i;:::-;;;14218:135;;;-1:-1:-1;14371:10:0;;14363:55;;;;-1:-1:-1;;;14363:55:0;;18332:2:1;14363:55:0;;;18314:21:1;;;18351:18;;;18344:30;18410:34;18390:18;;;18383:62;18462:18;;14363:55:0;18130:356:1;14363:55:0;14443:6;14007:451;-1:-1:-1;;;14007:451:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;687:71;633:131;:::o;769:245::-;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;1211:180::-;1270:6;1323:2;1311:9;1302:7;1298:23;1294:32;1291:52;;;1339:1;1336;1329:12;1291:52;-1:-1:-1;1362:23:1;;1211:180;-1:-1:-1;1211:180:1:o;1396:258::-;1468:1;1478:113;1492:6;1489:1;1486:13;1478:113;;;1568:11;;;1562:18;1549:11;;;1542:39;1514:2;1507:10;1478:113;;;1609:6;1606:1;1603:13;1600:48;;;-1:-1:-1;;1644:1:1;1626:16;;1619:27;1396:258::o;1659:::-;1701:3;1739:5;1733:12;1766:6;1761:3;1754:19;1782:63;1838:6;1831:4;1826:3;1822:14;1815:4;1808:5;1804:16;1782:63;:::i;:::-;1899:2;1878:15;-1:-1:-1;;1874:29:1;1865:39;;;;1906:4;1861:50;;1659:258;-1:-1:-1;;1659:258:1:o;1922:220::-;2071:2;2060:9;2053:21;2034:4;2091:45;2132:2;2121:9;2117:18;2109:6;2091:45;:::i;2147:367::-;2210:8;2220:6;2274:3;2267:4;2259:6;2255:17;2251:27;2241:55;;2292:1;2289;2282:12;2241:55;-1:-1:-1;2315:20:1;;-1:-1:-1;;;;;2347:30:1;;2344:50;;;2390:1;2387;2380:12;2344:50;2427:4;2419:6;2415:17;2403:29;;2487:3;2480:4;2470:6;2467:1;2463:14;2455:6;2451:27;2447:38;2444:47;2441:67;;;2504:1;2501;2494:12;2441:67;2147:367;;;;;:::o;2519:347::-;2570:8;2580:6;2634:3;2627:4;2619:6;2615:17;2611:27;2601:55;;2652:1;2649;2642:12;2601:55;-1:-1:-1;2675:20:1;;-1:-1:-1;;;;;2707:30:1;;2704:50;;;2750:1;2747;2740:12;2704:50;2787:4;2779:6;2775:17;2763:29;;2839:3;2832:4;2823:6;2815;2811:19;2807:30;2804:39;2801:59;;;2856:1;2853;2846:12;2871:1135;3022:6;3030;3038;3046;3054;3062;3070;3123:3;3111:9;3102:7;3098:23;3094:33;3091:53;;;3140:1;3137;3130:12;3091:53;3163:29;3182:9;3163:29;:::i;:::-;3153:39;;3243:2;3232:9;3228:18;3215:32;-1:-1:-1;;;;;3307:2:1;3299:6;3296:14;3293:34;;;3323:1;3320;3313:12;3293:34;3362:70;3424:7;3415:6;3404:9;3400:22;3362:70;:::i;:::-;3451:8;;-1:-1:-1;3336:96:1;-1:-1:-1;3539:2:1;3524:18;;3511:32;;-1:-1:-1;3555:16:1;;;3552:36;;;3584:1;3581;3574:12;3552:36;3623:72;3687:7;3676:8;3665:9;3661:24;3623:72;:::i;:::-;3714:8;;-1:-1:-1;3597:98:1;-1:-1:-1;3802:2:1;3787:18;;3774:32;;-1:-1:-1;3818:16:1;;;3815:36;;;3847:1;3844;3837:12;3815:36;;3886:60;3938:7;3927:8;3916:9;3912:24;3886:60;:::i;:::-;2871:1135;;;;-1:-1:-1;2871:1135:1;;-1:-1:-1;2871:1135:1;;;;3860:86;;-1:-1:-1;;;2871:1135:1:o;4378:127::-;4439:10;4434:3;4430:20;4427:1;4420:31;4470:4;4467:1;4460:15;4494:4;4491:1;4484:15;4510:275;4581:2;4575:9;4646:2;4627:13;;-1:-1:-1;;4623:27:1;4611:40;;-1:-1:-1;;;;;4666:34:1;;4702:22;;;4663:62;4660:88;;;4728:18;;:::i;:::-;4764:2;4757:22;4510:275;;-1:-1:-1;4510:275:1:o;4790:183::-;4850:4;-1:-1:-1;;;;;4875:6:1;4872:30;4869:56;;;4905:18;;:::i;:::-;-1:-1:-1;4950:1:1;4946:14;4962:4;4942:25;;4790:183::o;4978:662::-;5032:5;5085:3;5078:4;5070:6;5066:17;5062:27;5052:55;;5103:1;5100;5093:12;5052:55;5139:6;5126:20;5165:4;5189:60;5205:43;5245:2;5205:43;:::i;:::-;5189:60;:::i;:::-;5283:15;;;5369:1;5365:10;;;;5353:23;;5349:32;;;5314:12;;;;5393:15;;;5390:35;;;5421:1;5418;5411:12;5390:35;5457:2;5449:6;5445:15;5469:142;5485:6;5480:3;5477:15;5469:142;;;5551:17;;5539:30;;5589:12;;;;5502;;5469:142;;;-1:-1:-1;5629:5:1;4978:662;-1:-1:-1;;;;;;4978:662:1:o;5645:530::-;5687:5;5740:3;5733:4;5725:6;5721:17;5717:27;5707:55;;5758:1;5755;5748:12;5707:55;5794:6;5781:20;-1:-1:-1;;;;;5816:2:1;5813:26;5810:52;;;5842:18;;:::i;:::-;5886:55;5929:2;5910:13;;-1:-1:-1;;5906:27:1;5935:4;5902:38;5886:55;:::i;:::-;5966:2;5957:7;5950:19;6012:3;6005:4;6000:2;5992:6;5988:15;5984:26;5981:35;5978:55;;;6029:1;6026;6019:12;5978:55;6094:2;6087:4;6079:6;6075:17;6068:4;6059:7;6055:18;6042:55;6142:1;6117:16;;;6135:4;6113:27;6106:38;;;;6121:7;5645:530;-1:-1:-1;;;5645:530:1:o;6180:943::-;6334:6;6342;6350;6358;6366;6419:3;6407:9;6398:7;6394:23;6390:33;6387:53;;;6436:1;6433;6426:12;6387:53;6459:29;6478:9;6459:29;:::i;:::-;6449:39;;6507:38;6541:2;6530:9;6526:18;6507:38;:::i;:::-;6497:48;;6596:2;6585:9;6581:18;6568:32;-1:-1:-1;;;;;6660:2:1;6652:6;6649:14;6646:34;;;6676:1;6673;6666:12;6646:34;6699:61;6752:7;6743:6;6732:9;6728:22;6699:61;:::i;:::-;6689:71;;6813:2;6802:9;6798:18;6785:32;6769:48;;6842:2;6832:8;6829:16;6826:36;;;6858:1;6855;6848:12;6826:36;6881:63;6936:7;6925:8;6914:9;6910:24;6881:63;:::i;:::-;6871:73;;6997:3;6986:9;6982:19;6969:33;6953:49;;7027:2;7017:8;7014:16;7011:36;;;7043:1;7040;7033:12;7011:36;;7066:51;7109:7;7098:8;7087:9;7083:24;7066:51;:::i;:::-;7056:61;;;6180:943;;;;;;;;:::o;7128:254::-;7196:6;7204;7257:2;7245:9;7236:7;7232:23;7228:32;7225:52;;;7273:1;7270;7263:12;7225:52;7309:9;7296:23;7286:33;;7338:38;7372:2;7361:9;7357:18;7338:38;:::i;:::-;7328:48;;7128:254;;;;;:::o;7387:186::-;7446:6;7499:2;7487:9;7478:7;7474:23;7470:32;7467:52;;;7515:1;7512;7505:12;7467:52;7538:29;7557:9;7538:29;:::i;7578:1146::-;7696:6;7704;7757:2;7745:9;7736:7;7732:23;7728:32;7725:52;;;7773:1;7770;7763:12;7725:52;7813:9;7800:23;-1:-1:-1;;;;;7883:2:1;7875:6;7872:14;7869:34;;;7899:1;7896;7889:12;7869:34;7937:6;7926:9;7922:22;7912:32;;7982:7;7975:4;7971:2;7967:13;7963:27;7953:55;;8004:1;8001;7994:12;7953:55;8040:2;8027:16;8062:4;8086:60;8102:43;8142:2;8102:43;:::i;8086:60::-;8180:15;;;8262:1;8258:10;;;;8250:19;;8246:28;;;8211:12;;;;8286:19;;;8283:39;;;8318:1;8315;8308:12;8283:39;8342:11;;;;8362:148;8378:6;8373:3;8370:15;8362:148;;;8444:23;8463:3;8444:23;:::i;:::-;8432:36;;8395:12;;;;8488;;;;8362:148;;;8529:5;-1:-1:-1;;8572:18:1;;8559:32;;-1:-1:-1;;8603:16:1;;;8600:36;;;8632:1;8629;8622:12;8600:36;;8655:63;8710:7;8699:8;8688:9;8684:24;8655:63;:::i;:::-;8645:73;;;7578:1146;;;;;:::o;8729:435::-;8782:3;8820:5;8814:12;8847:6;8842:3;8835:19;8873:4;8902:2;8897:3;8893:12;8886:19;;8939:2;8932:5;8928:14;8960:1;8970:169;8984:6;8981:1;8978:13;8970:169;;;9045:13;;9033:26;;9079:12;;;;9114:15;;;;9006:1;8999:9;8970:169;;;-1:-1:-1;9155:3:1;;8729:435;-1:-1:-1;;;;;8729:435:1:o;9169:261::-;9348:2;9337:9;9330:21;9311:4;9368:56;9420:2;9409:9;9405:18;9397:6;9368:56;:::i;9435:847::-;9566:6;9574;9582;9590;9598;9651:2;9639:9;9630:7;9626:23;9622:32;9619:52;;;9667:1;9664;9657:12;9619:52;9690:29;9709:9;9690:29;:::i;:::-;9680:39;;9770:2;9759:9;9755:18;9742:32;-1:-1:-1;;;;;9834:2:1;9826:6;9823:14;9820:34;;;9850:1;9847;9840:12;9820:34;9889:70;9951:7;9942:6;9931:9;9927:22;9889:70;:::i;:::-;9978:8;;-1:-1:-1;9863:96:1;-1:-1:-1;10066:2:1;10051:18;;10038:32;;-1:-1:-1;10082:16:1;;;10079:36;;;10111:1;10108;10101:12;10079:36;;10150:72;10214:7;10203:8;10192:9;10188:24;10150:72;:::i;:::-;9435:847;;;;-1:-1:-1;9435:847:1;;-1:-1:-1;10241:8:1;;10124:98;9435:847;-1:-1:-1;;;9435:847:1:o;10287:620::-;10384:6;10392;10400;10408;10416;10469:3;10457:9;10448:7;10444:23;10440:33;10437:53;;;10486:1;10483;10476:12;10437:53;10509:29;10528:9;10509:29;:::i;:::-;10499:39;;10585:2;10574:9;10570:18;10557:32;10547:42;;10636:2;10625:9;10621:18;10608:32;10598:42;;10691:2;10680:9;10676:18;10663:32;-1:-1:-1;;;;;10710:6:1;10707:30;10704:50;;;10750:1;10747;10740:12;10704:50;10789:58;10839:7;10830:6;10819:9;10815:22;10789:58;:::i;10912:347::-;10977:6;10985;11038:2;11026:9;11017:7;11013:23;11009:32;11006:52;;;11054:1;11051;11044:12;11006:52;11077:29;11096:9;11077:29;:::i;:::-;11067:39;;11156:2;11145:9;11141:18;11128:32;11203:5;11196:13;11189:21;11182:5;11179:32;11169:60;;11225:1;11222;11215:12;11169:60;11248:5;11238:15;;;10912:347;;;;;:::o;11264:260::-;11332:6;11340;11393:2;11381:9;11372:7;11368:23;11364:32;11361:52;;;11409:1;11406;11399:12;11361:52;11432:29;11451:9;11432:29;:::i;:::-;11422:39;;11480:38;11514:2;11503:9;11499:18;11480:38;:::i;11529:606::-;11633:6;11641;11649;11657;11665;11718:3;11706:9;11697:7;11693:23;11689:33;11686:53;;;11735:1;11732;11725:12;11686:53;11758:29;11777:9;11758:29;:::i;:::-;11748:39;;11806:38;11840:2;11829:9;11825:18;11806:38;:::i;:::-;11796:48;;11891:2;11880:9;11876:18;11863:32;11853:42;;11942:2;11931:9;11927:18;11914:32;11904:42;;11997:3;11986:9;11982:19;11969:33;-1:-1:-1;;;;;12017:6:1;12014:30;12011:50;;;12057:1;12054;12047:12;12011:50;12080:49;12121:7;12112:6;12101:9;12097:22;12080:49;:::i;12140:322::-;12217:6;12225;12233;12286:2;12274:9;12265:7;12261:23;12257:32;12254:52;;;12302:1;12299;12292:12;12254:52;12325:29;12344:9;12325:29;:::i;:::-;12315:39;12401:2;12386:18;;12373:32;;-1:-1:-1;12452:2:1;12437:18;;;12424:32;;12140:322;-1:-1:-1;;;12140:322:1:o;12467:339::-;12669:2;12651:21;;;12708:2;12688:18;;;12681:30;-1:-1:-1;;;12742:2:1;12727:18;;12720:45;12797:2;12782:18;;12467:339::o;13154:127::-;13215:10;13210:3;13206:20;13203:1;13196:31;13246:4;13243:1;13236:15;13270:4;13267:1;13260:15;13286:127;13347:10;13342:3;13338:20;13335:1;13328:31;13378:4;13375:1;13368:15;13402:4;13399:1;13392:15;13418:125;13458:4;13486:1;13483;13480:8;13477:34;;;13491:18;;:::i;:::-;-1:-1:-1;13528:9:1;;13418:125::o;13548:128::-;13588:3;13619:1;13615:6;13612:1;13609:13;13606:39;;;13625:18;;:::i;:::-;-1:-1:-1;13661:9:1;;13548:128::o;13681:465::-;13938:2;13927:9;13920:21;13901:4;13964:56;14016:2;14005:9;14001:18;13993:6;13964:56;:::i;:::-;14068:9;14060:6;14056:22;14051:2;14040:9;14036:18;14029:50;14096:44;14133:6;14125;14096:44;:::i;:::-;14088:52;13681:465;-1:-1:-1;;;;;13681:465:1:o;14151:827::-;-1:-1:-1;;;;;14548:15:1;;;14530:34;;14600:15;;14595:2;14580:18;;14573:43;14510:3;14647:2;14632:18;;14625:31;;;14473:4;;14679:57;;14716:19;;14708:6;14679:57;:::i;:::-;14784:9;14776:6;14772:22;14767:2;14756:9;14752:18;14745:50;14818:44;14855:6;14847;14818:44;:::i;:::-;14804:58;;14911:9;14903:6;14899:22;14893:3;14882:9;14878:19;14871:51;14939:33;14965:6;14957;14939:33;:::i;:::-;14931:41;14151:827;-1:-1:-1;;;;;;;;14151:827:1:o;14983:249::-;15052:6;15105:2;15093:9;15084:7;15080:23;15076:32;15073:52;;;15121:1;15118;15111:12;15073:52;15153:9;15147:16;15172:30;15196:5;15172:30;:::i;15237:340::-;15439:2;15421:21;;;15478:2;15458:18;;;15451:30;-1:-1:-1;;;15512:2:1;15497:18;;15490:46;15568:2;15553:18;;15237:340::o;16459:561::-;-1:-1:-1;;;;;16756:15:1;;;16738:34;;16808:15;;16803:2;16788:18;;16781:43;16855:2;16840:18;;16833:34;;;16898:2;16883:18;;16876:34;;;16718:3;16941;16926:19;;16919:32;;;16681:4;;16968:46;;16994:19;;16986:6;16968:46;:::i;:::-;16960:54;16459:561;-1:-1:-1;;;;;;;16459:561:1:o;17025:786::-;-1:-1:-1;;;17431:3:1;17424:38;17406:3;17491:6;17485:13;17507:62;17562:6;17557:2;17552:3;17548:12;17541:4;17533:6;17529:17;17507:62;:::i;:::-;-1:-1:-1;;;17628:2:1;17588:16;;;17620:11;;;17613:40;17678:13;;17700:63;17678:13;17749:2;17741:11;;17734:4;17722:17;;17700:63;:::i;:::-;17783:17;17802:2;17779:26;;17025:786;-1:-1:-1;;;;17025:786:1:o;17816:168::-;17856:7;17922:1;17918;17914:6;17910:14;17907:1;17904:21;17899:1;17892:9;17885:17;17881:45;17878:71;;;17929:18;;:::i;:::-;-1:-1:-1;17969:9:1;;17816:168::o;17989:136::-;18028:3;18056:5;18046:39;;18065:18;;:::i;:::-;-1:-1:-1;;;18101:18:1;;17989:136::o
Swarm Source
ipfs://b8b141da0581f83921445c01c2697fdb53b992b3ab4ae380d7dddd594afeb35a
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.