Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Services / Solutions
Overview
Max Total Supply
24,536,415.17 WBUY
Holders
1,129 (0.00%)
Market
Price
$0.03 @ 0.000013 ETH (+4.58%)
Onchain Market Cap
$772,151.42
Circulating Supply Market Cap
$19,366,345.00
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20MinterPauserCapped
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./ERC20Pausable.sol"; import "./AccessControlEnumerable.sol"; import "./Context.sol"; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * - a hard cap of one billion to the supply of tokens * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC20MinterPauserCapped is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); uint256 immutable private _cap; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract and sets the value of the `cap`. This value * is immutable, it can only be set once during construction. * * See {ERC20-constructor}. */ constructor(string memory name, string memory symbol, uint256 cap_) ERC20(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); require(cap_ > 0, "ERC20Capped: cap must be non-zero"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. * - if minted, the total supply must not exceed the value of `cap`. */ function mint(address to, uint256 amount) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC20MinterPauser: must have minter role to mint"); require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20MinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20MinterPauser: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", 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 override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./AccessControl.sol"; import "./EnumerableSet.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT 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]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT 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; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; // WBUY } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 2; // for better interoperability with BUY (default is 18) } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cap_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162003d6f38038062003d6f833981810160405281019062000037919062000554565b82828160059080519060200190620000519291906200041b565b5080600690805190602001906200006a9291906200041b565b5050506000600760006101000a81548160ff021916908315150217905550620000ac6000801b620000a06200018560201b60201c565b6200018d60201b60201c565b620000ed7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000e16200018560201b60201c565b6200018d60201b60201c565b6200012e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001226200018560201b60201c565b6200018d60201b60201c565b6000811162000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b9062000603565b60405180910390fd5b806080818152505050505062000819565b600033905090565b620001a48282620001d560201b62000fa81760201c565b620001d08160016000858152602001908152602001600020620001eb60201b62000fb61790919060201c565b505050565b620001e782826200022360201b60201c565b5050565b60006200021b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200031460201b60201c565b905092915050565b6200023582826200038e60201b60201c565b6200031057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002b56200018560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620003288383620003f860201b60201c565b6200038357826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000388565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200042990620006d5565b90600052602060002090601f0160209004810192826200044d576000855562000499565b82601f106200046857805160ff191683800117855562000499565b8280016001018555821562000499579182015b82811115620004985782518255916020019190600101906200047b565b5b509050620004a89190620004ac565b5090565b5b80821115620004c7576000816000905550600101620004ad565b5090565b6000620004e2620004dc846200064e565b62000625565b905082815260208101848484011115620004fb57600080fd5b620005088482856200069f565b509392505050565b600082601f8301126200052257600080fd5b815162000534848260208601620004cb565b91505092915050565b6000815190506200054e81620007ff565b92915050565b6000806000606084860312156200056a57600080fd5b600084015167ffffffffffffffff8111156200058557600080fd5b620005938682870162000510565b935050602084015167ffffffffffffffff811115620005b157600080fd5b620005bf8682870162000510565b9250506040620005d2868287016200053d565b9150509250925092565b6000620005eb60218362000684565b9150620005f882620007b0565b604082019050919050565b600060208201905081810360008301526200061e81620005dc565b9050919050565b60006200063162000644565b90506200063f82826200070b565b919050565b6000604051905090565b600067ffffffffffffffff8211156200066c576200066b62000770565b5b62000677826200079f565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620006bf578082015181840152602081019050620006a2565b83811115620006cf576000848401525b50505050565b60006002820490506001821680620006ee57607f821691505b6020821081141562000705576200070462000741565b5b50919050565b62000716826200079f565b810181811067ffffffffffffffff8211171562000738576200073762000770565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332304361707065643a20636170206d757374206265206e6f6e2d7a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b6200080a8162000695565b81146200081657600080fd5b50565b60805161353a620008356000396000610873015261353a6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610556578063d547741f14610574578063dd62ed3e14610590578063e63ab1e9146105c0576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063ca15c87314610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec578063355274ea1461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e991906124e8565b6105de565b6040516101fb9190612946565b60405180910390f35b61020c610658565b604051610219919061297c565b60405180910390f35b61023c6004803603810190610237919061240b565b6106ea565b6040516102499190612946565b60405180910390f35b61025a610708565b6040516102679190612c1e565b60405180910390f35b61028a600480360381019061028591906123bc565b610712565b6040516102979190612946565b60405180910390f35b6102ba60048036038101906102b59190612447565b610813565b6040516102c79190612961565b60405180910390f35b6102ea60048036038101906102e59190612470565b610832565b005b6102f4610866565b6040516103019190612c39565b60405180910390f35b61031261086f565b60405161031f9190612c1e565b60405180910390f35b610342600480360381019061033d9190612470565b610897565b005b61035e6004803603810190610359919061240b565b6108cb565b60405161036b9190612946565b60405180910390f35b61037c610977565b005b6103986004803603810190610393919061240b565b6109f1565b005b6103b460048036038101906103af9190612511565b610acb565b005b6103be610adf565b6040516103cb9190612946565b60405180910390f35b6103ee60048036038101906103e99190612357565b610af6565b6040516103fb9190612c1e565b60405180910390f35b61041e6004803603810190610419919061240b565b610b3f565b005b610428610bc3565b005b610444600480360381019061043f91906124ac565b610c3d565b604051610451919061292b565b60405180910390f35b610474600480360381019061046f9190612470565b610c6c565b6040516104819190612946565b60405180910390f35b610492610cd6565b60405161049f919061297c565b60405180910390f35b6104b0610d68565b6040516104bd9190612961565b60405180910390f35b6104e060048036038101906104db919061240b565b610d6f565b6040516104ed9190612946565b60405180910390f35b610510600480360381019061050b919061240b565b610e63565b60405161051d9190612946565b60405180910390f35b610540600480360381019061053b9190612447565b610e81565b60405161054d9190612c1e565b60405180910390f35b61055e610ea5565b60405161056b9190612961565b60405180910390f35b61058e60048036038101906105899190612470565b610ec9565b005b6105aa60048036038101906105a59190612380565b610efd565b6040516105b79190612c1e565b60405180910390f35b6105c8610f84565b6040516105d59190612961565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610651575061065082610fe6565b5b9050919050565b60606005805461066790612e47565b80601f016020809104026020016040519081016040528092919081815260200182805461069390612e47565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106fe6106f7611060565b8484611068565b6001905092915050565b6000600454905090565b600061071f848484611233565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076a611060565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190612abe565b60405180910390fd5b610807856107f6611060565b85846108029190612d2b565b611068565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61083c82826114b5565b6108618160016000858152602001908152602001600020610fb690919063ffffffff16565b505050565b60006002905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6108a182826114de565b6108c6816001600085815260200190815260200160002061156190919063ffffffff16565b505050565b600061096d6108d8611060565b8484600360006108e6611060565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109689190612c7b565b611068565b6001905092915050565b6109a87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109a3611060565b610c6c565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90612a7e565b60405180910390fd5b6109ef611591565b565b610a227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a1d611060565b610c6c565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890612a9e565b60405180910390fd5b610a6961086f565b81610a72610708565b610a7c9190612c7b565b1115610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490612b5e565b60405180910390fd5b610ac78282611633565b5050565b610adc610ad6611060565b82611788565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b5283610b4d611060565b610efd565b905081811015610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90612afe565b60405180910390fd5b610bb483610ba3611060565b8484610baf9190612d2b565b611068565b610bbe8383611788565b505050565b610bf47f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bef611060565b610c6c565b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90612ade565b60405180910390fd5b610c3b61195e565b565b6000610c648260016000868152602001908152602001600020611a0190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610ce590612e47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1190612e47565b8015610d5e5780601f10610d3357610100808354040283529160200191610d5e565b820191906000526020600020905b815481529060010190602001808311610d4157829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d7e611060565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290612b9e565b60405180910390fd5b610e58610e46611060565b858584610e539190612d2b565b611068565b600191505092915050565b6000610e77610e70611060565b8484611233565b6001905092915050565b6000610e9e60016000848152602001908152602001600020611a1b565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610ed38282611a30565b610ef8816001600085815260200190815260200160002061156190919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610fb28282611a59565b5050565b6000610fde836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611b39565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611059575061105882611ba9565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90612b7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90612a1e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112269190612c1e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612b3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906129be565b60405180910390fd5b61131e838383611c13565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90612a3e565b60405180910390fd5b81816113b19190612d2b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114439190612c7b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114a79190612c1e565b60405180910390a350505050565b6114be82610813565b6114cf816114ca611060565b611c23565b6114d98383611a59565b505050565b6114e6611060565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90612bbe565b60405180910390fd5b61155d8282611cc0565b5050565b6000611589836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611da1565b905092915050565b611599610adf565b6115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf906129de565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61161c611060565b604051611629919061292b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612bde565b60405180910390fd5b6116af60008383611c13565b80600460008282546116c19190612c7b565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117179190612c7b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161177c9190612c1e565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90612b1e565b60405180910390fd5b61180482600083611c13565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906129fe565b60405180910390fd5b81816118979190612d2b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546118ec9190612d2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119519190612c1e565b60405180910390a3505050565b611966610adf565b156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90612a5e565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119ea611060565b6040516119f7919061292b565b60405180910390a1565b6000611a108360000183611f27565b60001c905092915050565b6000611a2982600001611f78565b9050919050565b611a3982610813565b611a4a81611a45611060565b611c23565b611a548383611cc0565b505050565b611a638282610c6c565b611b3557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611ada611060565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611b458383611f89565b611b9e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611ba3565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c1e838383611fac565b505050565b611c2d8282610c6c565b611cbc57611c528173ffffffffffffffffffffffffffffffffffffffff166014612004565b611c608360001c6020612004565b604051602001611c719291906128f1565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3919061297c565b60405180910390fd5b5050565b611cca8282610c6c565b15611d9d57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d42611060565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611f1b576000600182611dd39190612d2b565b9050600060018660000180549050611deb9190612d2b565b9050818114611ea6576000866000018281548110611e32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611e7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611ee0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611f21565b60009150505b92915050565b6000826000018281548110611f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611fb78383836122fe565b611fbf610adf565b15611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690612bfe565b60405180910390fd5b505050565b6060600060028360026120179190612cd1565b6120219190612c7b565b67ffffffffffffffff811115612060577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120925781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106120f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061217a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121ba9190612cd1565b6121c49190612c7b565b90505b60018111156122b0577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061222c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612269577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806122a990612e1d565b90506121c7565b50600084146122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb9061299e565b60405180910390fd5b8091505092915050565b505050565b600081359050612312816134a8565b92915050565b600081359050612327816134bf565b92915050565b60008135905061233c816134d6565b92915050565b600081359050612351816134ed565b92915050565b60006020828403121561236957600080fd5b600061237784828501612303565b91505092915050565b6000806040838503121561239357600080fd5b60006123a185828601612303565b92505060206123b285828601612303565b9150509250929050565b6000806000606084860312156123d157600080fd5b60006123df86828701612303565b93505060206123f086828701612303565b925050604061240186828701612342565b9150509250925092565b6000806040838503121561241e57600080fd5b600061242c85828601612303565b925050602061243d85828601612342565b9150509250929050565b60006020828403121561245957600080fd5b600061246784828501612318565b91505092915050565b6000806040838503121561248357600080fd5b600061249185828601612318565b92505060206124a285828601612303565b9150509250929050565b600080604083850312156124bf57600080fd5b60006124cd85828601612318565b92505060206124de85828601612342565b9150509250929050565b6000602082840312156124fa57600080fd5b60006125088482850161232d565b91505092915050565b60006020828403121561252357600080fd5b600061253184828501612342565b91505092915050565b61254381612d5f565b82525050565b61255281612d71565b82525050565b61256181612d7d565b82525050565b600061257282612c54565b61257c8185612c5f565b935061258c818560208601612dea565b61259581612ed7565b840191505092915050565b60006125ab82612c54565b6125b58185612c70565b93506125c5818560208601612dea565b80840191505092915050565b60006125de602083612c5f565b91506125e982612ee8565b602082019050919050565b6000612601602383612c5f565b915061260c82612f11565b604082019050919050565b6000612624601483612c5f565b915061262f82612f60565b602082019050919050565b6000612647602283612c5f565b915061265282612f89565b604082019050919050565b600061266a602283612c5f565b915061267582612fd8565b604082019050919050565b600061268d602683612c5f565b915061269882613027565b604082019050919050565b60006126b0601083612c5f565b91506126bb82613076565b602082019050919050565b60006126d3603383612c5f565b91506126de8261309f565b604082019050919050565b60006126f6603083612c5f565b9150612701826130ee565b604082019050919050565b6000612719602883612c5f565b91506127248261313d565b604082019050919050565b600061273c603183612c5f565b91506127478261318c565b604082019050919050565b600061275f602483612c5f565b915061276a826131db565b604082019050919050565b6000612782602183612c5f565b915061278d8261322a565b604082019050919050565b60006127a5602583612c5f565b91506127b082613279565b604082019050919050565b60006127c8601983612c5f565b91506127d3826132c8565b602082019050919050565b60006127eb602483612c5f565b91506127f6826132f1565b604082019050919050565b600061280e601783612c70565b915061281982613340565b601782019050919050565b6000612831602583612c5f565b915061283c82613369565b604082019050919050565b6000612854601183612c70565b915061285f826133b8565b601182019050919050565b6000612877602f83612c5f565b9150612882826133e1565b604082019050919050565b600061289a601f83612c5f565b91506128a582613430565b602082019050919050565b60006128bd602a83612c5f565b91506128c882613459565b604082019050919050565b6128dc81612dd3565b82525050565b6128eb81612ddd565b82525050565b60006128fc82612801565b915061290882856125a0565b915061291382612847565b915061291f82846125a0565b91508190509392505050565b6000602082019050612940600083018461253a565b92915050565b600060208201905061295b6000830184612549565b92915050565b60006020820190506129766000830184612558565b92915050565b600060208201905081810360008301526129968184612567565b905092915050565b600060208201905081810360008301526129b7816125d1565b9050919050565b600060208201905081810360008301526129d7816125f4565b9050919050565b600060208201905081810360008301526129f781612617565b9050919050565b60006020820190508181036000830152612a178161263a565b9050919050565b60006020820190508181036000830152612a378161265d565b9050919050565b60006020820190508181036000830152612a5781612680565b9050919050565b60006020820190508181036000830152612a77816126a3565b9050919050565b60006020820190508181036000830152612a97816126c6565b9050919050565b60006020820190508181036000830152612ab7816126e9565b9050919050565b60006020820190508181036000830152612ad78161270c565b9050919050565b60006020820190508181036000830152612af78161272f565b9050919050565b60006020820190508181036000830152612b1781612752565b9050919050565b60006020820190508181036000830152612b3781612775565b9050919050565b60006020820190508181036000830152612b5781612798565b9050919050565b60006020820190508181036000830152612b77816127bb565b9050919050565b60006020820190508181036000830152612b97816127de565b9050919050565b60006020820190508181036000830152612bb781612824565b9050919050565b60006020820190508181036000830152612bd78161286a565b9050919050565b60006020820190508181036000830152612bf78161288d565b9050919050565b60006020820190508181036000830152612c17816128b0565b9050919050565b6000602082019050612c3360008301846128d3565b92915050565b6000602082019050612c4e60008301846128e2565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612c8682612dd3565b9150612c9183612dd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cc657612cc5612e79565b5b828201905092915050565b6000612cdc82612dd3565b9150612ce783612dd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2057612d1f612e79565b5b828202905092915050565b6000612d3682612dd3565b9150612d4183612dd3565b925082821015612d5457612d53612e79565b5b828203905092915050565b6000612d6a82612db3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e08578082015181840152602081019050612ded565b83811115612e17576000848401525b50505050565b6000612e2882612dd3565b91506000821415612e3c57612e3b612e79565b5b600182039050919050565b60006002820490506001821680612e5f57607f821691505b60208210811415612e7357612e72612ea8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332304d696e7465725061757365723a206d75737420686176652070617560008201527f73657220726f6c6520746f20756e706175736500000000000000000000000000602082015250565b7f45524332304d696e7465725061757365723a206d7573742068617665206d696e60008201527f74657220726f6c6520746f206d696e7400000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332304d696e7465725061757365723a206d75737420686176652070617560008201527f73657220726f6c6520746f207061757365000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6134b181612d5f565b81146134bc57600080fd5b50565b6134c881612d7d565b81146134d357600080fd5b50565b6134df81612d87565b81146134ea57600080fd5b50565b6134f681612dd3565b811461350157600080fd5b5056fea264697066735822122004e55089028b9a5159d6a8776f94ebfeaa388b065a29d648dde5d8617b403b6b64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000174876e8000000000000000000000000000000000000000000000000000000000000000011577261707065642042555920546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045742555900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610556578063d547741f14610574578063dd62ed3e14610590578063e63ab1e9146105c0576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063ca15c87314610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec578063355274ea1461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e991906124e8565b6105de565b6040516101fb9190612946565b60405180910390f35b61020c610658565b604051610219919061297c565b60405180910390f35b61023c6004803603810190610237919061240b565b6106ea565b6040516102499190612946565b60405180910390f35b61025a610708565b6040516102679190612c1e565b60405180910390f35b61028a600480360381019061028591906123bc565b610712565b6040516102979190612946565b60405180910390f35b6102ba60048036038101906102b59190612447565b610813565b6040516102c79190612961565b60405180910390f35b6102ea60048036038101906102e59190612470565b610832565b005b6102f4610866565b6040516103019190612c39565b60405180910390f35b61031261086f565b60405161031f9190612c1e565b60405180910390f35b610342600480360381019061033d9190612470565b610897565b005b61035e6004803603810190610359919061240b565b6108cb565b60405161036b9190612946565b60405180910390f35b61037c610977565b005b6103986004803603810190610393919061240b565b6109f1565b005b6103b460048036038101906103af9190612511565b610acb565b005b6103be610adf565b6040516103cb9190612946565b60405180910390f35b6103ee60048036038101906103e99190612357565b610af6565b6040516103fb9190612c1e565b60405180910390f35b61041e6004803603810190610419919061240b565b610b3f565b005b610428610bc3565b005b610444600480360381019061043f91906124ac565b610c3d565b604051610451919061292b565b60405180910390f35b610474600480360381019061046f9190612470565b610c6c565b6040516104819190612946565b60405180910390f35b610492610cd6565b60405161049f919061297c565b60405180910390f35b6104b0610d68565b6040516104bd9190612961565b60405180910390f35b6104e060048036038101906104db919061240b565b610d6f565b6040516104ed9190612946565b60405180910390f35b610510600480360381019061050b919061240b565b610e63565b60405161051d9190612946565b60405180910390f35b610540600480360381019061053b9190612447565b610e81565b60405161054d9190612c1e565b60405180910390f35b61055e610ea5565b60405161056b9190612961565b60405180910390f35b61058e60048036038101906105899190612470565b610ec9565b005b6105aa60048036038101906105a59190612380565b610efd565b6040516105b79190612c1e565b60405180910390f35b6105c8610f84565b6040516105d59190612961565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610651575061065082610fe6565b5b9050919050565b60606005805461066790612e47565b80601f016020809104026020016040519081016040528092919081815260200182805461069390612e47565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106fe6106f7611060565b8484611068565b6001905092915050565b6000600454905090565b600061071f848484611233565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076a611060565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190612abe565b60405180910390fd5b610807856107f6611060565b85846108029190612d2b565b611068565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61083c82826114b5565b6108618160016000858152602001908152602001600020610fb690919063ffffffff16565b505050565b60006002905090565b60007f000000000000000000000000000000000000000000000000000000174876e800905090565b6108a182826114de565b6108c6816001600085815260200190815260200160002061156190919063ffffffff16565b505050565b600061096d6108d8611060565b8484600360006108e6611060565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109689190612c7b565b611068565b6001905092915050565b6109a87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109a3611060565b610c6c565b6109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90612a7e565b60405180910390fd5b6109ef611591565b565b610a227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a1d611060565b610c6c565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890612a9e565b60405180910390fd5b610a6961086f565b81610a72610708565b610a7c9190612c7b565b1115610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490612b5e565b60405180910390fd5b610ac78282611633565b5050565b610adc610ad6611060565b82611788565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b5283610b4d611060565b610efd565b905081811015610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90612afe565b60405180910390fd5b610bb483610ba3611060565b8484610baf9190612d2b565b611068565b610bbe8383611788565b505050565b610bf47f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bef611060565b610c6c565b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90612ade565b60405180910390fd5b610c3b61195e565b565b6000610c648260016000868152602001908152602001600020611a0190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610ce590612e47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1190612e47565b8015610d5e5780601f10610d3357610100808354040283529160200191610d5e565b820191906000526020600020905b815481529060010190602001808311610d4157829003601f168201915b5050505050905090565b6000801b81565b60008060036000610d7e611060565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290612b9e565b60405180910390fd5b610e58610e46611060565b858584610e539190612d2b565b611068565b600191505092915050565b6000610e77610e70611060565b8484611233565b6001905092915050565b6000610e9e60016000848152602001908152602001600020611a1b565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610ed38282611a30565b610ef8816001600085815260200190815260200160002061156190919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610fb28282611a59565b5050565b6000610fde836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611b39565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611059575061105882611ba9565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90612b7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90612a1e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112269190612c1e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90612b3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906129be565b60405180910390fd5b61131e838383611c13565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90612a3e565b60405180910390fd5b81816113b19190612d2b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114439190612c7b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114a79190612c1e565b60405180910390a350505050565b6114be82610813565b6114cf816114ca611060565b611c23565b6114d98383611a59565b505050565b6114e6611060565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90612bbe565b60405180910390fd5b61155d8282611cc0565b5050565b6000611589836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611da1565b905092915050565b611599610adf565b6115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf906129de565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61161c611060565b604051611629919061292b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612bde565b60405180910390fd5b6116af60008383611c13565b80600460008282546116c19190612c7b565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117179190612c7b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161177c9190612c1e565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90612b1e565b60405180910390fd5b61180482600083611c13565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906129fe565b60405180910390fd5b81816118979190612d2b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546118ec9190612d2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119519190612c1e565b60405180910390a3505050565b611966610adf565b156119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90612a5e565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119ea611060565b6040516119f7919061292b565b60405180910390a1565b6000611a108360000183611f27565b60001c905092915050565b6000611a2982600001611f78565b9050919050565b611a3982610813565b611a4a81611a45611060565b611c23565b611a548383611cc0565b505050565b611a638282610c6c565b611b3557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611ada611060565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611b458383611f89565b611b9e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611ba3565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c1e838383611fac565b505050565b611c2d8282610c6c565b611cbc57611c528173ffffffffffffffffffffffffffffffffffffffff166014612004565b611c608360001c6020612004565b604051602001611c719291906128f1565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb3919061297c565b60405180910390fd5b5050565b611cca8282610c6c565b15611d9d57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d42611060565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611f1b576000600182611dd39190612d2b565b9050600060018660000180549050611deb9190612d2b565b9050818114611ea6576000866000018281548110611e32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611e7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611ee0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611f21565b60009150505b92915050565b6000826000018281548110611f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611fb78383836122fe565b611fbf610adf565b15611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690612bfe565b60405180910390fd5b505050565b6060600060028360026120179190612cd1565b6120219190612c7b565b67ffffffffffffffff811115612060577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120925781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106120f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061217a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121ba9190612cd1565b6121c49190612c7b565b90505b60018111156122b0577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061222c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612269577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806122a990612e1d565b90506121c7565b50600084146122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb9061299e565b60405180910390fd5b8091505092915050565b505050565b600081359050612312816134a8565b92915050565b600081359050612327816134bf565b92915050565b60008135905061233c816134d6565b92915050565b600081359050612351816134ed565b92915050565b60006020828403121561236957600080fd5b600061237784828501612303565b91505092915050565b6000806040838503121561239357600080fd5b60006123a185828601612303565b92505060206123b285828601612303565b9150509250929050565b6000806000606084860312156123d157600080fd5b60006123df86828701612303565b93505060206123f086828701612303565b925050604061240186828701612342565b9150509250925092565b6000806040838503121561241e57600080fd5b600061242c85828601612303565b925050602061243d85828601612342565b9150509250929050565b60006020828403121561245957600080fd5b600061246784828501612318565b91505092915050565b6000806040838503121561248357600080fd5b600061249185828601612318565b92505060206124a285828601612303565b9150509250929050565b600080604083850312156124bf57600080fd5b60006124cd85828601612318565b92505060206124de85828601612342565b9150509250929050565b6000602082840312156124fa57600080fd5b60006125088482850161232d565b91505092915050565b60006020828403121561252357600080fd5b600061253184828501612342565b91505092915050565b61254381612d5f565b82525050565b61255281612d71565b82525050565b61256181612d7d565b82525050565b600061257282612c54565b61257c8185612c5f565b935061258c818560208601612dea565b61259581612ed7565b840191505092915050565b60006125ab82612c54565b6125b58185612c70565b93506125c5818560208601612dea565b80840191505092915050565b60006125de602083612c5f565b91506125e982612ee8565b602082019050919050565b6000612601602383612c5f565b915061260c82612f11565b604082019050919050565b6000612624601483612c5f565b915061262f82612f60565b602082019050919050565b6000612647602283612c5f565b915061265282612f89565b604082019050919050565b600061266a602283612c5f565b915061267582612fd8565b604082019050919050565b600061268d602683612c5f565b915061269882613027565b604082019050919050565b60006126b0601083612c5f565b91506126bb82613076565b602082019050919050565b60006126d3603383612c5f565b91506126de8261309f565b604082019050919050565b60006126f6603083612c5f565b9150612701826130ee565b604082019050919050565b6000612719602883612c5f565b91506127248261313d565b604082019050919050565b600061273c603183612c5f565b91506127478261318c565b604082019050919050565b600061275f602483612c5f565b915061276a826131db565b604082019050919050565b6000612782602183612c5f565b915061278d8261322a565b604082019050919050565b60006127a5602583612c5f565b91506127b082613279565b604082019050919050565b60006127c8601983612c5f565b91506127d3826132c8565b602082019050919050565b60006127eb602483612c5f565b91506127f6826132f1565b604082019050919050565b600061280e601783612c70565b915061281982613340565b601782019050919050565b6000612831602583612c5f565b915061283c82613369565b604082019050919050565b6000612854601183612c70565b915061285f826133b8565b601182019050919050565b6000612877602f83612c5f565b9150612882826133e1565b604082019050919050565b600061289a601f83612c5f565b91506128a582613430565b602082019050919050565b60006128bd602a83612c5f565b91506128c882613459565b604082019050919050565b6128dc81612dd3565b82525050565b6128eb81612ddd565b82525050565b60006128fc82612801565b915061290882856125a0565b915061291382612847565b915061291f82846125a0565b91508190509392505050565b6000602082019050612940600083018461253a565b92915050565b600060208201905061295b6000830184612549565b92915050565b60006020820190506129766000830184612558565b92915050565b600060208201905081810360008301526129968184612567565b905092915050565b600060208201905081810360008301526129b7816125d1565b9050919050565b600060208201905081810360008301526129d7816125f4565b9050919050565b600060208201905081810360008301526129f781612617565b9050919050565b60006020820190508181036000830152612a178161263a565b9050919050565b60006020820190508181036000830152612a378161265d565b9050919050565b60006020820190508181036000830152612a5781612680565b9050919050565b60006020820190508181036000830152612a77816126a3565b9050919050565b60006020820190508181036000830152612a97816126c6565b9050919050565b60006020820190508181036000830152612ab7816126e9565b9050919050565b60006020820190508181036000830152612ad78161270c565b9050919050565b60006020820190508181036000830152612af78161272f565b9050919050565b60006020820190508181036000830152612b1781612752565b9050919050565b60006020820190508181036000830152612b3781612775565b9050919050565b60006020820190508181036000830152612b5781612798565b9050919050565b60006020820190508181036000830152612b77816127bb565b9050919050565b60006020820190508181036000830152612b97816127de565b9050919050565b60006020820190508181036000830152612bb781612824565b9050919050565b60006020820190508181036000830152612bd78161286a565b9050919050565b60006020820190508181036000830152612bf78161288d565b9050919050565b60006020820190508181036000830152612c17816128b0565b9050919050565b6000602082019050612c3360008301846128d3565b92915050565b6000602082019050612c4e60008301846128e2565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612c8682612dd3565b9150612c9183612dd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cc657612cc5612e79565b5b828201905092915050565b6000612cdc82612dd3565b9150612ce783612dd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2057612d1f612e79565b5b828202905092915050565b6000612d3682612dd3565b9150612d4183612dd3565b925082821015612d5457612d53612e79565b5b828203905092915050565b6000612d6a82612db3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e08578082015181840152602081019050612ded565b83811115612e17576000848401525b50505050565b6000612e2882612dd3565b91506000821415612e3c57612e3b612e79565b5b600182039050919050565b60006002820490506001821680612e5f57607f821691505b60208210811415612e7357612e72612ea8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332304d696e7465725061757365723a206d75737420686176652070617560008201527f73657220726f6c6520746f20756e706175736500000000000000000000000000602082015250565b7f45524332304d696e7465725061757365723a206d7573742068617665206d696e60008201527f74657220726f6c6520746f206d696e7400000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332304d696e7465725061757365723a206d75737420686176652070617560008201527f73657220726f6c6520746f207061757365000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6134b181612d5f565b81146134bc57600080fd5b50565b6134c881612d7d565b81146134d357600080fd5b50565b6134df81612d87565b81146134ea57600080fd5b50565b6134f681612dd3565b811461350157600080fd5b5056fea264697066735822122004e55089028b9a5159d6a8776f94ebfeaa388b065a29d648dde5d8617b403b6b64736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000174876e8000000000000000000000000000000000000000000000000000000000000000011577261707065642042555920546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045742555900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Wrapped BUY Token
Arg [1] : symbol (string): WBUY
Arg [2] : cap_ (uint256): 100000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 577261707065642042555920546f6b656e000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5742555900000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
828:2528:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802:224:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3998:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2989:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4631:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5313:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2141:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2783:146:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1801:81:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2648:171:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5440:212:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2998:169:6;;;:::i;:::-;;2144:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;473:89:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1035:84:12;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3153:125:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;868:327:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2628:163:6;;;:::i;:::-;;1611:143:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4339:137:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2057:102:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2359:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6139:371:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3481:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1922:132:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;933:62:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2391:167:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3711:149:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1001:62:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;802:224:1;887:4;925:42;910:57;;;:11;:57;;;;:109;;;;983:36;1007:11;983:23;:36::i;:::-;910:109;903:116;;802:224;;;:::o;1846:98:4:-;1900:13;1932:5;1925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1846:98;:::o;3998:166::-;4081:4;4097:39;4106:12;:10;:12::i;:::-;4120:7;4129:6;4097:8;:39::i;:::-;4153:4;4146:11;;3998:166;;;;:::o;2989:106::-;3050:7;3076:12;;3069:19;;2989:106;:::o;4631:414::-;4737:4;4753:36;4763:6;4771:9;4782:6;4753:9;:36::i;:::-;4800:24;4827:11;:19;4839:6;4827:19;;;;;;;;;;;;;;;:33;4847:12;:10;:12::i;:::-;4827:33;;;;;;;;;;;;;;;;4800:60;;4898:6;4878:16;:26;;4870:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4959:57;4968:6;4976:12;:10;:12::i;:::-;5009:6;4990:16;:25;;;;:::i;:::-;4959:8;:57::i;:::-;5034:4;5027:11;;;4631:414;;;;;:::o;5313:121:0:-;5379:7;5405:6;:12;5412:4;5405:12;;;;;;;;;;;:22;;;5398:29;;5313:121;;;:::o;2141:162:1:-;2225:30;2241:4;2247:7;2225:15;:30::i;:::-;2265:31;2288:7;2265:12;:18;2278:4;2265:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;2141:162;;:::o;2783:146:4:-;2841:5;2865:1;2858:8;;2783:146;:::o;1801:81:6:-;1845:7;1871:4;1864:11;;1801:81;:::o;2648:171:1:-;2735:33;2754:4;2760:7;2735:18;:33::i;:::-;2778:34;2804:7;2778:12;:18;2791:4;2778:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2648:171;;:::o;5440:212:4:-;5528:4;5544:80;5553:12;:10;:12::i;:::-;5567:7;5613:10;5576:11;:25;5588:12;:10;:12::i;:::-;5576:25;;;;;;;;;;;;;;;:34;5602:7;5576:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5544:8;:80::i;:::-;5641:4;5634:11;;5440:212;;;;:::o;2998:169:6:-;3050:34;1039:24;3071:12;:10;:12::i;:::-;3050:7;:34::i;:::-;3042:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;3150:10;:8;:10::i;:::-;2998:169::o;2144:281::-;2219:34;971:24;2240:12;:10;:12::i;:::-;2219:7;:34::i;:::-;2211:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2356:5;:3;:5::i;:::-;2346:6;2324:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;2316:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2401:17;2407:2;2411:6;2401:5;:17::i;:::-;2144:281;;:::o;473:89:5:-;528:27;534:12;:10;:12::i;:::-;548:6;528:5;:27::i;:::-;473:89;:::o;1035:84:12:-;1082:4;1105:7;;;;;;;;;;;1098:14;;1035:84;:::o;3153:125:4:-;3227:7;3253:9;:18;3263:7;3253:18;;;;;;;;;;;;;;;;3246:25;;3153:125;;;:::o;868:327:5:-;944:24;971:32;981:7;990:12;:10;:12::i;:::-;971:9;:32::i;:::-;944:59;;1041:6;1021:16;:26;;1013:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1098:58;1107:7;1116:12;:10;:12::i;:::-;1149:6;1130:16;:25;;;;:::i;:::-;1098:8;:58::i;:::-;1166:22;1172:7;1181:6;1166:5;:22::i;:::-;868:327;;;:::o;2628:163:6:-;2678:34;1039:24;2699:12;:10;:12::i;:::-;2678:7;:34::i;:::-;2670:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;2776:8;:6;:8::i;:::-;2628:163::o;1611:143:1:-;1693:7;1719:28;1741:5;1719:12;:18;1732:4;1719:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1712:35;;1611:143;;;;:::o;4339:137:0:-;4417:4;4440:6;:12;4447:4;4440:12;;;;;;;;;;;:20;;:29;4461:7;4440:29;;;;;;;;;;;;;;;;;;;;;;;;;4433:36;;4339:137;;;;:::o;2057:102:4:-;2113:13;2145:7;2138:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2057:102;:::o;2359:49:0:-;2404:4;2359:49;;;:::o;6139:371:4:-;6232:4;6248:24;6275:11;:25;6287:12;:10;:12::i;:::-;6275:25;;;;;;;;;;;;;;;:34;6301:7;6275:34;;;;;;;;;;;;;;;;6248:61;;6347:15;6327:16;:35;;6319:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:67;6423:12;:10;:12::i;:::-;6437:7;6465:15;6446:16;:34;;;;:::i;:::-;6414:8;:67::i;:::-;6499:4;6492:11;;;6139:371;;;;:::o;3481:172::-;3567:4;3583:42;3593:12;:10;:12::i;:::-;3607:9;3618:6;3583:9;:42::i;:::-;3642:4;3635:11;;3481:172;;;;:::o;1922:132:1:-;1994:7;2020:27;:12;:18;2033:4;2020:18;;;;;;;;;;;:25;:27::i;:::-;2013:34;;1922:132;;;:::o;933:62:6:-;971:24;933:62;:::o;2391:167:1:-;2476:31;2493:4;2499:7;2476:16;:31::i;:::-;2517:34;2543:7;2517:12;:18;2530:4;2517:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2391:167;;:::o;3711:149:4:-;3800:7;3826:11;:18;3838:5;3826:18;;;;;;;;;;;;;;;:27;3845:7;3826:27;;;;;;;;;;;;;;;;3819:34;;3711:149;;;;:::o;1001:62:6:-;1039:24;1001:62;:::o;7480:110:0:-;7558:25;7569:4;7575:7;7558:10;:25::i;:::-;7480:110;;:::o;6202:150:8:-;6272:4;6295:50;6300:3;:10;;6336:5;6320:23;;6312:32;;6295:4;:50::i;:::-;6288:57;;6202:150;;;;:::o;4038:214:0:-;4123:4;4161:32;4146:47;;;:11;:47;;;;:99;;;;4209:36;4233:11;4209:23;:36::i;:::-;4146:99;4139:106;;4038:214;;;:::o;586:96:2:-;639:7;665:10;658:17;;586:96;:::o;9403:340:4:-;9521:1;9504:19;;:5;:19;;;;9496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9601:1;9582:21;;:7;:21;;;;9574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9683:6;9653:11;:18;9665:5;9653:18;;;;;;;;;;;;;;;:27;9672:7;9653:27;;;;;;;;;;;;;;;:36;;;;9720:7;9704:32;;9713:5;9704:32;;;9729:6;9704:32;;;;;;:::i;:::-;;;;;;;;9403:340;;;:::o;6984:592::-;7107:1;7089:20;;:6;:20;;;;7081:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7190:1;7169:23;;:9;:23;;;;7161:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7243:47;7264:6;7272:9;7283:6;7243:20;:47::i;:::-;7301:21;7325:9;:17;7335:6;7325:17;;;;;;;;;;;;;;;;7301:41;;7377:6;7360:13;:23;;7352:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7472:6;7456:13;:22;;;;:::i;:::-;7436:9;:17;7446:6;7436:17;;;;;;;;;;;;;;;:42;;;;7512:6;7488:9;:20;7498:9;7488:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7551:9;7534:35;;7543:6;7534:35;;;7562:6;7534:35;;;;;;:::i;:::-;;;;;;;;6984:592;;;;:::o;5684:145:0:-;5767:18;5780:4;5767:12;:18::i;:::-;3923:30;3934:4;3940:12;:10;:12::i;:::-;3923:10;:30::i;:::-;5797:25:::1;5808:4;5814:7;5797:10;:25::i;:::-;5684:145:::0;;;:::o;6701:214::-;6807:12;:10;:12::i;:::-;6796:23;;:7;:23;;;6788:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;6882:26;6894:4;6900:7;6882:11;:26::i;:::-;6701:214;;:::o;6520:156:8:-;6593:4;6616:53;6624:3;:10;;6660:5;6644:23;;6636:32;;6616:7;:53::i;:::-;6609:60;;6520:156;;;;:::o;2047:117:12:-;1614:8;:6;:8::i;:::-;1606:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2115:5:::1;2105:7;;:15;;;;;;;;;;;;;;;;;;2135:22;2144:12;:10;:12::i;:::-;2135:22;;;;;;:::i;:::-;;;;;;;;2047:117::o:0;7847:330:4:-;7949:1;7930:21;;:7;:21;;;;7922:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;7998:49;8027:1;8031:7;8040:6;7998:20;:49::i;:::-;8074:6;8058:12;;:22;;;;;;;:::i;:::-;;;;;;;;8112:6;8090:9;:18;8100:7;8090:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8154:7;8133:37;;8150:1;8133:37;;;8163:6;8133:37;;;;;;:::i;:::-;;;;;;;;7847:330;;:::o;8497:483::-;8599:1;8580:21;;:7;:21;;;;8572:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8650:49;8671:7;8688:1;8692:6;8650:20;:49::i;:::-;8710:22;8735:9;:18;8745:7;8735:18;;;;;;;;;;;;;;;;8710:43;;8789:6;8771:14;:24;;8763:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8882:6;8865:14;:23;;;;:::i;:::-;8844:9;:18;8854:7;8844:18;;;;;;;;;;;;;;;:44;;;;8914:6;8898:12;;:22;;;;;;;:::i;:::-;;;;;;;;8962:1;8936:37;;8945:7;8936:37;;;8966:6;8936:37;;;;;;:::i;:::-;;;;;;;;8497:483;;;:::o;1800:115:12:-;1349:8;:6;:8::i;:::-;1348:9;1340:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1869:4:::1;1859:7;;:14;;;;;;;;;;;;;;;;;;1888:20;1895:12;:10;:12::i;:::-;1888:20;;;;;;:::i;:::-;;;;;;;;1800:115::o:0;7450:156:8:-;7524:7;7574:22;7578:3;:10;;7590:5;7574:3;:22::i;:::-;7566:31;;7543:56;;7450:156;;;;:::o;7003:115::-;7066:7;7092:19;7100:3;:10;;7092:7;:19::i;:::-;7085:26;;7003:115;;;:::o;6063:147:0:-;6147:18;6160:4;6147:12;:18::i;:::-;3923:30;3934:4;3940:12;:10;:12::i;:::-;3923:10;:30::i;:::-;6177:26:::1;6189:4;6195:7;6177:11;:26::i;:::-;6063:147:::0;;;:::o;7913:224::-;7987:22;7995:4;8001:7;7987;:22::i;:::-;7982:149;;8057:4;8025:6;:12;8032:4;8025:12;;;;;;;;;;;:20;;:29;8046:7;8025:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;8107:12;:10;:12::i;:::-;8080:40;;8098:7;8080:40;;8092:4;8080:40;;;;;;;;;;7982:149;7913:224;;:::o;1632:404:8:-;1695:4;1716:21;1726:3;1731:5;1716:9;:21::i;:::-;1711:319;;1753:3;:11;;1770:5;1753:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1933:3;:11;;:18;;;;1911:3;:12;;:19;1924:5;1911:19;;;;;;;;;;;:40;;;;1972:4;1965:11;;;;1711:319;2014:5;2007:12;;1632:404;;;;;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;3173:181:6:-;3303:44;3330:4;3336:2;3340:6;3303:26;:44::i;:::-;3173:181;;;:::o;4757:375:0:-;4836:22;4844:4;4850:7;4836;:22::i;:::-;4832:294;;4965:41;4993:7;4965:41;;5003:2;4965:19;:41::i;:::-;5061:38;5089:4;5081:13;;5096:2;5061:19;:38::i;:::-;4888:225;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4874:241;;;;;;;;;;;:::i;:::-;;;;;;;;4832:294;4757:375;;:::o;8143:225::-;8217:22;8225:4;8231:7;8217;:22::i;:::-;8213:149;;;8287:5;8255:6;:12;8262:4;8255:12;;;;;;;;;;;:20;;:29;8276:7;8255:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8338:12;:10;:12::i;:::-;8311:40;;8329:7;8311:40;;8323:4;8311:40;;;;;;;;;;8213:149;8143:225;;:::o;2204:1376:8:-;2270:4;2386:18;2407:3;:12;;:19;2420:5;2407:19;;;;;;;;;;;;2386:40;;2455:1;2441:10;:15;2437:1137;;2798:21;2835:1;2822:10;:14;;;;:::i;:::-;2798:38;;2850:17;2891:1;2870:3;:11;;:18;;;;:22;;;;:::i;:::-;2850:42;;2924:13;2911:9;:26;2907:398;;2957:17;2977:3;:11;;2989:9;2977:22;;;;;;;;;;;;;;;;;;;;;;;;2957:42;;3128:9;3099:3;:11;;3111:13;3099:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3237:10;3211:3;:12;;:23;3224:9;3211:23;;;;;;;;;;;:36;;;;2907:398;;3383:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3475:3;:12;;:19;3488:5;3475:19;;;;;;;;;;;3468:26;;;3516:4;3509:11;;;;;;;2437:1137;3558:5;3551:12;;;2204:1376;;;;;:::o;4308:118::-;4375:7;4401:3;:11;;4413:5;4401:18;;;;;;;;;;;;;;;;;;;;;;;;4394:25;;4308:118;;;;:::o;3869:107::-;3925:7;3951:3;:11;;:18;;;;3944:25;;3869:107;;;:::o;3661:127::-;3734:4;3780:1;3757:3;:12;;:19;3770:5;3757:19;;;;;;;;;;;;:24;;3750:31;;3661:127;;;;:::o;572:234:7:-;680:44;707:4;713:2;717:6;680:26;:44::i;:::-;744:8;:6;:8::i;:::-;743:9;735:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;572:234;;;:::o;1531:437:13:-;1606:13;1631:19;1676:1;1667:6;1663:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1653:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631:47;;1688:15;:6;1695:1;1688:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1713;:6;1720:1;1713:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1743:9;1768:1;1759:6;1755:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1743:26;;1738:128;1775:1;1771;:5;1738:128;;;1809:8;1826:3;1818:5;:11;1809:21;;;;;;;;;;;;;;;;;;1797:6;1804:1;1797:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;1854:1;1844:11;;;;;1778:3;;;;:::i;:::-;;;1738:128;;;;1892:1;1883:5;:10;1875:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1954:6;1940:21;;;1531:437;;;;:::o;10330:92:4:-;;;;:::o;7:139:14:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;;;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:377::-;;4732:39;4765:5;4732:39;:::i;:::-;4787:89;4869:6;4864:3;4787:89;:::i;:::-;4780:96;;4885:52;4930:6;4925:3;4918:4;4911:5;4907:16;4885:52;:::i;:::-;4962:6;4957:3;4953:16;4946:23;;4708:267;;;;;:::o;4981:366::-;;5144:67;5208:2;5203:3;5144:67;:::i;:::-;5137:74;;5220:93;5309:3;5220:93;:::i;:::-;5338:2;5333:3;5329:12;5322:19;;5127:220;;;:::o;5353:366::-;;5516:67;5580:2;5575:3;5516:67;:::i;:::-;5509:74;;5592:93;5681:3;5592:93;:::i;:::-;5710:2;5705:3;5701:12;5694:19;;5499:220;;;:::o;5725:366::-;;5888:67;5952:2;5947:3;5888:67;:::i;:::-;5881:74;;5964:93;6053:3;5964:93;:::i;:::-;6082:2;6077:3;6073:12;6066:19;;5871:220;;;:::o;6097:366::-;;6260:67;6324:2;6319:3;6260:67;:::i;:::-;6253:74;;6336:93;6425:3;6336:93;:::i;:::-;6454:2;6449:3;6445:12;6438:19;;6243:220;;;:::o;6469:366::-;;6632:67;6696:2;6691:3;6632:67;:::i;:::-;6625:74;;6708:93;6797:3;6708:93;:::i;:::-;6826:2;6821:3;6817:12;6810:19;;6615:220;;;:::o;6841:366::-;;7004:67;7068:2;7063:3;7004:67;:::i;:::-;6997:74;;7080:93;7169:3;7080:93;:::i;:::-;7198:2;7193:3;7189:12;7182:19;;6987:220;;;:::o;7213:366::-;;7376:67;7440:2;7435:3;7376:67;:::i;:::-;7369:74;;7452:93;7541:3;7452:93;:::i;:::-;7570:2;7565:3;7561:12;7554:19;;7359:220;;;:::o;7585:366::-;;7748:67;7812:2;7807:3;7748:67;:::i;:::-;7741:74;;7824:93;7913:3;7824:93;:::i;:::-;7942:2;7937:3;7933:12;7926:19;;7731:220;;;:::o;7957:366::-;;8120:67;8184:2;8179:3;8120:67;:::i;:::-;8113:74;;8196:93;8285:3;8196:93;:::i;:::-;8314:2;8309:3;8305:12;8298:19;;8103:220;;;:::o;8329:366::-;;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8475:220;;;:::o;8701:366::-;;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8940:93;9029:3;8940:93;:::i;:::-;9058:2;9053:3;9049:12;9042:19;;8847:220;;;:::o;9073:366::-;;9236:67;9300:2;9295:3;9236:67;:::i;:::-;9229:74;;9312:93;9401:3;9312:93;:::i;:::-;9430:2;9425:3;9421:12;9414:19;;9219:220;;;:::o;9445:366::-;;9608:67;9672:2;9667:3;9608:67;:::i;:::-;9601:74;;9684:93;9773:3;9684:93;:::i;:::-;9802:2;9797:3;9793:12;9786:19;;9591:220;;;:::o;9817:366::-;;9980:67;10044:2;10039:3;9980:67;:::i;:::-;9973:74;;10056:93;10145:3;10056:93;:::i;:::-;10174:2;10169:3;10165:12;10158:19;;9963:220;;;:::o;10189:366::-;;10352:67;10416:2;10411:3;10352:67;:::i;:::-;10345:74;;10428:93;10517:3;10428:93;:::i;:::-;10546:2;10541:3;10537:12;10530:19;;10335:220;;;:::o;10561:366::-;;10724:67;10788:2;10783:3;10724:67;:::i;:::-;10717:74;;10800:93;10889:3;10800:93;:::i;:::-;10918:2;10913:3;10909:12;10902:19;;10707:220;;;:::o;10933:402::-;;11114:85;11196:2;11191:3;11114:85;:::i;:::-;11107:92;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;11097:238;;;:::o;11341:366::-;;11504:67;11568:2;11563:3;11504:67;:::i;:::-;11497:74;;11580:93;11669:3;11580:93;:::i;:::-;11698:2;11693:3;11689:12;11682:19;;11487:220;;;:::o;11713:402::-;;11894:85;11976:2;11971:3;11894:85;:::i;:::-;11887:92;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11877:238;;;:::o;12121:366::-;;12284:67;12348:2;12343:3;12284:67;:::i;:::-;12277:74;;12360:93;12449:3;12360:93;:::i;:::-;12478:2;12473:3;12469:12;12462:19;;12267:220;;;:::o;12493:366::-;;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12639:220;;;:::o;12865:366::-;;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;13011:220;;;:::o;13237:118::-;13324:24;13342:5;13324:24;:::i;:::-;13319:3;13312:37;13302:53;;:::o;13361:112::-;13444:22;13460:5;13444:22;:::i;:::-;13439:3;13432:35;13422:51;;:::o;13479:967::-;;13883:148;14027:3;13883:148;:::i;:::-;13876:155;;14048:95;14139:3;14130:6;14048:95;:::i;:::-;14041:102;;14160:148;14304:3;14160:148;:::i;:::-;14153:155;;14325:95;14416:3;14407:6;14325:95;:::i;:::-;14318:102;;14437:3;14430:10;;13865:581;;;;;:::o;14452:222::-;;14583:2;14572:9;14568:18;14560:26;;14596:71;14664:1;14653:9;14649:17;14640:6;14596:71;:::i;:::-;14550:124;;;;:::o;14680:210::-;;14805:2;14794:9;14790:18;14782:26;;14818:65;14880:1;14869:9;14865:17;14856:6;14818:65;:::i;:::-;14772:118;;;;:::o;14896:222::-;;15027:2;15016:9;15012:18;15004:26;;15040:71;15108:1;15097:9;15093:17;15084:6;15040:71;:::i;:::-;14994:124;;;;:::o;15124:313::-;;15275:2;15264:9;15260:18;15252:26;;15324:9;15318:4;15314:20;15310:1;15299:9;15295:17;15288:47;15352:78;15425:4;15416:6;15352:78;:::i;:::-;15344:86;;15242:195;;;;:::o;15443:419::-;;15647:2;15636:9;15632:18;15624:26;;15696:9;15690:4;15686:20;15682:1;15671:9;15667:17;15660:47;15724:131;15850:4;15724:131;:::i;:::-;15716:139;;15614:248;;;:::o;15868:419::-;;16072:2;16061:9;16057:18;16049:26;;16121:9;16115:4;16111:20;16107:1;16096:9;16092:17;16085:47;16149:131;16275:4;16149:131;:::i;:::-;16141:139;;16039:248;;;:::o;16293:419::-;;16497:2;16486:9;16482:18;16474:26;;16546:9;16540:4;16536:20;16532:1;16521:9;16517:17;16510:47;16574:131;16700:4;16574:131;:::i;:::-;16566:139;;16464:248;;;:::o;16718:419::-;;16922:2;16911:9;16907:18;16899:26;;16971:9;16965:4;16961:20;16957:1;16946:9;16942:17;16935:47;16999:131;17125:4;16999:131;:::i;:::-;16991:139;;16889:248;;;:::o;17143:419::-;;17347:2;17336:9;17332:18;17324:26;;17396:9;17390:4;17386:20;17382:1;17371:9;17367:17;17360:47;17424:131;17550:4;17424:131;:::i;:::-;17416:139;;17314:248;;;:::o;17568:419::-;;17772:2;17761:9;17757:18;17749:26;;17821:9;17815:4;17811:20;17807:1;17796:9;17792:17;17785:47;17849:131;17975:4;17849:131;:::i;:::-;17841:139;;17739:248;;;:::o;17993:419::-;;18197:2;18186:9;18182:18;18174:26;;18246:9;18240:4;18236:20;18232:1;18221:9;18217:17;18210:47;18274:131;18400:4;18274:131;:::i;:::-;18266:139;;18164:248;;;:::o;18418:419::-;;18622:2;18611:9;18607:18;18599:26;;18671:9;18665:4;18661:20;18657:1;18646:9;18642:17;18635:47;18699:131;18825:4;18699:131;:::i;:::-;18691:139;;18589:248;;;:::o;18843:419::-;;19047:2;19036:9;19032:18;19024:26;;19096:9;19090:4;19086:20;19082:1;19071:9;19067:17;19060:47;19124:131;19250:4;19124:131;:::i;:::-;19116:139;;19014:248;;;:::o;19268:419::-;;19472:2;19461:9;19457:18;19449:26;;19521:9;19515:4;19511:20;19507:1;19496:9;19492:17;19485:47;19549:131;19675:4;19549:131;:::i;:::-;19541:139;;19439:248;;;:::o;19693:419::-;;19897:2;19886:9;19882:18;19874:26;;19946:9;19940:4;19936:20;19932:1;19921:9;19917:17;19910:47;19974:131;20100:4;19974:131;:::i;:::-;19966:139;;19864:248;;;:::o;20118:419::-;;20322:2;20311:9;20307:18;20299:26;;20371:9;20365:4;20361:20;20357:1;20346:9;20342:17;20335:47;20399:131;20525:4;20399:131;:::i;:::-;20391:139;;20289:248;;;:::o;20543:419::-;;20747:2;20736:9;20732:18;20724:26;;20796:9;20790:4;20786:20;20782:1;20771:9;20767:17;20760:47;20824:131;20950:4;20824:131;:::i;:::-;20816:139;;20714:248;;;:::o;20968:419::-;;21172:2;21161:9;21157:18;21149:26;;21221:9;21215:4;21211:20;21207:1;21196:9;21192:17;21185:47;21249:131;21375:4;21249:131;:::i;:::-;21241:139;;21139:248;;;:::o;21393:419::-;;21597:2;21586:9;21582:18;21574:26;;21646:9;21640:4;21636:20;21632:1;21621:9;21617:17;21610:47;21674:131;21800:4;21674:131;:::i;:::-;21666:139;;21564:248;;;:::o;21818:419::-;;22022:2;22011:9;22007:18;21999:26;;22071:9;22065:4;22061:20;22057:1;22046:9;22042:17;22035:47;22099:131;22225:4;22099:131;:::i;:::-;22091:139;;21989:248;;;:::o;22243:419::-;;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22414:248;;;:::o;22668:419::-;;22872:2;22861:9;22857:18;22849:26;;22921:9;22915:4;22911:20;22907:1;22896:9;22892:17;22885:47;22949:131;23075:4;22949:131;:::i;:::-;22941:139;;22839:248;;;:::o;23093:419::-;;23297:2;23286:9;23282:18;23274:26;;23346:9;23340:4;23336:20;23332:1;23321:9;23317:17;23310:47;23374:131;23500:4;23374:131;:::i;:::-;23366:139;;23264:248;;;:::o;23518:419::-;;23722:2;23711:9;23707:18;23699:26;;23771:9;23765:4;23761:20;23757:1;23746:9;23742:17;23735:47;23799:131;23925:4;23799:131;:::i;:::-;23791:139;;23689:248;;;:::o;23943:222::-;;24074:2;24063:9;24059:18;24051:26;;24087:71;24155:1;24144:9;24140:17;24131:6;24087:71;:::i;:::-;24041:124;;;;:::o;24171:214::-;;24298:2;24287:9;24283:18;24275:26;;24311:67;24375:1;24364:9;24360:17;24351:6;24311:67;:::i;:::-;24265:120;;;;:::o;24391:99::-;;24477:5;24471:12;24461:22;;24450:40;;;:::o;24496:169::-;;24614:6;24609:3;24602:19;24654:4;24649:3;24645:14;24630:29;;24592:73;;;;:::o;24671:148::-;;24810:3;24795:18;;24785:34;;;;:::o;24825:305::-;;24884:20;24902:1;24884:20;:::i;:::-;24879:25;;24918:20;24936:1;24918:20;:::i;:::-;24913:25;;25072:1;25004:66;25000:74;24997:1;24994:81;24991:2;;;25078:18;;:::i;:::-;24991:2;25122:1;25119;25115:9;25108:16;;24869:261;;;;:::o;25136:348::-;;25199:20;25217:1;25199:20;:::i;:::-;25194:25;;25233:20;25251:1;25233:20;:::i;:::-;25228:25;;25421:1;25353:66;25349:74;25346:1;25343:81;25338:1;25331:9;25324:17;25320:105;25317:2;;;25428:18;;:::i;:::-;25317:2;25476:1;25473;25469:9;25458:20;;25184:300;;;;:::o;25490:191::-;;25550:20;25568:1;25550:20;:::i;:::-;25545:25;;25584:20;25602:1;25584:20;:::i;:::-;25579:25;;25623:1;25620;25617:8;25614:2;;;25628:18;;:::i;:::-;25614:2;25673:1;25670;25666:9;25658:17;;25535:146;;;;:::o;25687:96::-;;25753:24;25771:5;25753:24;:::i;:::-;25742:35;;25732:51;;;:::o;25789:90::-;;25866:5;25859:13;25852:21;25841:32;;25831:48;;;:::o;25885:77::-;;25951:5;25940:16;;25930:32;;;:::o;25968:149::-;;26044:66;26037:5;26033:78;26022:89;;26012:105;;;:::o;26123:126::-;;26200:42;26193:5;26189:54;26178:65;;26168:81;;;:::o;26255:77::-;;26321:5;26310:16;;26300:32;;;:::o;26338:86::-;;26413:4;26406:5;26402:16;26391:27;;26381:43;;;:::o;26430:307::-;26498:1;26508:113;26522:6;26519:1;26516:13;26508:113;;;26607:1;26602:3;26598:11;26592:18;26588:1;26583:3;26579:11;26572:39;26544:2;26541:1;26537:10;26532:15;;26508:113;;;26639:6;26636:1;26633:13;26630:2;;;26719:1;26710:6;26705:3;26701:16;26694:27;26630:2;26479:258;;;;:::o;26743:171::-;;26805:24;26823:5;26805:24;:::i;:::-;26796:33;;26851:4;26844:5;26841:15;26838:2;;;26859:18;;:::i;:::-;26838:2;26906:1;26899:5;26895:13;26888:20;;26786:128;;;:::o;26920:320::-;;27001:1;26995:4;26991:12;26981:22;;27048:1;27042:4;27038:12;27069:18;27059:2;;27125:4;27117:6;27113:17;27103:27;;27059:2;27187;27179:6;27176:14;27156:18;27153:38;27150:2;;;27206:18;;:::i;:::-;27150:2;26971:269;;;;:::o;27246:180::-;27294:77;27291:1;27284:88;27391:4;27388:1;27381:15;27415:4;27412:1;27405:15;27432:180;27480:77;27477:1;27470:88;27577:4;27574:1;27567:15;27601:4;27598:1;27591:15;27618:102;;27710:2;27706:7;27701:2;27694:5;27690:14;27686:28;27676:38;;27666:54;;;:::o;27726:182::-;27866:34;27862:1;27854:6;27850:14;27843:58;27832:76;:::o;27914:222::-;28054:34;28050:1;28042:6;28038:14;28031:58;28123:5;28118:2;28110:6;28106:15;28099:30;28020:116;:::o;28142:170::-;28282:22;28278:1;28270:6;28266:14;28259:46;28248:64;:::o;28318:221::-;28458:34;28454:1;28446:6;28442:14;28435:58;28527:4;28522:2;28514:6;28510:15;28503:29;28424:115;:::o;28545:221::-;28685:34;28681:1;28673:6;28669:14;28662:58;28754:4;28749:2;28741:6;28737:15;28730:29;28651:115;:::o;28772:225::-;28912:34;28908:1;28900:6;28896:14;28889:58;28981:8;28976:2;28968:6;28964:15;28957:33;28878:119;:::o;29003:166::-;29143:18;29139:1;29131:6;29127:14;29120:42;29109:60;:::o;29175:238::-;29315:34;29311:1;29303:6;29299:14;29292:58;29384:21;29379:2;29371:6;29367:15;29360:46;29281:132;:::o;29419:235::-;29559:34;29555:1;29547:6;29543:14;29536:58;29628:18;29623:2;29615:6;29611:15;29604:43;29525:129;:::o;29660:227::-;29800:34;29796:1;29788:6;29784:14;29777:58;29869:10;29864:2;29856:6;29852:15;29845:35;29766:121;:::o;29893:236::-;30033:34;30029:1;30021:6;30017:14;30010:58;30102:19;30097:2;30089:6;30085:15;30078:44;29999:130;:::o;30135:223::-;30275:34;30271:1;30263:6;30259:14;30252:58;30344:6;30339:2;30331:6;30327:15;30320:31;30241:117;:::o;30364:220::-;30504:34;30500:1;30492:6;30488:14;30481:58;30573:3;30568:2;30560:6;30556:15;30549:28;30470:114;:::o;30590:224::-;30730:34;30726:1;30718:6;30714:14;30707:58;30799:7;30794:2;30786:6;30782:15;30775:32;30696:118;:::o;30820:175::-;30960:27;30956:1;30948:6;30944:14;30937:51;30926:69;:::o;31001:223::-;31141:34;31137:1;31129:6;31125:14;31118:58;31210:6;31205:2;31197:6;31193:15;31186:31;31107:117;:::o;31230:173::-;31370:25;31366:1;31358:6;31354:14;31347:49;31336:67;:::o;31409:224::-;31549:34;31545:1;31537:6;31533:14;31526:58;31618:7;31613:2;31605:6;31601:15;31594:32;31515:118;:::o;31639:167::-;31779:19;31775:1;31767:6;31763:14;31756:43;31745:61;:::o;31812:234::-;31952:34;31948:1;31940:6;31936:14;31929:58;32021:17;32016:2;32008:6;32004:15;31997:42;31918:128;:::o;32052:181::-;32192:33;32188:1;32180:6;32176:14;32169:57;32158:75;:::o;32239:229::-;32379:34;32375:1;32367:6;32363:14;32356:58;32448:12;32443:2;32435:6;32431:15;32424:37;32345:123;:::o;32474:122::-;32547:24;32565:5;32547:24;:::i;:::-;32540:5;32537:35;32527:2;;32586:1;32583;32576:12;32527:2;32517:79;:::o;32602:122::-;32675:24;32693:5;32675:24;:::i;:::-;32668:5;32665:35;32655:2;;32714:1;32711;32704:12;32655:2;32645:79;:::o;32730:120::-;32802:23;32819:5;32802:23;:::i;:::-;32795:5;32792:34;32782:2;;32840:1;32837;32830:12;32782:2;32772:78;:::o;32856:122::-;32929:24;32947:5;32929:24;:::i;:::-;32922:5;32919:35;32909:2;;32968:1;32965;32958:12;32909:2;32899:79;:::o
Swarm Source
ipfs://04e55089028b9a5159d6a8776f94ebfeaa388b065a29d648dde5d8617b403b6b
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.