ERC-721
Overview
Max Total Supply
3,284 GETPUNKD
Holders
271
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
27 GETPUNKDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PunkdApes
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-10 */ // Sources flattened with hardhat v2.9.7 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721b/contracts/[email protected] pragma solidity ^0.8.0; error InvalidCall(); error BalanceQueryZeroAddress(); error NonExistentToken(); error ApprovalToCurrentOwner(); error ApprovalOwnerIsOperator(); error NotERC721Receiver(); error ERC721ReceiverNotReceived(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] * Non-Fungible Token Standard, including the Metadata extension and * token Auto-ID generation. * * You must provide `name()` `symbol()` and `tokenURI(uint256 tokenId)` * to conform with IERC721Metadata */ abstract contract ERC721B is Context, ERC165, IERC721 { // ============ Storage ============ // The last token id minted uint256 private _lastTokenId; // Mapping from token ID to owner address mapping(uint256 => address) internal _owners; // Mapping owner address to token count mapping(address => uint256) internal _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============ Read Methods ============ /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns(uint256) { if (owner == address(0)) revert BalanceQueryZeroAddress(); return _balances[owner]; } /** * @dev Shows the overall amount of tokens generated in the contract */ function totalSupply() public view virtual returns(uint256) { return _lastTokenId; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns(address) { unchecked { //this is the situation when _owners normalized uint256 id = tokenId; if (_owners[id] != address(0)) { return _owners[id]; } //this is the situation when _owners is not normalized if (id > 0 && id <= _lastTokenId) { //there will never be a case where token 1 is address(0) while(true) { id--; if (id == 0) { break; } else if (_owners[id] != address(0)) { return _owners[id]; } } } } revert NonExistentToken(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns(bool) { return interfaceId == type(IERC721).interfaceId || super.supportsInterface(interfaceId); } // ============ Approval Methods ============ /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721B.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); address sender = _msgSender(); if (sender != owner && !isApprovedForAll(owner, sender)) revert ApprovalToCurrentOwner(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns(address) { if (!_exists(tokenId)) revert NonExistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId, address owner) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev transfers token considering approvals */ function _approveTransfer( address spender, address from, address to, uint256 tokenId ) internal virtual { if (!_isApprovedOrOwner(spender, tokenId, from)) revert InvalidCall(); _transfer(from, to, tokenId); } /** * @dev Safely transfers token considering approvals */ function _approveSafeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _approveTransfer(_msgSender(), from, to, tokenId); //see: @openzep/utils/Address.sol if (to.code.length > 0 && !_checkOnERC721Received(from, to, tokenId, _data) ) revert ERC721ReceiverNotReceived(); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner( address spender, uint256 tokenId, address owner ) internal view virtual returns(bool) { return spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { if (owner == operator) revert ApprovalOwnerIsOperator(); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } // ============ Mint Methods ============ /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} * whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint( address to, uint256 amount, bytes memory _data, bool safeCheck ) private { if(amount == 0 || to == address(0)) revert InvalidCall(); uint256 startTokenId = _lastTokenId + 1; _beforeTokenTransfers(address(0), to, startTokenId, amount); unchecked { _lastTokenId += amount; _balances[to] += amount; _owners[startTokenId] = to; _afterTokenTransfers(address(0), to, startTokenId, amount); uint256 updatedIndex = startTokenId; uint256 endIndex = updatedIndex + amount; //if do safe check and, //check if contract one time (instead of loop) //see: @openzep/utils/Address.sol if (safeCheck && to.code.length > 0) { //loop emit transfer and received check do { emit Transfer(address(0), to, updatedIndex); if (!_checkOnERC721Received(address(0), to, updatedIndex++, _data)) revert ERC721ReceiverNotReceived(); } while (updatedIndex != endIndex); return; } do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != endIndex); } } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a * safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 amount) internal virtual { _safeMint(to, amount, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], * with an additional `data` parameter which is forwarded in * {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 amount, bytes memory _data ) internal virtual { _mint(to, amount, _data, true); } // ============ Transfer Methods ============ /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _approveTransfer(_msgSender(), from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _approveSafeTransfer(from, to, tokenId, _data); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} * on a target address. The call is not executed if the target address * is not a contract. */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert NotERC721Receiver(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via * {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId > 0 && tokenId <= _lastTokenId; } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking * first that contract recipients are aware of the ERC721 protocol to * prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is * sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can * be used to e.g. * implement alternative mechanisms to perform token transfer, such as * signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a * safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); //see: @openzep/utils/Address.sol if (to.code.length > 0 && !_checkOnERC721Received(from, to, tokenId, _data) ) revert ERC721ReceiverNotReceived(); } /** * @dev Transfers `tokenId` from `from` to `to`. As opposed to * {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) private { //if transfer to null or not the owner if (to == address(0) || from != ERC721B.ownerOf(tokenId)) revert InvalidCall(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); unchecked { //this is the situation when _owners are normalized _balances[to] += 1; _balances[from] -= 1; _owners[tokenId] = to; //this is the situation when _owners are not normalized uint256 nextTokenId = tokenId + 1; if (nextTokenId <= _lastTokenId && _owners[nextTokenId] == address(0)) { _owners[nextTokenId] = from; } } _afterTokenTransfers(from, to, tokenId, 1); emit Transfer(from, to, tokenId); } // ============ TODO Methods ============ /** * @dev Hook that is called before a set of serially-ordered token ids * are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * amount - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` * will be transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 amount ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids * have been transferred. This includes minting. * * startTokenId - the first token id to be transferred * amount - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 amount ) internal virtual {} } // File erc721b/contracts/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721B Burnable Token * @dev ERC721B Token that can be irreversibly burned (destroyed). */ abstract contract ERC721BBurnable is Context, ERC721B { // ============ Storage ============ //mapping of token id to burned? mapping(uint256 => bool) private _burned; //count of how many burned uint256 private _totalBurned; // ============ Read Methods ============ /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns(address) { if (_burned[tokenId]) revert NonExistentToken(); return super.ownerOf(tokenId); } /** * @dev Shows the overall amount of tokens generated in the contract */ function totalSupply() public virtual view override returns(uint256) { return super.totalSupply() - _totalBurned; } // ============ Write Methods ============ /** * @dev Burns `tokenId`. See {ERC721B-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { address owner = ERC721B.ownerOf(tokenId); if (!_isApprovedOrOwner(_msgSender(), tokenId, owner)) revert InvalidCall(); _beforeTokenTransfers(owner, address(0), tokenId, 1); // Clear approvals _approve(address(0), tokenId, owner); unchecked { //this is the situation when _owners are normalized _balances[owner] -= 1; _burned[tokenId] = true; _owners[tokenId] = address(0); _totalBurned++; //this is the situation when _owners are not normalized uint256 nextTokenId = tokenId + 1; if (nextTokenId <= totalSupply() && _owners[nextTokenId] == address(0)) { _owners[nextTokenId] = owner; } } _afterTokenTransfers(owner, address(0), tokenId, 1); emit Transfer(owner, address(0), tokenId); } // ============ Internal Methods ============ /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via * {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual override returns(bool) { return !_burned[tokenId] && super._exists(tokenId); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/lib/PaymentSplitter/PaymentSplitterConnector.sol pragma solidity ^0.8.4; error NotSplitterAdmin(); error NotDefaultAdmin(); error IncorrectAdmin(); contract PaymentSplitterConnector is AccessControl { address public PAYMENT_SPLITTER_ADDRESS; address public PAYMENT_DEFAULT_ADMIN; address public SPLITTER_ADMIN; bytes32 private constant SPLITTER_ADMIN_ROLE = keccak256("SPLITTER_ADMIN"); constructor(address admin, address splitterAddress) { _setupRole(DEFAULT_ADMIN_ROLE, admin); _setupRole(SPLITTER_ADMIN_ROLE, admin); SPLITTER_ADMIN = admin; PAYMENT_DEFAULT_ADMIN = admin; PAYMENT_SPLITTER_ADDRESS = splitterAddress; } modifier onlySplitterAdmin { if (!hasRole(SPLITTER_ADMIN_ROLE, msg.sender)) { revert NotSplitterAdmin(); } _; } modifier onlyDefaultAdmin { if (!hasRole(DEFAULT_ADMIN_ROLE, msg.sender)) { revert NotDefaultAdmin(); } _; } function setSplitterAddress(address _splitterAddress) public onlySplitterAdmin { PAYMENT_SPLITTER_ADDRESS = _splitterAddress; } function withdraw() public onlySplitterAdmin{ address payable recipient = payable(PAYMENT_SPLITTER_ADDRESS); uint256 balance = address(this).balance; Address.sendValue(recipient, balance); } function transferSplitterAdminRole(address admin) public onlyDefaultAdmin{ if (SPLITTER_ADMIN == admin) { revert IncorrectAdmin(); } grantRole(SPLITTER_ADMIN_ROLE, admin); revokeRole(SPLITTER_ADMIN_ROLE, SPLITTER_ADMIN); SPLITTER_ADMIN = admin; } function transferDefaultAdminRole(address admin) public onlyDefaultAdmin{ if (PAYMENT_DEFAULT_ADMIN == admin) { revert IncorrectAdmin(); } grantRole(DEFAULT_ADMIN_ROLE, admin); revokeRole(DEFAULT_ADMIN_ROLE, PAYMENT_DEFAULT_ADMIN); PAYMENT_DEFAULT_ADMIN = admin; } } // File contracts/PunkdApes.sol // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.4; error ArrayLengthsNotEqual(); error BatchLimitExceeded(); error InvalidToken(); error PaymentNotEnough(); error RateNotSet(); error TotalSupplyLimitExceeded(); error WalletLimitExceeded(); contract PunkdApes is ERC721BBurnable, Ownable, PaymentSplitterConnector { using Strings for uint256; using SafeMath for uint256; string public name; string public symbol; uint public constant TOTAL_SUPPLY_LIMIT = 10000; uint public constant WALLET_LIMIT = 69; uint public constant BATCH_LIMIT = 20; uint public purchaseRate = 0.0069 ether; string public baseURI = ""; string public baseExtension = ".json"; mapping(address => uint) public wallet; constructor(address admin, address splitterAddress) PaymentSplitterConnector(admin, splitterAddress) { name = "PUNKD APES"; symbol = "GETPUNKD"; } function setPurchaseRate(uint256 _rate) public onlyOwner { purchaseRate = _rate; } function mint(uint256 _quantity) public payable { uint walletQty = wallet[msg.sender] + _quantity; uint256 totalSupply = totalSupply() + _quantity; uint256 requiredPaymentAmout = purchaseRate * _quantity; uint256 payment = msg.value; if (purchaseRate == 0) revert RateNotSet(); if (payment < requiredPaymentAmout) revert PaymentNotEnough(); if (totalSupply > TOTAL_SUPPLY_LIMIT) revert TotalSupplyLimitExceeded(); if (_quantity > WALLET_LIMIT || walletQty > WALLET_LIMIT) revert WalletLimitExceeded(); _safeMint(msg.sender, _quantity, ""); wallet[msg.sender] = walletQty; } function getWallet(address a) public view returns(uint) { return wallet[a]; } function batchAirdrop(address[] calldata _recipients, uint[] calldata _amounts) public onlyOwner { if (_recipients.length > BATCH_LIMIT) revert BatchLimitExceeded(); if (_recipients.length != _amounts.length) revert ArrayLengthsNotEqual(); uint256 totalSupply = totalSupply(); for (uint i = 0; i < _recipients.length; ++i) { address recipient = _recipients[i]; uint256 amount = _amounts[i]; totalSupply += amount; if (totalSupply > TOTAL_SUPPLY_LIMIT) revert TotalSupplyLimitExceeded(); _safeMint(recipient, amount, ""); } } // payment splitter connector override method function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721B, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } // token URI function tokenURI(uint _tokenId) public view returns (string memory) { if (_tokenId < 0) revert InvalidToken(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString(), baseExtension)) : baseURI; } function setBaseURI(string calldata _baseURI) public onlyOwner{ baseURI = _baseURI; } function setBaseExtension(string calldata _newBaseExtension) public onlyOwner{ baseExtension = _newBaseExtension; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"splitterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalOwnerIsOperator","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ArrayLengthsNotEqual","type":"error"},{"inputs":[],"name":"BalanceQueryZeroAddress","type":"error"},{"inputs":[],"name":"BatchLimitExceeded","type":"error"},{"inputs":[],"name":"ERC721ReceiverNotReceived","type":"error"},{"inputs":[],"name":"IncorrectAdmin","type":"error"},{"inputs":[],"name":"InvalidCall","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"NonExistentToken","type":"error"},{"inputs":[],"name":"NotDefaultAdmin","type":"error"},{"inputs":[],"name":"NotERC721Receiver","type":"error"},{"inputs":[],"name":"NotSplitterAdmin","type":"error"},{"inputs":[],"name":"PaymentNotEnough","type":"error"},{"inputs":[],"name":"RateNotSet","type":"error"},{"inputs":[],"name":"TotalSupplyLimitExceeded","type":"error"},{"inputs":[],"name":"WalletLimitExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BATCH_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_DEFAULT_ADMIN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_SPLITTER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPLITTER_ADMIN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getWallet","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setPurchaseRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_splitterAddress","type":"address"}],"name":"setSplitterAddress","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","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":"admin","type":"address"}],"name":"transferDefaultAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"transferSplitterAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526618838370f34000600e5560405180602001604052806000815250600f908051906020019062000036929190620004cb565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506010908051906020019062000084929190620004cb565b503480156200009257600080fd5b5060405162004f8238038062004f828339818101604052810190620000b8919062000592565b8181620000da620000ce6200028a60201b60201c565b6200029260201b60201c565b620000ef6000801b836200035860201b60201c565b620001217f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458836200035860201b60201c565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506040518060400160405280600a81526020017f50554e4b44204150455300000000000000000000000000000000000000000000815250600c908051906020019062000233929190620004cb565b506040518060400160405280600881526020017f47455450554e4b44000000000000000000000000000000000000000000000000815250600d908051906020019062000281929190620004cb565b50505062000691565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200036a82826200036e60201b60201c565b5050565b6200038082826200046060201b60201c565b6200045c5760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004016200028a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620004d9906200060d565b90600052602060002090601f016020900481019282620004fd576000855562000549565b82601f106200051857805160ff191683800117855562000549565b8280016001018555821562000549579182015b82811115620005485782518255916020019190600101906200052b565b5b5090506200055891906200055c565b5090565b5b80821115620005775760008160009055506001016200055d565b5090565b6000815190506200058c8162000677565b92915050565b60008060408385031215620005ac57620005ab62000672565b5b6000620005bc858286016200057b565b9250506020620005cf858286016200057b565b9150509250929050565b6000620005e682620005ed565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200062657607f821691505b602082108114156200063d576200063c62000643565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200068281620005d9565b81146200068e57600080fd5b50565b6148e180620006a16000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b816d087116100b6578063d2d871e01161007a578063d2d871e01461091d578063d547741f14610948578063da3ef23f14610971578063e985e9c51461099a578063f2344208146109d7578063f2fde38b14610a0257610267565b8063b816d08714610838578063b88d4fde14610861578063c66828621461088a578063c87b56dd146108b5578063cc3bde3d146108f257610267565b8063a0712d6811610108578063a0712d6814610737578063a217fddf14610753578063a22cb4651461077e578063a56cc439146107a7578063b69f6df9146107e4578063b7f70ac21461080f57610267565b8063715018a6146106625780638da5cb5b1461067957806391d14854146106a45780639559c0bd146106e157806395d89b411461070c57610267565b8063351ed951116101dd57806342966c68116101a157806342966c681461054057806348c26e221461056957806355f804b3146105945780636352211e146105bd5780636c0360eb146105fa57806370a082311461062557610267565b8063351ed9511461048357806336568abe146104ae5780633ccfd60b146104d757806340dbdd21146104ee57806342842e0e1461051757610267565b80631526e0871161022f5780631526e0871461037757806318160ddd146103a05780631d37c8a6146103cb57806323b872dd146103f4578063248a9ca31461041d5780632f2ff15d1461045a57610267565b806301ffc9a71461026c57806304d0a647146102a957806306fdde03146102e6578063081812fc14610311578063095ea7b31461034e575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c45565b610a2b565b6040516102a09190614099565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613994565b610a3d565b6040516102dd91906141b1565b60405180910390f35b3480156102f257600080fd5b506102fb610a86565b60405161030891906140cf565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613cec565b610b14565b6040516103459190614032565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613b17565b610b90565b005b34801561038357600080fd5b5061039e60048036038101906103999190613994565b610c9a565b005b3480156103ac57600080fd5b506103b5610de5565b6040516103c291906141b1565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613cec565b610e01565b005b34801561040057600080fd5b5061041b60048036038101906104169190613a01565b610e87565b005b34801561042957600080fd5b50610444600480360381019061043f9190613bd8565b610e9f565b60405161045191906140b4565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613c05565b610ebf565b005b34801561048f57600080fd5b50610498610ee0565b6040516104a591906141b1565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613c05565b610ee5565b005b3480156104e357600080fd5b506104ec610f68565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613994565b611002565b005b34801561052357600080fd5b5061053e60048036038101906105399190613a01565b6110a6565b005b34801561054c57600080fd5b5061056760048036038101906105629190613cec565b6110c6565b005b34801561057557600080fd5b5061057e611359565b60405161058b91906141b1565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613c9f565b61135f565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613cec565b6113f1565b6040516105f19190614032565b60405180910390f35b34801561060657600080fd5b5061060f61145b565b60405161061c91906140cf565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613994565b6114e9565b60405161065991906141b1565b60405180910390f35b34801561066e57600080fd5b50610677611598565b005b34801561068557600080fd5b5061068e611620565b60405161069b9190614032565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613c05565b61164a565b6040516106d89190614099565b60405180910390f35b3480156106ed57600080fd5b506106f66116b5565b60405161070391906141b1565b60405180910390f35b34801561071857600080fd5b506107216116ba565b60405161072e91906140cf565b60405180910390f35b610751600480360381019061074c9190613cec565b611748565b005b34801561075f57600080fd5b50610768611923565b60405161077591906140b4565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190613ad7565b61192a565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190613994565b611940565b6040516107db91906141b1565b60405180910390f35b3480156107f057600080fd5b506107f9611958565b6040516108069190614032565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190613994565b61197e565b005b34801561084457600080fd5b5061085f600480360381019061085a9190613b57565b611b03565b005b34801561086d57600080fd5b5061088860048036038101906108839190613a54565b611cdf565b005b34801561089657600080fd5b5061089f611cf1565b6040516108ac91906140cf565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613cec565b611d7f565b6040516108e991906140cf565b60405180910390f35b3480156108fe57600080fd5b50610907611e98565b60405161091491906141b1565b60405180910390f35b34801561092957600080fd5b50610932611e9e565b60405161093f9190614032565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613c05565b611ec4565b005b34801561097d57600080fd5b5061099860048036038101906109939190613c9f565b611ee5565b005b3480156109a657600080fd5b506109c160048036038101906109bc91906139c1565b611f77565b6040516109ce9190614099565b60405180910390f35b3480156109e357600080fd5b506109ec61200b565b6040516109f99190614032565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190613994565b612031565b005b6000610a3682612129565b9050919050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c8054610a9390614484565b80601f0160208091040260200160405190810160405280929190818152602001828054610abf90614484565b8015610b0c5780601f10610ae157610100808354040283529160200191610b0c565b820191906000526020600020905b815481529060010190602001808311610aef57829003601f168201915b505050505081565b6000610b1f826121a3565b610b55576040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9b826121df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c0d61239f565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610c525750610c508282611f77565b155b15610c89576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c948484846123a7565b50505050565b610ca76000801b3361164a565b610cdd576040517f46ab053d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610d65576040517fd00dca3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d726000801b82610ebf565b610da16000801b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ec4565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600654610df2612459565b610dfc9190614366565b905090565b610e0961239f565b73ffffffffffffffffffffffffffffffffffffffff16610e27611620565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614171565b60405180910390fd5b80600e8190555050565b610e9a610e9261239f565b848484612462565b505050565b600060086000838152602001908152602001600020600101549050919050565b610ec882610e9f565b610ed1816124b4565b610edb83836124c8565b505050565b604581565b610eed61239f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190614191565b60405180910390fd5b610f6482826125a9565b5050565b610f927f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a4583361164a565b610fc8576040517fda81620800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000479050610ffe828261268b565b5050565b61102c7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a4583361164a565b611062576040517fda81620800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110c183838360405180602001604052806000815250611cdf565b505050565b60006110d1826121df565b90506110e56110de61239f565b838361277f565b61111b576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611129816000846001612808565b611135600083836123a7565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555060016005600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060006001600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600081548092919060010191905055506000600183019050611224610de5565b81111580156112925750600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156112ea57816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b506112f981600084600161280e565b81600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600e5481565b61136761239f565b73ffffffffffffffffffffffffffffffffffffffff16611385611620565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614171565b60405180910390fd5b8181600f91906113ec929190613701565b505050565b60006005600083815260200190815260200160002060009054906101000a900460ff161561144b576040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611454826121df565b9050919050565b600f805461146890614484565b80601f016020809104026020016040519081016040528092919081815260200182805461149490614484565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611551576040517f2c50bb9600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a061239f565b73ffffffffffffffffffffffffffffffffffffffff166115be611620565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614171565b60405180910390fd5b61161e6000612814565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b600d80546116c790614484565b80601f01602080910402602001604051908101604052809291908181526020018280546116f390614484565b80156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b505050505081565b600081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117959190614285565b90506000826117a2610de5565b6117ac9190614285565b9050600083600e546117be919061430c565b905060003490506000600e541415611802576040517f08fc7fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181101561183c576040517fb83831ea00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710831115611878576040517f7925403600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60458511806118875750604584115b156118be576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d83386604051806020016040528060008152506128da565b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b6000801b81565b61193c61193561239f565b83836128ec565b5050565b60116020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61198b6000801b3361164a565b6119c1576040517f46ab053d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a49576040517fd00dca3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a737f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a45882610ebf565b611abf7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ec4565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b0b61239f565b73ffffffffffffffffffffffffffffffffffffffff16611b29611620565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614171565b60405180910390fd5b6014848490501115611bbd576040517f359fd04400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818190508484905014611bfc576040517f440de63f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c06610de5565b905060005b85859050811015611cd7576000868683818110611c2b57611c2a6145ee565b5b9050602002016020810190611c409190613994565b90506000858584818110611c5757611c566145ee565b5b9050602002013590508084611c6c9190614285565b9350612710841115611caa576040517f7925403600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cc48282604051806020016040528060008152506128da565b505080611cd0906144e7565b9050611c0b565b505050505050565b611ceb84848484612a50565b50505050565b60108054611cfe90614484565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2a90614484565b8015611d775780601f10611d4c57610100808354040283529160200191611d77565b820191906000526020600020905b815481529060010190602001808311611d5a57829003601f168201915b505050505081565b60606000821015611dbc576040517fc1ab6dc100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600f8054611dcb90614484565b905011611e6257600f8054611ddf90614484565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0b90614484565b8015611e585780601f10611e2d57610100808354040283529160200191611e58565b820191906000526020600020905b815481529060010190602001808311611e3b57829003601f168201915b5050505050611e91565b600f611e6d83612ad0565b6010604051602001611e8193929190613fb2565b6040516020818303038152906040525b9050919050565b61271081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ecd82610e9f565b611ed6816124b4565b611ee083836125a9565b505050565b611eed61239f565b73ffffffffffffffffffffffffffffffffffffffff16611f0b611620565b73ffffffffffffffffffffffffffffffffffffffff1614611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614171565b60405180910390fd5b818160109190611f72929190613701565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61203961239f565b73ffffffffffffffffffffffffffffffffffffffff16612057611620565b73ffffffffffffffffffffffffffffffffffffffff16146120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490614171565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490614111565b60405180910390fd5b61212681612814565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061219c575061219b82612c31565b5b9050919050565b60006005600083815260200190815260200160002060009054906101000a900460ff161580156121d857506121d782612cab565b5b9050919050565b600080829050600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612288576001600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505061239a565b60008111801561229a57506000548111155b15612367575b6001156123665780806001900391505060008114156122be57612366565b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612361576001600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505061239a565b6122a0565b5b506040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008054905090565b61246d84828561277f565b6124a3576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ae838383612cc5565b50505050565b6124c5816124c061239f565b612fb1565b50565b6124d2828261164a565b6125a55760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061254a61239f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6125b3828261164a565b156126875760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061262c61239f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b804710156126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c590614151565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126f490613fe3565b60006040518083038185875af1925050503d8060008114612731576040519150601f19603f3d011682016040523d82523d6000602084013e612736565b606091505b505090508061277a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277190614131565b60405180910390fd5b505050565b60008173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ee57508373ffffffffffffffffffffffffffffffffffffffff166127d684610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b806127ff57506127fe8285611f77565b5b90509392505050565b50505050565b50505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e7838383600161304e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612952576040517ff3e29c6000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a439190614099565b60405180910390a3505050565b612a63612a5b61239f565b858585612462565b60008373ffffffffffffffffffffffffffffffffffffffff163b118015612a935750612a91848484846132fb565b155b15612aca576040517f7c46125400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606000821415612b18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c2c565b600082905060005b60008214612b4a578080612b33906144e7565b915050600a82612b4391906142db565b9150612b20565b60008167ffffffffffffffff811115612b6657612b6561461d565b5b6040519080825280601f01601f191660200182016040528015612b985781602001600182028036833780820191505090505b5090505b60008514612c2557600182612bb19190614366565b9150600a85612bc09190614530565b6030612bcc9190614285565b60f81b818381518110612be257612be16145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c1e91906142db565b9450612b9c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ca45750612ca38261345b565b5b9050919050565b60008082118015612cbe57506000548211155b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480612d345750612d04816121df565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612d6b576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d788383836001612808565b612d84600082856123a7565b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006001820190506000548111158015612eeb5750600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b15612f4357836001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50612f51838383600161280e565b808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612fbb828261164a565b61304a57612fe08173ffffffffffffffffffffffffffffffffffffffff1660146134c5565b612fee8360001c60206134c5565b604051602001612fff929190613ff8565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304191906140cf565b60405180910390fd5b5050565b60008314806130895750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b156130c0576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060016000546130d19190614285565b90506130e06000868387612808565b83600080828254019250508190555083600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550846001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061319b600086838761280e565b6000819050600085820190508380156131cb575060008773ffffffffffffffffffffffffffffffffffffffff163b115b15613286575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461324060008884806001019550886132fb565b613276576040517f7c46125400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131d1575050506132f5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613287575050505b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261332161239f565b8786866040518563ffffffff1660e01b8152600401613343949392919061404d565b602060405180830381600087803b15801561335d57600080fd5b505af192505050801561338e57506040513d601f19601f8201168201806040525081019061338b9190613c72565b60015b613408573d80600081146133be576040519150601f19603f3d011682016040523d82523d6000602084013e6133c3565b606091505b50600081511415613400576040517f0568cbab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026134d8919061430c565b6134e29190614285565b67ffffffffffffffff8111156134fb576134fa61461d565b5b6040519080825280601f01601f19166020018201604052801561352d5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613565576135646145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135c9576135c86145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613609919061430c565b6136139190614285565b90505b60018111156136b3577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613655576136546145ee565b5b1a60f81b82828151811061366c5761366b6145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136ac9061445a565b9050613616565b50600084146136f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ee906140f1565b60405180910390fd5b8091505092915050565b82805461370d90614484565b90600052602060002090601f01602090048101928261372f5760008555613776565b82601f1061374857803560ff1916838001178555613776565b82800160010185558215613776579182015b8281111561377557823582559160200191906001019061375a565b5b5090506137839190613787565b5090565b5b808211156137a0576000816000905550600101613788565b5090565b60006137b76137b2846141f1565b6141cc565b9050828152602081018484840111156137d3576137d261465b565b5b6137de848285614418565b509392505050565b6000813590506137f581614838565b92915050565b60008083601f84011261381157613810614651565b5b8235905067ffffffffffffffff81111561382e5761382d61464c565b5b60208301915083602082028301111561384a57613849614656565b5b9250929050565b60008083601f84011261386757613866614651565b5b8235905067ffffffffffffffff8111156138845761388361464c565b5b6020830191508360208202830111156138a05761389f614656565b5b9250929050565b6000813590506138b68161484f565b92915050565b6000813590506138cb81614866565b92915050565b6000813590506138e08161487d565b92915050565b6000815190506138f58161487d565b92915050565b600082601f8301126139105761390f614651565b5b81356139208482602086016137a4565b91505092915050565b60008083601f84011261393f5761393e614651565b5b8235905067ffffffffffffffff81111561395c5761395b61464c565b5b60208301915083600182028301111561397857613977614656565b5b9250929050565b60008135905061398e81614894565b92915050565b6000602082840312156139aa576139a9614665565b5b60006139b8848285016137e6565b91505092915050565b600080604083850312156139d8576139d7614665565b5b60006139e6858286016137e6565b92505060206139f7858286016137e6565b9150509250929050565b600080600060608486031215613a1a57613a19614665565b5b6000613a28868287016137e6565b9350506020613a39868287016137e6565b9250506040613a4a8682870161397f565b9150509250925092565b60008060008060808587031215613a6e57613a6d614665565b5b6000613a7c878288016137e6565b9450506020613a8d878288016137e6565b9350506040613a9e8782880161397f565b925050606085013567ffffffffffffffff811115613abf57613abe614660565b5b613acb878288016138fb565b91505092959194509250565b60008060408385031215613aee57613aed614665565b5b6000613afc858286016137e6565b9250506020613b0d858286016138a7565b9150509250929050565b60008060408385031215613b2e57613b2d614665565b5b6000613b3c858286016137e6565b9250506020613b4d8582860161397f565b9150509250929050565b60008060008060408587031215613b7157613b70614665565b5b600085013567ffffffffffffffff811115613b8f57613b8e614660565b5b613b9b878288016137fb565b9450945050602085013567ffffffffffffffff811115613bbe57613bbd614660565b5b613bca87828801613851565b925092505092959194509250565b600060208284031215613bee57613bed614665565b5b6000613bfc848285016138bc565b91505092915050565b60008060408385031215613c1c57613c1b614665565b5b6000613c2a858286016138bc565b9250506020613c3b858286016137e6565b9150509250929050565b600060208284031215613c5b57613c5a614665565b5b6000613c69848285016138d1565b91505092915050565b600060208284031215613c8857613c87614665565b5b6000613c96848285016138e6565b91505092915050565b60008060208385031215613cb657613cb5614665565b5b600083013567ffffffffffffffff811115613cd457613cd3614660565b5b613ce085828601613929565b92509250509250929050565b600060208284031215613d0257613d01614665565b5b6000613d108482850161397f565b91505092915050565b613d228161439a565b82525050565b613d31816143ac565b82525050565b613d40816143b8565b82525050565b6000613d5182614237565b613d5b818561424d565b9350613d6b818560208601614427565b613d748161466a565b840191505092915050565b6000613d8a82614242565b613d948185614269565b9350613da4818560208601614427565b613dad8161466a565b840191505092915050565b6000613dc382614242565b613dcd818561427a565b9350613ddd818560208601614427565b80840191505092915050565b60008154613df681614484565b613e00818661427a565b94506001821660008114613e1b5760018114613e2c57613e5f565b60ff19831686528186019350613e5f565b613e3585614222565b60005b83811015613e5757815481890152600182019150602081019050613e38565b838801955050505b50505092915050565b6000613e75602083614269565b9150613e808261467b565b602082019050919050565b6000613e98602683614269565b9150613ea3826146a4565b604082019050919050565b6000613ebb603a83614269565b9150613ec6826146f3565b604082019050919050565b6000613ede601d83614269565b9150613ee982614742565b602082019050919050565b6000613f01602083614269565b9150613f0c8261476b565b602082019050919050565b6000613f2460008361425e565b9150613f2f82614794565b600082019050919050565b6000613f4760178361427a565b9150613f5282614797565b601782019050919050565b6000613f6a60118361427a565b9150613f75826147c0565b601182019050919050565b6000613f8d602f83614269565b9150613f98826147e9565b604082019050919050565b613fac8161440e565b82525050565b6000613fbe8286613de9565b9150613fca8285613db8565b9150613fd68284613de9565b9150819050949350505050565b6000613fee82613f17565b9150819050919050565b600061400382613f3a565b915061400f8285613db8565b915061401a82613f5d565b91506140268284613db8565b91508190509392505050565b60006020820190506140476000830184613d19565b92915050565b60006080820190506140626000830187613d19565b61406f6020830186613d19565b61407c6040830185613fa3565b818103606083015261408e8184613d46565b905095945050505050565b60006020820190506140ae6000830184613d28565b92915050565b60006020820190506140c96000830184613d37565b92915050565b600060208201905081810360008301526140e98184613d7f565b905092915050565b6000602082019050818103600083015261410a81613e68565b9050919050565b6000602082019050818103600083015261412a81613e8b565b9050919050565b6000602082019050818103600083015261414a81613eae565b9050919050565b6000602082019050818103600083015261416a81613ed1565b9050919050565b6000602082019050818103600083015261418a81613ef4565b9050919050565b600060208201905081810360008301526141aa81613f80565b9050919050565b60006020820190506141c66000830184613fa3565b92915050565b60006141d66141e7565b90506141e282826144b6565b919050565b6000604051905090565b600067ffffffffffffffff82111561420c5761420b61461d565b5b6142158261466a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142908261440e565b915061429b8361440e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142d0576142cf614561565b5b828201905092915050565b60006142e68261440e565b91506142f18361440e565b92508261430157614300614590565b5b828204905092915050565b60006143178261440e565b91506143228361440e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561435b5761435a614561565b5b828202905092915050565b60006143718261440e565b915061437c8361440e565b92508282101561438f5761438e614561565b5b828203905092915050565b60006143a5826143ee565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561444557808201518184015260208101905061442a565b83811115614454576000848401525b50505050565b60006144658261440e565b9150600082141561447957614478614561565b5b600182039050919050565b6000600282049050600182168061449c57607f821691505b602082108114156144b0576144af6145bf565b5b50919050565b6144bf8261466a565b810181811067ffffffffffffffff821117156144de576144dd61461d565b5b80604052505050565b60006144f28261440e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561452557614524614561565b5b600182019050919050565b600061453b8261440e565b91506145468361440e565b92508261455657614555614590565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6148418161439a565b811461484c57600080fd5b50565b614858816143ac565b811461486357600080fd5b50565b61486f816143b8565b811461487a57600080fd5b50565b614886816143c2565b811461489157600080fd5b50565b61489d8161440e565b81146148a857600080fd5b5056fea2646970667358221220a6296fa81218a193dfe647784daf4ee29e952f3ab2cc2fd87c6f50e85b8342a664736f6c63430008070033000000000000000000000000e001bdd787b00971d4cb36e1b5f2e72f56961e5a0000000000000000000000005b1b58f4e0d495f8fc78cfb98ef96df811ded451
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063715018a611610144578063b816d087116100b6578063d2d871e01161007a578063d2d871e01461091d578063d547741f14610948578063da3ef23f14610971578063e985e9c51461099a578063f2344208146109d7578063f2fde38b14610a0257610267565b8063b816d08714610838578063b88d4fde14610861578063c66828621461088a578063c87b56dd146108b5578063cc3bde3d146108f257610267565b8063a0712d6811610108578063a0712d6814610737578063a217fddf14610753578063a22cb4651461077e578063a56cc439146107a7578063b69f6df9146107e4578063b7f70ac21461080f57610267565b8063715018a6146106625780638da5cb5b1461067957806391d14854146106a45780639559c0bd146106e157806395d89b411461070c57610267565b8063351ed951116101dd57806342966c68116101a157806342966c681461054057806348c26e221461056957806355f804b3146105945780636352211e146105bd5780636c0360eb146105fa57806370a082311461062557610267565b8063351ed9511461048357806336568abe146104ae5780633ccfd60b146104d757806340dbdd21146104ee57806342842e0e1461051757610267565b80631526e0871161022f5780631526e0871461037757806318160ddd146103a05780631d37c8a6146103cb57806323b872dd146103f4578063248a9ca31461041d5780632f2ff15d1461045a57610267565b806301ffc9a71461026c57806304d0a647146102a957806306fdde03146102e6578063081812fc14610311578063095ea7b31461034e575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c45565b610a2b565b6040516102a09190614099565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613994565b610a3d565b6040516102dd91906141b1565b60405180910390f35b3480156102f257600080fd5b506102fb610a86565b60405161030891906140cf565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613cec565b610b14565b6040516103459190614032565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613b17565b610b90565b005b34801561038357600080fd5b5061039e60048036038101906103999190613994565b610c9a565b005b3480156103ac57600080fd5b506103b5610de5565b6040516103c291906141b1565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613cec565b610e01565b005b34801561040057600080fd5b5061041b60048036038101906104169190613a01565b610e87565b005b34801561042957600080fd5b50610444600480360381019061043f9190613bd8565b610e9f565b60405161045191906140b4565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613c05565b610ebf565b005b34801561048f57600080fd5b50610498610ee0565b6040516104a591906141b1565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613c05565b610ee5565b005b3480156104e357600080fd5b506104ec610f68565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613994565b611002565b005b34801561052357600080fd5b5061053e60048036038101906105399190613a01565b6110a6565b005b34801561054c57600080fd5b5061056760048036038101906105629190613cec565b6110c6565b005b34801561057557600080fd5b5061057e611359565b60405161058b91906141b1565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613c9f565b61135f565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613cec565b6113f1565b6040516105f19190614032565b60405180910390f35b34801561060657600080fd5b5061060f61145b565b60405161061c91906140cf565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613994565b6114e9565b60405161065991906141b1565b60405180910390f35b34801561066e57600080fd5b50610677611598565b005b34801561068557600080fd5b5061068e611620565b60405161069b9190614032565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613c05565b61164a565b6040516106d89190614099565b60405180910390f35b3480156106ed57600080fd5b506106f66116b5565b60405161070391906141b1565b60405180910390f35b34801561071857600080fd5b506107216116ba565b60405161072e91906140cf565b60405180910390f35b610751600480360381019061074c9190613cec565b611748565b005b34801561075f57600080fd5b50610768611923565b60405161077591906140b4565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190613ad7565b61192a565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190613994565b611940565b6040516107db91906141b1565b60405180910390f35b3480156107f057600080fd5b506107f9611958565b6040516108069190614032565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190613994565b61197e565b005b34801561084457600080fd5b5061085f600480360381019061085a9190613b57565b611b03565b005b34801561086d57600080fd5b5061088860048036038101906108839190613a54565b611cdf565b005b34801561089657600080fd5b5061089f611cf1565b6040516108ac91906140cf565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613cec565b611d7f565b6040516108e991906140cf565b60405180910390f35b3480156108fe57600080fd5b50610907611e98565b60405161091491906141b1565b60405180910390f35b34801561092957600080fd5b50610932611e9e565b60405161093f9190614032565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613c05565b611ec4565b005b34801561097d57600080fd5b5061099860048036038101906109939190613c9f565b611ee5565b005b3480156109a657600080fd5b506109c160048036038101906109bc91906139c1565b611f77565b6040516109ce9190614099565b60405180910390f35b3480156109e357600080fd5b506109ec61200b565b6040516109f99190614032565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a249190613994565b612031565b005b6000610a3682612129565b9050919050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c8054610a9390614484565b80601f0160208091040260200160405190810160405280929190818152602001828054610abf90614484565b8015610b0c5780601f10610ae157610100808354040283529160200191610b0c565b820191906000526020600020905b815481529060010190602001808311610aef57829003601f168201915b505050505081565b6000610b1f826121a3565b610b55576040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9b826121df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c0d61239f565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610c525750610c508282611f77565b155b15610c89576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c948484846123a7565b50505050565b610ca76000801b3361164a565b610cdd576040517f46ab053d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610d65576040517fd00dca3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d726000801b82610ebf565b610da16000801b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ec4565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600654610df2612459565b610dfc9190614366565b905090565b610e0961239f565b73ffffffffffffffffffffffffffffffffffffffff16610e27611620565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614171565b60405180910390fd5b80600e8190555050565b610e9a610e9261239f565b848484612462565b505050565b600060086000838152602001908152602001600020600101549050919050565b610ec882610e9f565b610ed1816124b4565b610edb83836124c8565b505050565b604581565b610eed61239f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190614191565b60405180910390fd5b610f6482826125a9565b5050565b610f927f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a4583361164a565b610fc8576040517fda81620800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000479050610ffe828261268b565b5050565b61102c7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a4583361164a565b611062576040517fda81620800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110c183838360405180602001604052806000815250611cdf565b505050565b60006110d1826121df565b90506110e56110de61239f565b838361277f565b61111b576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611129816000846001612808565b611135600083836123a7565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555060016005600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060006001600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600081548092919060010191905055506000600183019050611224610de5565b81111580156112925750600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156112ea57816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b506112f981600084600161280e565b81600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600e5481565b61136761239f565b73ffffffffffffffffffffffffffffffffffffffff16611385611620565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614171565b60405180910390fd5b8181600f91906113ec929190613701565b505050565b60006005600083815260200190815260200160002060009054906101000a900460ff161561144b576040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611454826121df565b9050919050565b600f805461146890614484565b80601f016020809104026020016040519081016040528092919081815260200182805461149490614484565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611551576040517f2c50bb9600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a061239f565b73ffffffffffffffffffffffffffffffffffffffff166115be611620565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614171565b60405180910390fd5b61161e6000612814565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b600d80546116c790614484565b80601f01602080910402602001604051908101604052809291908181526020018280546116f390614484565b80156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b505050505081565b600081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117959190614285565b90506000826117a2610de5565b6117ac9190614285565b9050600083600e546117be919061430c565b905060003490506000600e541415611802576040517f08fc7fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181101561183c576040517fb83831ea00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710831115611878576040517f7925403600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60458511806118875750604584115b156118be576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d83386604051806020016040528060008152506128da565b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b6000801b81565b61193c61193561239f565b83836128ec565b5050565b60116020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61198b6000801b3361164a565b6119c1576040517f46ab053d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a49576040517fd00dca3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a737f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a45882610ebf565b611abf7f10ec476f95b2ac17b26abe61aa04eca5036baf3b2845e79fbbb0fd495127a458600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ec4565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b0b61239f565b73ffffffffffffffffffffffffffffffffffffffff16611b29611620565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614171565b60405180910390fd5b6014848490501115611bbd576040517f359fd04400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818190508484905014611bfc576040517f440de63f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c06610de5565b905060005b85859050811015611cd7576000868683818110611c2b57611c2a6145ee565b5b9050602002016020810190611c409190613994565b90506000858584818110611c5757611c566145ee565b5b9050602002013590508084611c6c9190614285565b9350612710841115611caa576040517f7925403600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cc48282604051806020016040528060008152506128da565b505080611cd0906144e7565b9050611c0b565b505050505050565b611ceb84848484612a50565b50505050565b60108054611cfe90614484565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2a90614484565b8015611d775780601f10611d4c57610100808354040283529160200191611d77565b820191906000526020600020905b815481529060010190602001808311611d5a57829003601f168201915b505050505081565b60606000821015611dbc576040517fc1ab6dc100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600f8054611dcb90614484565b905011611e6257600f8054611ddf90614484565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0b90614484565b8015611e585780601f10611e2d57610100808354040283529160200191611e58565b820191906000526020600020905b815481529060010190602001808311611e3b57829003601f168201915b5050505050611e91565b600f611e6d83612ad0565b6010604051602001611e8193929190613fb2565b6040516020818303038152906040525b9050919050565b61271081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ecd82610e9f565b611ed6816124b4565b611ee083836125a9565b505050565b611eed61239f565b73ffffffffffffffffffffffffffffffffffffffff16611f0b611620565b73ffffffffffffffffffffffffffffffffffffffff1614611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614171565b60405180910390fd5b818160109190611f72929190613701565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61203961239f565b73ffffffffffffffffffffffffffffffffffffffff16612057611620565b73ffffffffffffffffffffffffffffffffffffffff16146120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490614171565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490614111565b60405180910390fd5b61212681612814565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061219c575061219b82612c31565b5b9050919050565b60006005600083815260200190815260200160002060009054906101000a900460ff161580156121d857506121d782612cab565b5b9050919050565b600080829050600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612288576001600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505061239a565b60008111801561229a57506000548111155b15612367575b6001156123665780806001900391505060008114156122be57612366565b600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612361576001600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505061239a565b6122a0565b5b506040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008054905090565b61246d84828561277f565b6124a3576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ae838383612cc5565b50505050565b6124c5816124c061239f565b612fb1565b50565b6124d2828261164a565b6125a55760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061254a61239f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6125b3828261164a565b156126875760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061262c61239f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b804710156126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c590614151565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516126f490613fe3565b60006040518083038185875af1925050503d8060008114612731576040519150601f19603f3d011682016040523d82523d6000602084013e612736565b606091505b505090508061277a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277190614131565b60405180910390fd5b505050565b60008173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ee57508373ffffffffffffffffffffffffffffffffffffffff166127d684610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b806127ff57506127fe8285611f77565b5b90509392505050565b50505050565b50505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e7838383600161304e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612952576040517ff3e29c6000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a439190614099565b60405180910390a3505050565b612a63612a5b61239f565b858585612462565b60008373ffffffffffffffffffffffffffffffffffffffff163b118015612a935750612a91848484846132fb565b155b15612aca576040517f7c46125400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606000821415612b18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c2c565b600082905060005b60008214612b4a578080612b33906144e7565b915050600a82612b4391906142db565b9150612b20565b60008167ffffffffffffffff811115612b6657612b6561461d565b5b6040519080825280601f01601f191660200182016040528015612b985781602001600182028036833780820191505090505b5090505b60008514612c2557600182612bb19190614366565b9150600a85612bc09190614530565b6030612bcc9190614285565b60f81b818381518110612be257612be16145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c1e91906142db565b9450612b9c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ca45750612ca38261345b565b5b9050919050565b60008082118015612cbe57506000548211155b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480612d345750612d04816121df565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612d6b576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d788383836001612808565b612d84600082856123a7565b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006001820190506000548111158015612eeb5750600073ffffffffffffffffffffffffffffffffffffffff166001600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b15612f4357836001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50612f51838383600161280e565b808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612fbb828261164a565b61304a57612fe08173ffffffffffffffffffffffffffffffffffffffff1660146134c5565b612fee8360001c60206134c5565b604051602001612fff929190613ff8565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304191906140cf565b60405180910390fd5b5050565b60008314806130895750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b156130c0576040517fae962d4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060016000546130d19190614285565b90506130e06000868387612808565b83600080828254019250508190555083600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550846001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061319b600086838761280e565b6000819050600085820190508380156131cb575060008773ffffffffffffffffffffffffffffffffffffffff163b115b15613286575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461324060008884806001019550886132fb565b613276576040517f7c46125400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131d1575050506132f5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613287575050505b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261332161239f565b8786866040518563ffffffff1660e01b8152600401613343949392919061404d565b602060405180830381600087803b15801561335d57600080fd5b505af192505050801561338e57506040513d601f19601f8201168201806040525081019061338b9190613c72565b60015b613408573d80600081146133be576040519150601f19603f3d011682016040523d82523d6000602084013e6133c3565b606091505b50600081511415613400576040517f0568cbab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026134d8919061430c565b6134e29190614285565b67ffffffffffffffff8111156134fb576134fa61461d565b5b6040519080825280601f01601f19166020018201604052801561352d5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613565576135646145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135c9576135c86145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613609919061430c565b6136139190614285565b90505b60018111156136b3577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613655576136546145ee565b5b1a60f81b82828151811061366c5761366b6145ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136ac9061445a565b9050613616565b50600084146136f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ee906140f1565b60405180910390fd5b8091505092915050565b82805461370d90614484565b90600052602060002090601f01602090048101928261372f5760008555613776565b82601f1061374857803560ff1916838001178555613776565b82800160010185558215613776579182015b8281111561377557823582559160200191906001019061375a565b5b5090506137839190613787565b5090565b5b808211156137a0576000816000905550600101613788565b5090565b60006137b76137b2846141f1565b6141cc565b9050828152602081018484840111156137d3576137d261465b565b5b6137de848285614418565b509392505050565b6000813590506137f581614838565b92915050565b60008083601f84011261381157613810614651565b5b8235905067ffffffffffffffff81111561382e5761382d61464c565b5b60208301915083602082028301111561384a57613849614656565b5b9250929050565b60008083601f84011261386757613866614651565b5b8235905067ffffffffffffffff8111156138845761388361464c565b5b6020830191508360208202830111156138a05761389f614656565b5b9250929050565b6000813590506138b68161484f565b92915050565b6000813590506138cb81614866565b92915050565b6000813590506138e08161487d565b92915050565b6000815190506138f58161487d565b92915050565b600082601f8301126139105761390f614651565b5b81356139208482602086016137a4565b91505092915050565b60008083601f84011261393f5761393e614651565b5b8235905067ffffffffffffffff81111561395c5761395b61464c565b5b60208301915083600182028301111561397857613977614656565b5b9250929050565b60008135905061398e81614894565b92915050565b6000602082840312156139aa576139a9614665565b5b60006139b8848285016137e6565b91505092915050565b600080604083850312156139d8576139d7614665565b5b60006139e6858286016137e6565b92505060206139f7858286016137e6565b9150509250929050565b600080600060608486031215613a1a57613a19614665565b5b6000613a28868287016137e6565b9350506020613a39868287016137e6565b9250506040613a4a8682870161397f565b9150509250925092565b60008060008060808587031215613a6e57613a6d614665565b5b6000613a7c878288016137e6565b9450506020613a8d878288016137e6565b9350506040613a9e8782880161397f565b925050606085013567ffffffffffffffff811115613abf57613abe614660565b5b613acb878288016138fb565b91505092959194509250565b60008060408385031215613aee57613aed614665565b5b6000613afc858286016137e6565b9250506020613b0d858286016138a7565b9150509250929050565b60008060408385031215613b2e57613b2d614665565b5b6000613b3c858286016137e6565b9250506020613b4d8582860161397f565b9150509250929050565b60008060008060408587031215613b7157613b70614665565b5b600085013567ffffffffffffffff811115613b8f57613b8e614660565b5b613b9b878288016137fb565b9450945050602085013567ffffffffffffffff811115613bbe57613bbd614660565b5b613bca87828801613851565b925092505092959194509250565b600060208284031215613bee57613bed614665565b5b6000613bfc848285016138bc565b91505092915050565b60008060408385031215613c1c57613c1b614665565b5b6000613c2a858286016138bc565b9250506020613c3b858286016137e6565b9150509250929050565b600060208284031215613c5b57613c5a614665565b5b6000613c69848285016138d1565b91505092915050565b600060208284031215613c8857613c87614665565b5b6000613c96848285016138e6565b91505092915050565b60008060208385031215613cb657613cb5614665565b5b600083013567ffffffffffffffff811115613cd457613cd3614660565b5b613ce085828601613929565b92509250509250929050565b600060208284031215613d0257613d01614665565b5b6000613d108482850161397f565b91505092915050565b613d228161439a565b82525050565b613d31816143ac565b82525050565b613d40816143b8565b82525050565b6000613d5182614237565b613d5b818561424d565b9350613d6b818560208601614427565b613d748161466a565b840191505092915050565b6000613d8a82614242565b613d948185614269565b9350613da4818560208601614427565b613dad8161466a565b840191505092915050565b6000613dc382614242565b613dcd818561427a565b9350613ddd818560208601614427565b80840191505092915050565b60008154613df681614484565b613e00818661427a565b94506001821660008114613e1b5760018114613e2c57613e5f565b60ff19831686528186019350613e5f565b613e3585614222565b60005b83811015613e5757815481890152600182019150602081019050613e38565b838801955050505b50505092915050565b6000613e75602083614269565b9150613e808261467b565b602082019050919050565b6000613e98602683614269565b9150613ea3826146a4565b604082019050919050565b6000613ebb603a83614269565b9150613ec6826146f3565b604082019050919050565b6000613ede601d83614269565b9150613ee982614742565b602082019050919050565b6000613f01602083614269565b9150613f0c8261476b565b602082019050919050565b6000613f2460008361425e565b9150613f2f82614794565b600082019050919050565b6000613f4760178361427a565b9150613f5282614797565b601782019050919050565b6000613f6a60118361427a565b9150613f75826147c0565b601182019050919050565b6000613f8d602f83614269565b9150613f98826147e9565b604082019050919050565b613fac8161440e565b82525050565b6000613fbe8286613de9565b9150613fca8285613db8565b9150613fd68284613de9565b9150819050949350505050565b6000613fee82613f17565b9150819050919050565b600061400382613f3a565b915061400f8285613db8565b915061401a82613f5d565b91506140268284613db8565b91508190509392505050565b60006020820190506140476000830184613d19565b92915050565b60006080820190506140626000830187613d19565b61406f6020830186613d19565b61407c6040830185613fa3565b818103606083015261408e8184613d46565b905095945050505050565b60006020820190506140ae6000830184613d28565b92915050565b60006020820190506140c96000830184613d37565b92915050565b600060208201905081810360008301526140e98184613d7f565b905092915050565b6000602082019050818103600083015261410a81613e68565b9050919050565b6000602082019050818103600083015261412a81613e8b565b9050919050565b6000602082019050818103600083015261414a81613eae565b9050919050565b6000602082019050818103600083015261416a81613ed1565b9050919050565b6000602082019050818103600083015261418a81613ef4565b9050919050565b600060208201905081810360008301526141aa81613f80565b9050919050565b60006020820190506141c66000830184613fa3565b92915050565b60006141d66141e7565b90506141e282826144b6565b919050565b6000604051905090565b600067ffffffffffffffff82111561420c5761420b61461d565b5b6142158261466a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142908261440e565b915061429b8361440e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142d0576142cf614561565b5b828201905092915050565b60006142e68261440e565b91506142f18361440e565b92508261430157614300614590565b5b828204905092915050565b60006143178261440e565b91506143228361440e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561435b5761435a614561565b5b828202905092915050565b60006143718261440e565b915061437c8361440e565b92508282101561438f5761438e614561565b5b828203905092915050565b60006143a5826143ee565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561444557808201518184015260208101905061442a565b83811115614454576000848401525b50505050565b60006144658261440e565b9150600082141561447957614478614561565b5b600182039050919050565b6000600282049050600182168061449c57607f821691505b602082108114156144b0576144af6145bf565b5b50919050565b6144bf8261466a565b810181811067ffffffffffffffff821117156144de576144dd61461d565b5b80604052505050565b60006144f28261440e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561452557614524614561565b5b600182019050919050565b600061453b8261440e565b91506145468361440e565b92508261455657614555614590565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6148418161439a565b811461484c57600080fd5b50565b614858816143ac565b811461486357600080fd5b50565b61486f816143b8565b811461487a57600080fd5b50565b614886816143c2565b811461489157600080fd5b50565b61489d8161440e565b81146148a857600080fd5b5056fea2646970667358221220a6296fa81218a193dfe647784daf4ee29e952f3ab2cc2fd87c6f50e85b8342a664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e001bdd787b00971d4cb36e1b5f2e72f56961e5a0000000000000000000000005b1b58f4e0d495f8fc78cfb98ef96df811ded451
-----Decoded View---------------
Arg [0] : admin (address): 0xE001bdD787B00971D4Cb36e1b5F2E72F56961E5a
Arg [1] : splitterAddress (address): 0x5b1b58f4E0D495f8fc78CFB98ef96DF811ded451
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000e001bdd787b00971d4cb36e1b5f2e72f56961e5a
Arg [1] : 0000000000000000000000005b1b58f4e0d495f8fc78cfb98ef96df811ded451
Deployed Bytecode Sourcemap
58777:3101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61149:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60301:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58924:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23808:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23394:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58109:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35068:123;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59487:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28808:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44259:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44652:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59032:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45700:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57550:232;;;;;;;;;;;;;:::i;:::-;;57401:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29042:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35406:877;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59121:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61639:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34790:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59169:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21883:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2711:103;;;;;;;;;;;;;:::i;:::-;;2060:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42719:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59077:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58949:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59591:702;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41824:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24296:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59248:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56656:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57790:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60400:690;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29270:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59202:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61352:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58978:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56567:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45044:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61746:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24064:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56613:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2969:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61149:177;61258:4;61282:36;61306:11;61282:23;:36::i;:::-;61275:43;;61149:177;;;:::o;60301:91::-;60351:4;60375:6;:9;60382:1;60375:9;;;;;;;;;;;;;;;;60368:16;;60301:91;;;:::o;58924:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23808:193::-;23889:7;23914:16;23922:7;23914;:16::i;:::-;23909:48;;23939:18;;;;;;;;;;;;;;23909:48;23971:15;:24;23987:7;23971:24;;;;;;;;;;;;;;;;;;;;;23964:31;;23808:193;;;:::o;23394:356::-;23471:13;23487:24;23503:7;23487:15;:24::i;:::-;23471:40;;23528:5;23522:11;;:2;:11;;;23518:48;;;23542:24;;;;;;;;;;;;;;23518:48;23575:14;23592:12;:10;:12::i;:::-;23575:29;;23625:5;23615:15;;:6;:15;;;;:51;;;;;23635:31;23652:5;23659:6;23635:16;:31::i;:::-;23634:32;23615:51;23611:96;;;23683:24;;;;;;;;;;;;;;23611:96;23716:28;23725:2;23729:7;23738:5;23716:8;:28::i;:::-;23464:286;;23394:356;;:::o;58109:329::-;57282:39;41869:4;57290:18;;57310:10;57282:7;:39::i;:::-;57277:97;;57345:17;;;;;;;;;;;;;;57277:97;58221:5:::1;58196:30;;:21;;;;;;;;;;;:30;;;58192:86;;;58250:16;;;;;;;;;;;;;;58192:86;58290:36;41869:4;58300:18:::0;::::1;58320:5;58290:9;:36::i;:::-;58337:53;41869:4;58348:18:::0;::::1;58368:21;;;;;;;;;;;58337:10;:53::i;:::-;58425:5;58401:21;;:29;;;;;;;;;;;;;;;;;;58109:329:::0;:::o;35068:123::-;35128:7;35173:12;;35151:19;:17;:19::i;:::-;:34;;;;:::i;:::-;35144:41;;35068:123;:::o;59487:96::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:5:::1;59555:12;:20;;;;59487:96:::0;:::o;28808:171::-;28924:49;28941:12;:10;:12::i;:::-;28955:4;28961:2;28965:7;28924:16;:49::i;:::-;28808:171;;;:::o;44259:131::-;44333:7;44360:6;:12;44367:4;44360:12;;;;;;;;;;;:22;;;44353:29;;44259:131;;;:::o;44652:147::-;44735:18;44748:4;44735:12;:18::i;:::-;42315:16;42326:4;42315:10;:16::i;:::-;44766:25:::1;44777:4;44783:7;44766:10;:25::i;:::-;44652:147:::0;;;:::o;59032:38::-;59068:2;59032:38;:::o;45700:218::-;45807:12;:10;:12::i;:::-;45796:23;;:7;:23;;;45788:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;45884:26;45896:4;45902:7;45884:11;:26::i;:::-;45700:218;;:::o;57550:232::-;57119:40;56739:27;57148:10;57119:7;:40::i;:::-;57114:99;;57183:18;;;;;;;;;;;;;;57114:99;57605:25:::1;57641:24;;;;;;;;;;;57605:61;;57677:15;57695:21;57677:39;;57737:37;57755:9;57766:7;57737:17;:37::i;:::-;57594:188;;57550:232::o:0;57401:141::-;57119:40;56739:27;57148:10;57119:7;:40::i;:::-;57114:99;;57183:18;;;;;;;;;;;;;;57114:99;57518:16:::1;57491:24;;:43;;;;;;;;;;;;;;;;;;57401:141:::0;:::o;29042:165::-;29162:39;29179:4;29185:2;29189:7;29162:39;;;;;;;;;;;;:16;:39::i;:::-;29042:165;;;:::o;35406:877::-;35459:13;35475:24;35491:7;35475:15;:24::i;:::-;35459:40;;35511:48;35530:12;:10;:12::i;:::-;35544:7;35553:5;35511:18;:48::i;:::-;35506:83;;35576:13;;;;;;;;;;;;;;35506:83;35598:52;35620:5;35635:1;35639:7;35648:1;35598:21;:52::i;:::-;35687:36;35704:1;35708:7;35717:5;35687:8;:36::i;:::-;35830:1;35810:9;:16;35820:5;35810:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;35859:4;35840:7;:16;35848:7;35840:16;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;35899:1;35872:7;:16;35880:7;35872:16;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35910:12;;:14;;;;;;;;;;;;;35998:19;36030:1;36020:7;:11;35998:33;;36059:13;:11;:13::i;:::-;36044:11;:28;;:66;;;;;36108:1;36076:34;;:7;:20;36084:11;36076:20;;;;;;;;;;;;;;;;;;;;;:34;;;36044:66;36040:121;;;36146:5;36123:7;:20;36131:11;36123:20;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;36040:121;35732:436;36176:51;36197:5;36212:1;36216:7;36225:1;36176:20;:51::i;:::-;36269:7;36265:1;36241:36;;36250:5;36241:36;;;;;;;;;;;;35452:831;35406:877;:::o;59121:39::-;;;;:::o;61639:99::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61722:8:::1;;61712:7;:18;;;;;;;:::i;:::-;;61639:99:::0;;:::o;34790:186::-;34867:7;34891;:16;34899:7;34891:16;;;;;;;;;;;;;;;;;;;;;34887:47;;;34916:18;;;;;;;;;;;;;;34887:47;34948:22;34962:7;34948:13;:22::i;:::-;34941:29;;34790:186;;;:::o;59169:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21883:190::-;21960:7;22001:1;21984:19;;:5;:19;;;21980:57;;;22012:25;;;;;;;;;;;;;;21980:57;22051:9;:16;22061:5;22051:16;;;;;;;;;;;;;;;;22044:23;;21883:190;;;:::o;2711:103::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2776:30:::1;2803:1;2776:18;:30::i;:::-;2711:103::o:0;2060:87::-;2106:7;2133:6;;;;;;;;;;;2126:13;;2060:87;:::o;42719:147::-;42805:4;42829:6;:12;42836:4;42829:12;;;;;;;;;;;:20;;:29;42850:7;42829:29;;;;;;;;;;;;;;;;;;;;;;;;;42822:36;;42719:147;;;;:::o;59077:37::-;59112:2;59077:37;:::o;58949:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59591:702::-;59650:14;59688:9;59667:6;:18;59674:10;59667:18;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;59650:47;;59708:19;59746:9;59730:13;:11;:13::i;:::-;:25;;;;:::i;:::-;59708:47;;59766:28;59812:9;59797:12;;:24;;;;:::i;:::-;59766:55;;59832:15;59850:9;59832:27;;59892:1;59876:12;;:17;59872:42;;;59902:12;;;;;;;;;;;;;;59872:42;59939:20;59929:7;:30;59925:61;;;59968:18;;;;;;;;;;;;;;59925:61;59020:5;60003:11;:32;59999:84;;;60057:26;;;;;;;;;;;;;;59999:84;59068:2;60100:9;:24;:52;;;;59068:2;60128:9;:24;60100:52;60096:99;;;60174:21;;;;;;;;;;;;;;60096:99;60208:36;60218:10;60230:9;60208:36;;;;;;;;;;;;:9;:36::i;:::-;60276:9;60255:6;:18;60262:10;60255:18;;;;;;;;;;;;;;;:30;;;;59639:654;;;;59591:702;:::o;41824:49::-;41869:4;41824:49;;;:::o;24296:159::-;24397:52;24416:12;:10;:12::i;:::-;24430:8;24440;24397:18;:52::i;:::-;24296:159;;:::o;59248:38::-;;;;;;;;;;;;;;;;;:::o;56656:29::-;;;;;;;;;;;;;:::o;57790:311::-;57282:39;41869:4;57290:18;;57310:10;57282:7;:39::i;:::-;57277:97;;57345:17;;;;;;;;;;;;;;57277:97;57896:5:::1;57878:23;;:14;;;;;;;;;;;:23;;;57874:79;;;57925:16;;;;;;;;;;;;;;57874:79;57965:37;56739:27;57996:5;57965:9;:37::i;:::-;58013:47;56739:27;58045:14;;;;;;;;;;;58013:10;:47::i;:::-;58088:5;58071:14;;:22;;;;;;;;;;;;;;;;;;57790:311:::0;:::o;60400:690::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59112:2:::1;60512:11;;:18;;:32;60508:78;;;60566:20;;;;;;;;;;;;;;60508:78;60625:8;;:15;;60603:11;;:18;;:37;60599:85;;60662:22;;;;;;;;;;;;;;60599:85;60697:19;60719:13;:11;:13::i;:::-;60697:35;;60750:6;60745:338;60766:11;;:18;;60762:1;:22;60745:338;;;60806:17;60826:11;;60838:1;60826:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;60806:34;;60855:14;60872:8;;60881:1;60872:11;;;;;;;:::i;:::-;;;;;;;;60855:28;;60915:6;60900:21;;;;;:::i;:::-;;;59020:5;60942:11;:32;60938:84;;;60996:26;;;;;;;;;;;;;;60938:84;61039:32;61049:9;61060:6;61039:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;60791:292;;60786:3;;;;:::i;:::-;;;60745:338;;;;60497:593;60400:690:::0;;;;:::o;29270:197::-;29415:46;29436:4;29442:2;29446:7;29455:5;29415:20;:46::i;:::-;29270:197;;;;:::o;59202:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61352:279::-;61406:13;61447:1;61436:8;:12;61432:52;;;61470:14;;;;;;;;;;;;;;61432:52;61540:1;61522:7;61516:21;;;;;:::i;:::-;;;:25;:107;;61616:7;61516:107;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61568:7;61577:19;:8;:17;:19::i;:::-;61598:13;61551:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61516:107;61509:114;;61352:279;;;:::o;58978:47::-;59020:5;58978:47;:::o;56567:39::-;;;;;;;;;;;;;:::o;45044:149::-;45128:18;45141:4;45128:12;:18::i;:::-;42315:16;42326:4;42315:10;:16::i;:::-;45159:26:::1;45171:4;45177:7;45159:11;:26::i;:::-;45044:149:::0;;;:::o;61746:129::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61850:17:::1;;61834:13;:33;;;;;;;:::i;:::-;;61746:129:::0;;:::o;24064:168::-;24167:4;24191:18;:25;24210:5;24191:25;;;;;;;;;;;;;;;:35;24217:8;24191:35;;;;;;;;;;;;;;;;;;;;;;;;;24184:42;;24064:168;;;;:::o;56613:36::-;;;;;;;;;;;;;:::o;2969:201::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3078:1:::1;3058:22;;:8;:22;;;;3050:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3134:28;3153:8;3134:18;:28::i;:::-;2969:201:::0;:::o;42423:204::-;42508:4;42547:32;42532:47;;;:11;:47;;;;:87;;;;42583:36;42607:11;42583:23;:36::i;:::-;42532:87;42525:94;;42423:204;;;:::o;36636:152::-;36715:4;36740:7;:16;36748:7;36740:16;;;;;;;;;;;;;;;;;;;;;36739:17;:43;;;;;36760:22;36774:7;36760:13;:22::i;:::-;36739:43;36732:50;;36636:152;;;:::o;22311:690::-;22388:7;22482:10;22495:7;22482:20;;22538:1;22515:25;;:7;:11;22523:2;22515:11;;;;;;;;;;;;;;;;;;;;;:25;;;22511:70;;22560:7;:11;22568:2;22560:11;;;;;;;;;;;;;;;;;;;;;22553:18;;;;;22511:70;22660:1;22655:2;:6;:28;;;;;22671:12;;22665:2;:18;;22655:28;22651:304;;;22762:184;22768:4;22762:184;;;22787:4;;;;;;;;22814:1;22808:2;:7;22804:131;;;22832:5;;22804:131;22884:1;22861:25;;:7;:11;22869:2;22861:11;;;;;;;;;;;;;;;;;;;;;:25;;;22857:78;;22910:7;:11;22918:2;22910:11;;;;;;;;;;;;;;;;;;;;;22903:18;;;;;22857:78;22762:184;;;22651:304;22408:554;22977:18;;;;;;;;;;;;;;22311:690;;;;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;24561:171::-;24684:2;24657:15;:24;24673:7;24657:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24718:7;24714:2;24698:28;;24707:5;24698:28;;;;;;;;;;;;24561:171;;;:::o;22165:92::-;22216:7;22239:12;;22232:19;;22165:92;:::o;24801:258::-;24944:42;24963:7;24972;24981:4;24944:18;:42::i;:::-;24939:77;;25003:13;;;;;;;;;;;;;;24939:77;25025:28;25035:4;25041:2;25045:7;25025:9;:28::i;:::-;24801:258;;;;:::o;43170:105::-;43237:30;43248:4;43254:12;:10;:12::i;:::-;43237:10;:30::i;:::-;43170:105;:::o;47201:238::-;47285:22;47293:4;47299:7;47285;:22::i;:::-;47280:152;;47356:4;47324:6;:12;47331:4;47324:12;;;;;;;;;;;:20;;:29;47345:7;47324:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;47407:12;:10;:12::i;:::-;47380:40;;47398:7;47380:40;;47392:4;47380:40;;;;;;;;;;47280:152;47201:238;;:::o;47571:239::-;47655:22;47663:4;47669:7;47655;:22::i;:::-;47651:152;;;47726:5;47694:6;:12;47701:4;47694:12;;;;;;;;;;;:20;;:29;47715:7;47694:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;47778:12;:10;:12::i;:::-;47751:40;;47769:7;47751:40;;47763:4;47751:40;;;;;;;;;;47651:152;47571:239;;:::o;50317:317::-;50432:6;50407:21;:31;;50399:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:12;50504:9;:14;;50526:6;50504:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50485:52;;;50556:7;50548:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50388:246;50317:317;;:::o;25653:258::-;25782:4;25813:5;25802:16;;:7;:16;;;:59;;;;25854:7;25830:31;;:20;25842:7;25830:11;:20::i;:::-;:31;;;25802:59;:103;;;;25873:32;25890:5;25897:7;25873:16;:32::i;:::-;25802:103;25795:110;;25653:258;;;;;:::o;33565:139::-;;;;;:::o;34089:138::-;;;;;:::o;3330:191::-;3404:16;3423:6;;;;;;;;;;;3404:25;;3449:8;3440:6;;:17;;;;;;;;;;;;;;;;;;3504:8;3473:40;;3494:8;3473:40;;;;;;;;;;;;3393:128;3330:191;:::o;28551:147::-;28662:30;28668:2;28672:6;28680:5;28687:4;28662:5;:30::i;:::-;28551:147;;;:::o;26041:287::-;26174:8;26165:17;;:5;:17;;;26161:55;;;26191:25;;;;;;;;;;;;;;26161:55;26261:8;26223:18;:25;26242:5;26223:25;;;;;;;;;;;;;;;:35;26249:8;26223:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;26303:8;26281:41;;26296:5;26281:41;;;26313:8;26281:41;;;;;;:::i;:::-;;;;;;;;26041:287;;;:::o;25135:367::-;25277:49;25294:12;:10;:12::i;:::-;25308:4;25314:2;25318:7;25277:16;:49::i;:::-;25393:1;25376:2;:14;;;:18;:78;;;;;25406:48;25429:4;25435:2;25439:7;25448:5;25406:22;:48::i;:::-;25405:49;25376:78;25372:124;;;25469:27;;;;;;;;;;;;;;25372:124;25135:367;;;;:::o;10946:723::-;11002:13;11232:1;11223:5;:10;11219:53;;;11250:10;;;;;;;;;;;;;;;;;;;;;11219:53;11282:12;11297:5;11282:20;;11313:14;11338:78;11353:1;11345:4;:9;11338:78;;11371:8;;;;;:::i;:::-;;;;11402:2;11394:10;;;;;:::i;:::-;;;11338:78;;;11426:19;11458:6;11448:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11426:39;;11476:154;11492:1;11483:5;:10;11476:154;;11520:1;11510:11;;;;;:::i;:::-;;;11587:2;11579:5;:10;;;;:::i;:::-;11566:2;:24;;;;:::i;:::-;11553:39;;11536:6;11543;11536:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11616:2;11607:11;;;;;:::i;:::-;;;11476:154;;;11654:6;11640:21;;;;;10946:723;;;;:::o;23065:224::-;23172:4;23211:25;23196:40;;;:11;:40;;;;:87;;;;23247:36;23271:11;23247:23;:36::i;:::-;23196:87;23189:94;;23065:224;;;:::o;30522:129::-;30587:4;30617:1;30607:7;:11;:38;;;;;30633:12;;30622:7;:23;;30607:38;30600:45;;30522:129;;;:::o;32194:854::-;32333:1;32319:16;;:2;:16;;;:52;;;;32347:24;32363:7;32347:15;:24::i;:::-;32339:32;;:4;:32;;;;32319:52;32315:86;;;32388:13;;;;;;;;;;;;;;32315:86;32410:43;32432:4;32438:2;32442:7;32451:1;32410:21;:43::i;:::-;32514:35;32531:1;32535:7;32544:4;32514:8;:35::i;:::-;32653:1;32636:9;:13;32646:2;32636:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;32682:1;32663:9;:15;32673:4;32663:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;32711:2;32692:7;:16;32700:7;32692:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32785:19;32817:1;32807:7;:11;32785:33;;32846:12;;32831:11;:27;;:65;;;;;32894:1;32862:34;;:7;:20;32870:11;32862:20;;;;;;;;;;;;;;;;;;;;;:34;;;32831:65;32827:119;;;32932:4;32909:7;:20;32917:11;32909:20;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32827:119;32558:395;32961:42;32982:4;32988:2;32992:7;33001:1;32961:20;:42::i;:::-;33034:7;33030:2;33015:27;;33024:4;33015:27;;;;;;;;;;;;32194:854;;;:::o;43565:505::-;43654:22;43662:4;43668:7;43654;:22::i;:::-;43649:414;;43842:41;43870:7;43842:41;;43880:2;43842:19;:41::i;:::-;43956:38;43984:4;43976:13;;43991:2;43956:19;:38::i;:::-;43747:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43693:358;;;;;;;;;;;:::i;:::-;;;;;;;;43649:414;43565:505;;:::o;26692:1194::-;26824:1;26814:6;:11;:31;;;;26843:1;26829:16;;:2;:16;;;26814:31;26811:56;;;26854:13;;;;;;;;;;;;;;26811:56;26874:20;26912:1;26897:12;;:16;;;;:::i;:::-;26874:39;;26926:59;26956:1;26960:2;26964:12;26978:6;26926:21;:59::i;:::-;27033:6;27017:12;;:22;;;;;;;;;;;27065:6;27048:9;:13;27058:2;27048:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27104:2;27080:7;:21;27088:12;27080:21;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;27117:58;27146:1;27150:2;27154:12;27168:6;27117:20;:58::i;:::-;27186:20;27209:12;27186:35;;27230:16;27264:6;27249:12;:21;27230:40;;27409:9;:31;;;;;27439:1;27422:2;:14;;;:18;27409:31;27405:356;;;27502:233;27548:12;27544:2;27523:38;;27540:1;27523:38;;;;;;;;;;;;27579:61;27610:1;27614:2;27618:14;;;;;;27634:5;27579:22;:61::i;:::-;27574:115;;27662:27;;;;;;;;;;;;;;27574:115;27725:8;27709:12;:24;;27502:233;;27745:7;;;;;27405:356;27771:103;27815:14;;;;;;27811:2;27790:40;;27807:1;27790:40;;;;;;;;;;;;27864:8;27848:12;:24;;27771:103;;26998:883;;26804:1082;26692:1194;;;;;:::o;29662:558::-;29799:4;29832:2;29816:36;;;29861:12;:10;:12::i;:::-;29875:4;29881:7;29890:5;29816:86;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;29812:403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30061:1;30044:6;:13;:18;30040:168;;;30082:19;;;;;;;;;;;;;;30040:168;30180:6;30174:13;30165:6;30161:2;30157:15;30150:38;29812:403;29953:41;;;29943:51;;;:6;:51;;;;29936:58;;;29662:558;;;;;;:::o;20438:157::-;20523:4;20562:25;20547:40;;;:11;:40;;;;20540:47;;20438:157;;;:::o;12247:451::-;12322:13;12348:19;12393:1;12384:6;12380:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;12370:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12348:47;;12406:15;:6;12413:1;12406:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;12432;:6;12439:1;12432:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;12463:9;12488:1;12479:6;12475:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;12463:26;;12458:135;12495:1;12491;:5;12458:135;;;12530:12;12551:3;12543:5;:11;12530:25;;;;;;;:::i;:::-;;;;;12518:6;12525:1;12518:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;12580:1;12570:11;;;;;12498:3;;;;:::i;:::-;;;12458:135;;;;12620:1;12611:5;:10;12603:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;12683:6;12669:21;;;12247:451;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1176:::-;1249:8;1259:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:122;;1317:79;;:::i;:::-;1276:122;1430:6;1417:20;1407:30;;1460:18;1452:6;1449:30;1446:117;;;1482:79;;:::i;:::-;1446:117;1596:4;1588:6;1584:17;1572:29;;1650:3;1642:4;1634:6;1630:17;1620:8;1616:32;1613:41;1610:128;;;1657:79;;:::i;:::-;1610:128;1176:568;;;;;:::o;1750:133::-;1793:5;1831:6;1818:20;1809:29;;1847:30;1871:5;1847:30;:::i;:::-;1750:133;;;;:::o;1889:139::-;1935:5;1973:6;1960:20;1951:29;;1989:33;2016:5;1989:33;:::i;:::-;1889:139;;;;:::o;2034:137::-;2079:5;2117:6;2104:20;2095:29;;2133:32;2159:5;2133:32;:::i;:::-;2034:137;;;;:::o;2177:141::-;2233:5;2264:6;2258:13;2249:22;;2280:32;2306:5;2280:32;:::i;:::-;2177:141;;;;:::o;2337:338::-;2392:5;2441:3;2434:4;2426:6;2422:17;2418:27;2408:122;;2449:79;;:::i;:::-;2408:122;2566:6;2553:20;2591:78;2665:3;2657:6;2650:4;2642:6;2638:17;2591:78;:::i;:::-;2582:87;;2398:277;2337:338;;;;:::o;2695:553::-;2753:8;2763:6;2813:3;2806:4;2798:6;2794:17;2790:27;2780:122;;2821:79;;:::i;:::-;2780:122;2934:6;2921:20;2911:30;;2964:18;2956:6;2953:30;2950:117;;;2986:79;;:::i;:::-;2950:117;3100:4;3092:6;3088:17;3076:29;;3154:3;3146:4;3138:6;3134:17;3124:8;3120:32;3117:41;3114:128;;;3161:79;;:::i;:::-;3114:128;2695:553;;;;;:::o;3254:139::-;3300:5;3338:6;3325:20;3316:29;;3354:33;3381:5;3354:33;:::i;:::-;3254:139;;;;:::o;3399:329::-;3458:6;3507:2;3495:9;3486:7;3482:23;3478:32;3475:119;;;3513:79;;:::i;:::-;3475:119;3633:1;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3604:117;3399:329;;;;:::o;3734:474::-;3802:6;3810;3859:2;3847:9;3838:7;3834:23;3830:32;3827:119;;;3865:79;;:::i;:::-;3827:119;3985:1;4010:53;4055:7;4046:6;4035:9;4031:22;4010:53;:::i;:::-;4000:63;;3956:117;4112:2;4138:53;4183:7;4174:6;4163:9;4159:22;4138:53;:::i;:::-;4128:63;;4083:118;3734:474;;;;;:::o;4214:619::-;4291:6;4299;4307;4356:2;4344:9;4335:7;4331:23;4327:32;4324:119;;;4362:79;;:::i;:::-;4324:119;4482:1;4507:53;4552:7;4543:6;4532:9;4528:22;4507:53;:::i;:::-;4497:63;;4453:117;4609:2;4635:53;4680:7;4671:6;4660:9;4656:22;4635:53;:::i;:::-;4625:63;;4580:118;4737:2;4763:53;4808:7;4799:6;4788:9;4784:22;4763:53;:::i;:::-;4753:63;;4708:118;4214:619;;;;;:::o;4839:943::-;4934:6;4942;4950;4958;5007:3;4995:9;4986:7;4982:23;4978:33;4975:120;;;5014:79;;:::i;:::-;4975:120;5134:1;5159:53;5204:7;5195:6;5184:9;5180:22;5159:53;:::i;:::-;5149:63;;5105:117;5261:2;5287:53;5332:7;5323:6;5312:9;5308:22;5287:53;:::i;:::-;5277:63;;5232:118;5389:2;5415:53;5460:7;5451:6;5440:9;5436:22;5415:53;:::i;:::-;5405:63;;5360:118;5545:2;5534:9;5530:18;5517:32;5576:18;5568:6;5565:30;5562:117;;;5598:79;;:::i;:::-;5562:117;5703:62;5757:7;5748:6;5737:9;5733:22;5703:62;:::i;:::-;5693:72;;5488:287;4839:943;;;;;;;:::o;5788:468::-;5853:6;5861;5910:2;5898:9;5889:7;5885:23;5881:32;5878:119;;;5916:79;;:::i;:::-;5878:119;6036:1;6061:53;6106:7;6097:6;6086:9;6082:22;6061:53;:::i;:::-;6051:63;;6007:117;6163:2;6189:50;6231:7;6222:6;6211:9;6207:22;6189:50;:::i;:::-;6179:60;;6134:115;5788:468;;;;;:::o;6262:474::-;6330:6;6338;6387:2;6375:9;6366:7;6362:23;6358:32;6355:119;;;6393:79;;:::i;:::-;6355:119;6513:1;6538:53;6583:7;6574:6;6563:9;6559:22;6538:53;:::i;:::-;6528:63;;6484:117;6640:2;6666:53;6711:7;6702:6;6691:9;6687:22;6666:53;:::i;:::-;6656:63;;6611:118;6262:474;;;;;:::o;6742:934::-;6864:6;6872;6880;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:80;7328:7;7319:6;7308:9;7304:22;7256:80;:::i;:::-;7238:98;;;;7034:312;7413:2;7402:9;7398:18;7385:32;7444:18;7436:6;7433:30;7430:117;;;7466:79;;:::i;:::-;7430:117;7579:80;7651:7;7642:6;7631:9;7627:22;7579:80;:::i;:::-;7561:98;;;;7356:313;6742:934;;;;;;;:::o;7682:329::-;7741:6;7790:2;7778:9;7769:7;7765:23;7761:32;7758:119;;;7796:79;;:::i;:::-;7758:119;7916:1;7941:53;7986:7;7977:6;7966:9;7962:22;7941:53;:::i;:::-;7931:63;;7887:117;7682:329;;;;:::o;8017:474::-;8085:6;8093;8142:2;8130:9;8121:7;8117:23;8113:32;8110:119;;;8148:79;;:::i;:::-;8110:119;8268:1;8293:53;8338:7;8329:6;8318:9;8314:22;8293:53;:::i;:::-;8283:63;;8239:117;8395:2;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8366:118;8017:474;;;;;:::o;8497:327::-;8555:6;8604:2;8592:9;8583:7;8579:23;8575:32;8572:119;;;8610:79;;:::i;:::-;8572:119;8730:1;8755:52;8799:7;8790:6;8779:9;8775:22;8755:52;:::i;:::-;8745:62;;8701:116;8497:327;;;;:::o;8830:349::-;8899:6;8948:2;8936:9;8927:7;8923:23;8919:32;8916:119;;;8954:79;;:::i;:::-;8916:119;9074:1;9099:63;9154:7;9145:6;9134:9;9130:22;9099:63;:::i;:::-;9089:73;;9045:127;8830:349;;;;:::o;9185:529::-;9256:6;9264;9313:2;9301:9;9292:7;9288:23;9284:32;9281:119;;;9319:79;;:::i;:::-;9281:119;9467:1;9456:9;9452:17;9439:31;9497:18;9489:6;9486:30;9483:117;;;9519:79;;:::i;:::-;9483:117;9632:65;9689:7;9680:6;9669:9;9665:22;9632:65;:::i;:::-;9614:83;;;;9410:297;9185:529;;;;;:::o;9720:329::-;9779:6;9828:2;9816:9;9807:7;9803:23;9799:32;9796:119;;;9834:79;;:::i;:::-;9796:119;9954:1;9979:53;10024:7;10015:6;10004:9;10000:22;9979:53;:::i;:::-;9969:63;;9925:117;9720:329;;;;:::o;10055:118::-;10142:24;10160:5;10142:24;:::i;:::-;10137:3;10130:37;10055:118;;:::o;10179:109::-;10260:21;10275:5;10260:21;:::i;:::-;10255:3;10248:34;10179:109;;:::o;10294:118::-;10381:24;10399:5;10381:24;:::i;:::-;10376:3;10369:37;10294:118;;:::o;10418:360::-;10504:3;10532:38;10564:5;10532:38;:::i;:::-;10586:70;10649:6;10644:3;10586:70;:::i;:::-;10579:77;;10665:52;10710:6;10705:3;10698:4;10691:5;10687:16;10665:52;:::i;:::-;10742:29;10764:6;10742:29;:::i;:::-;10737:3;10733:39;10726:46;;10508:270;10418:360;;;;:::o;10784:364::-;10872:3;10900:39;10933:5;10900:39;:::i;:::-;10955:71;11019:6;11014:3;10955:71;:::i;:::-;10948:78;;11035:52;11080:6;11075:3;11068:4;11061:5;11057:16;11035:52;:::i;:::-;11112:29;11134:6;11112:29;:::i;:::-;11107:3;11103:39;11096:46;;10876:272;10784:364;;;;:::o;11154:377::-;11260:3;11288:39;11321:5;11288:39;:::i;:::-;11343:89;11425:6;11420:3;11343:89;:::i;:::-;11336:96;;11441:52;11486:6;11481:3;11474:4;11467:5;11463:16;11441:52;:::i;:::-;11518:6;11513:3;11509:16;11502:23;;11264:267;11154:377;;;;:::o;11561:845::-;11664:3;11701:5;11695:12;11730:36;11756:9;11730:36;:::i;:::-;11782:89;11864:6;11859:3;11782:89;:::i;:::-;11775:96;;11902:1;11891:9;11887:17;11918:1;11913:137;;;;12064:1;12059:341;;;;11880:520;;11913:137;11997:4;11993:9;11982;11978:25;11973:3;11966:38;12033:6;12028:3;12024:16;12017:23;;11913:137;;12059:341;12126:38;12158:5;12126:38;:::i;:::-;12186:1;12200:154;12214:6;12211:1;12208:13;12200:154;;;12288:7;12282:14;12278:1;12273:3;12269:11;12262:35;12338:1;12329:7;12325:15;12314:26;;12236:4;12233:1;12229:12;12224:17;;12200:154;;;12383:6;12378:3;12374:16;12367:23;;12066:334;;11880:520;;11668:738;;11561:845;;;;:::o;12412:366::-;12554:3;12575:67;12639:2;12634:3;12575:67;:::i;:::-;12568:74;;12651:93;12740:3;12651:93;:::i;:::-;12769:2;12764:3;12760:12;12753:19;;12412:366;;;:::o;12784:::-;12926:3;12947:67;13011:2;13006:3;12947:67;:::i;:::-;12940:74;;13023:93;13112:3;13023:93;:::i;:::-;13141:2;13136:3;13132:12;13125:19;;12784:366;;;:::o;13156:::-;13298:3;13319:67;13383:2;13378:3;13319:67;:::i;:::-;13312:74;;13395:93;13484:3;13395:93;:::i;:::-;13513:2;13508:3;13504:12;13497:19;;13156:366;;;:::o;13528:::-;13670:3;13691:67;13755:2;13750:3;13691:67;:::i;:::-;13684:74;;13767:93;13856:3;13767:93;:::i;:::-;13885:2;13880:3;13876:12;13869:19;;13528:366;;;:::o;13900:::-;14042:3;14063:67;14127:2;14122:3;14063:67;:::i;:::-;14056:74;;14139:93;14228:3;14139:93;:::i;:::-;14257:2;14252:3;14248:12;14241:19;;13900:366;;;:::o;14272:398::-;14431:3;14452:83;14533:1;14528:3;14452:83;:::i;:::-;14445:90;;14544:93;14633:3;14544:93;:::i;:::-;14662:1;14657:3;14653:11;14646:18;;14272:398;;;:::o;14676:402::-;14836:3;14857:85;14939:2;14934:3;14857:85;:::i;:::-;14850:92;;14951:93;15040:3;14951:93;:::i;:::-;15069:2;15064:3;15060:12;15053:19;;14676:402;;;:::o;15084:::-;15244:3;15265:85;15347:2;15342:3;15265:85;:::i;:::-;15258:92;;15359:93;15448:3;15359:93;:::i;:::-;15477:2;15472:3;15468:12;15461:19;;15084:402;;;:::o;15492:366::-;15634:3;15655:67;15719:2;15714:3;15655:67;:::i;:::-;15648:74;;15731:93;15820:3;15731:93;:::i;:::-;15849:2;15844:3;15840:12;15833:19;;15492:366;;;:::o;15864:118::-;15951:24;15969:5;15951:24;:::i;:::-;15946:3;15939:37;15864:118;;:::o;15988:583::-;16210:3;16232:92;16320:3;16311:6;16232:92;:::i;:::-;16225:99;;16341:95;16432:3;16423:6;16341:95;:::i;:::-;16334:102;;16453:92;16541:3;16532:6;16453:92;:::i;:::-;16446:99;;16562:3;16555:10;;15988:583;;;;;;:::o;16577:379::-;16761:3;16783:147;16926:3;16783:147;:::i;:::-;16776:154;;16947:3;16940:10;;16577:379;;;:::o;16962:967::-;17344:3;17366:148;17510:3;17366:148;:::i;:::-;17359:155;;17531:95;17622:3;17613:6;17531:95;:::i;:::-;17524:102;;17643:148;17787:3;17643:148;:::i;:::-;17636:155;;17808:95;17899:3;17890:6;17808:95;:::i;:::-;17801:102;;17920:3;17913:10;;16962:967;;;;;:::o;17935:222::-;18028:4;18066:2;18055:9;18051:18;18043:26;;18079:71;18147:1;18136:9;18132:17;18123:6;18079:71;:::i;:::-;17935:222;;;;:::o;18163:640::-;18358:4;18396:3;18385:9;18381:19;18373:27;;18410:71;18478:1;18467:9;18463:17;18454:6;18410:71;:::i;:::-;18491:72;18559:2;18548:9;18544:18;18535:6;18491:72;:::i;:::-;18573;18641:2;18630:9;18626:18;18617:6;18573:72;:::i;:::-;18692:9;18686:4;18682:20;18677:2;18666:9;18662:18;18655:48;18720:76;18791:4;18782:6;18720:76;:::i;:::-;18712:84;;18163:640;;;;;;;:::o;18809:210::-;18896:4;18934:2;18923:9;18919:18;18911:26;;18947:65;19009:1;18998:9;18994:17;18985:6;18947:65;:::i;:::-;18809:210;;;;:::o;19025:222::-;19118:4;19156:2;19145:9;19141:18;19133:26;;19169:71;19237:1;19226:9;19222:17;19213:6;19169:71;:::i;:::-;19025:222;;;;:::o;19253:313::-;19366:4;19404:2;19393:9;19389:18;19381:26;;19453:9;19447:4;19443:20;19439:1;19428:9;19424:17;19417:47;19481:78;19554:4;19545:6;19481:78;:::i;:::-;19473:86;;19253:313;;;;:::o;19572:419::-;19738:4;19776:2;19765:9;19761:18;19753:26;;19825:9;19819:4;19815:20;19811:1;19800:9;19796:17;19789:47;19853:131;19979:4;19853:131;:::i;:::-;19845:139;;19572:419;;;:::o;19997:::-;20163:4;20201:2;20190:9;20186:18;20178:26;;20250:9;20244:4;20240:20;20236:1;20225:9;20221:17;20214:47;20278:131;20404:4;20278:131;:::i;:::-;20270:139;;19997:419;;;:::o;20422:::-;20588:4;20626:2;20615:9;20611:18;20603:26;;20675:9;20669:4;20665:20;20661:1;20650:9;20646:17;20639:47;20703:131;20829:4;20703:131;:::i;:::-;20695:139;;20422:419;;;:::o;20847:::-;21013:4;21051:2;21040:9;21036:18;21028:26;;21100:9;21094:4;21090:20;21086:1;21075:9;21071:17;21064:47;21128:131;21254:4;21128:131;:::i;:::-;21120:139;;20847:419;;;:::o;21272:::-;21438:4;21476:2;21465:9;21461:18;21453:26;;21525:9;21519:4;21515:20;21511:1;21500:9;21496:17;21489:47;21553:131;21679:4;21553:131;:::i;:::-;21545:139;;21272:419;;;:::o;21697:::-;21863:4;21901:2;21890:9;21886:18;21878:26;;21950:9;21944:4;21940:20;21936:1;21925:9;21921:17;21914:47;21978:131;22104:4;21978:131;:::i;:::-;21970:139;;21697:419;;;:::o;22122:222::-;22215:4;22253:2;22242:9;22238:18;22230:26;;22266:71;22334:1;22323:9;22319:17;22310:6;22266:71;:::i;:::-;22122:222;;;;:::o;22350:129::-;22384:6;22411:20;;:::i;:::-;22401:30;;22440:33;22468:4;22460:6;22440:33;:::i;:::-;22350:129;;;:::o;22485:75::-;22518:6;22551:2;22545:9;22535:19;;22485:75;:::o;22566:307::-;22627:4;22717:18;22709:6;22706:30;22703:56;;;22739:18;;:::i;:::-;22703:56;22777:29;22799:6;22777:29;:::i;:::-;22769:37;;22861:4;22855;22851:15;22843:23;;22566:307;;;:::o;22879:141::-;22928:4;22951:3;22943:11;;22974:3;22971:1;22964:14;23008:4;23005:1;22995:18;22987:26;;22879:141;;;:::o;23026:98::-;23077:6;23111:5;23105:12;23095:22;;23026:98;;;:::o;23130:99::-;23182:6;23216:5;23210:12;23200:22;;23130:99;;;:::o;23235:168::-;23318:11;23352:6;23347:3;23340:19;23392:4;23387:3;23383:14;23368:29;;23235:168;;;;:::o;23409:147::-;23510:11;23547:3;23532:18;;23409:147;;;;:::o;23562:169::-;23646:11;23680:6;23675:3;23668:19;23720:4;23715:3;23711:14;23696:29;;23562:169;;;;:::o;23737:148::-;23839:11;23876:3;23861:18;;23737:148;;;;:::o;23891:305::-;23931:3;23950:20;23968:1;23950:20;:::i;:::-;23945:25;;23984:20;24002:1;23984:20;:::i;:::-;23979:25;;24138:1;24070:66;24066:74;24063:1;24060:81;24057:107;;;24144:18;;:::i;:::-;24057:107;24188:1;24185;24181:9;24174:16;;23891:305;;;;:::o;24202:185::-;24242:1;24259:20;24277:1;24259:20;:::i;:::-;24254:25;;24293:20;24311:1;24293:20;:::i;:::-;24288:25;;24332:1;24322:35;;24337:18;;:::i;:::-;24322:35;24379:1;24376;24372:9;24367:14;;24202:185;;;;:::o;24393:348::-;24433:7;24456:20;24474:1;24456:20;:::i;:::-;24451:25;;24490:20;24508:1;24490:20;:::i;:::-;24485:25;;24678:1;24610:66;24606:74;24603:1;24600:81;24595:1;24588:9;24581:17;24577:105;24574:131;;;24685:18;;:::i;:::-;24574:131;24733:1;24730;24726:9;24715:20;;24393:348;;;;:::o;24747:191::-;24787:4;24807:20;24825:1;24807:20;:::i;:::-;24802:25;;24841:20;24859:1;24841:20;:::i;:::-;24836:25;;24880:1;24877;24874:8;24871:34;;;24885:18;;:::i;:::-;24871:34;24930:1;24927;24923:9;24915:17;;24747:191;;;;:::o;24944:96::-;24981:7;25010:24;25028:5;25010:24;:::i;:::-;24999:35;;24944:96;;;:::o;25046:90::-;25080:7;25123:5;25116:13;25109:21;25098:32;;25046:90;;;:::o;25142:77::-;25179:7;25208:5;25197:16;;25142:77;;;:::o;25225:149::-;25261:7;25301:66;25294:5;25290:78;25279:89;;25225:149;;;:::o;25380:126::-;25417:7;25457:42;25450:5;25446:54;25435:65;;25380:126;;;:::o;25512:77::-;25549:7;25578:5;25567:16;;25512:77;;;:::o;25595:154::-;25679:6;25674:3;25669;25656:30;25741:1;25732:6;25727:3;25723:16;25716:27;25595:154;;;:::o;25755:307::-;25823:1;25833:113;25847:6;25844:1;25841:13;25833:113;;;25932:1;25927:3;25923:11;25917:18;25913:1;25908:3;25904:11;25897:39;25869:2;25866:1;25862:10;25857:15;;25833:113;;;25964:6;25961:1;25958:13;25955:101;;;26044:1;26035:6;26030:3;26026:16;26019:27;25955:101;25804:258;25755:307;;;:::o;26068:171::-;26107:3;26130:24;26148:5;26130:24;:::i;:::-;26121:33;;26176:4;26169:5;26166:15;26163:41;;;26184:18;;:::i;:::-;26163:41;26231:1;26224:5;26220:13;26213:20;;26068:171;;;:::o;26245:320::-;26289:6;26326:1;26320:4;26316:12;26306:22;;26373:1;26367:4;26363:12;26394:18;26384:81;;26450:4;26442:6;26438:17;26428:27;;26384:81;26512:2;26504:6;26501:14;26481:18;26478:38;26475:84;;;26531:18;;:::i;:::-;26475:84;26296:269;26245:320;;;:::o;26571:281::-;26654:27;26676:4;26654:27;:::i;:::-;26646:6;26642:40;26784:6;26772:10;26769:22;26748:18;26736:10;26733:34;26730:62;26727:88;;;26795:18;;:::i;:::-;26727:88;26835:10;26831:2;26824:22;26614:238;26571:281;;:::o;26858:233::-;26897:3;26920:24;26938:5;26920:24;:::i;:::-;26911:33;;26966:66;26959:5;26956:77;26953:103;;;27036:18;;:::i;:::-;26953:103;27083:1;27076:5;27072:13;27065:20;;26858:233;;;:::o;27097:176::-;27129:1;27146:20;27164:1;27146:20;:::i;:::-;27141:25;;27180:20;27198:1;27180:20;:::i;:::-;27175:25;;27219:1;27209:35;;27224:18;;:::i;:::-;27209:35;27265:1;27262;27258:9;27253:14;;27097:176;;;;:::o;27279:180::-;27327:77;27324:1;27317:88;27424:4;27421:1;27414:15;27448:4;27445:1;27438:15;27465:180;27513:77;27510:1;27503:88;27610:4;27607:1;27600:15;27634:4;27631:1;27624:15;27651:180;27699:77;27696:1;27689:88;27796:4;27793:1;27786:15;27820:4;27817:1;27810:15;27837:180;27885:77;27882:1;27875:88;27982:4;27979:1;27972:15;28006:4;28003:1;27996:15;28023:180;28071:77;28068:1;28061:88;28168:4;28165:1;28158:15;28192:4;28189:1;28182:15;28209:117;28318:1;28315;28308:12;28332:117;28441:1;28438;28431:12;28455:117;28564:1;28561;28554:12;28578:117;28687:1;28684;28677:12;28701:117;28810:1;28807;28800:12;28824:117;28933:1;28930;28923:12;28947:102;28988:6;29039:2;29035:7;29030:2;29023:5;29019:14;29015:28;29005:38;;28947:102;;;:::o;29055:182::-;29195:34;29191:1;29183:6;29179:14;29172:58;29055:182;:::o;29243:225::-;29383:34;29379:1;29371:6;29367:14;29360:58;29452:8;29447:2;29439:6;29435:15;29428:33;29243:225;:::o;29474:245::-;29614:34;29610:1;29602:6;29598:14;29591:58;29683:28;29678:2;29670:6;29666:15;29659:53;29474:245;:::o;29725:179::-;29865:31;29861:1;29853:6;29849:14;29842:55;29725:179;:::o;29910:182::-;30050:34;30046:1;30038:6;30034:14;30027:58;29910:182;:::o;30098:114::-;;:::o;30218:173::-;30358:25;30354:1;30346:6;30342:14;30335:49;30218:173;:::o;30397:167::-;30537:19;30533:1;30525:6;30521:14;30514:43;30397:167;:::o;30570:234::-;30710:34;30706:1;30698:6;30694:14;30687:58;30779:17;30774:2;30766:6;30762:15;30755:42;30570:234;:::o;30810:122::-;30883:24;30901:5;30883:24;:::i;:::-;30876:5;30873:35;30863:63;;30922:1;30919;30912:12;30863:63;30810:122;:::o;30938:116::-;31008:21;31023:5;31008:21;:::i;:::-;31001:5;30998:32;30988:60;;31044:1;31041;31034:12;30988:60;30938:116;:::o;31060:122::-;31133:24;31151:5;31133:24;:::i;:::-;31126:5;31123:35;31113:63;;31172:1;31169;31162:12;31113:63;31060:122;:::o;31188:120::-;31260:23;31277:5;31260:23;:::i;:::-;31253:5;31250:34;31240:62;;31298:1;31295;31288:12;31240:62;31188:120;:::o;31314:122::-;31387:24;31405:5;31387:24;:::i;:::-;31380:5;31377:35;31367:63;;31426:1;31423;31416:12;31367:63;31314:122;:::o
Swarm Source
ipfs://a6296fa81218a193dfe647784daf4ee29e952f3ab2cc2fd87c6f50e85b8342a6
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.