ETH Price: $2,414.41 (-0.79%)

Token

We are alam (WAA)
 

Overview

Max Total Supply

1,500 WAA

Holders

496

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WAA
0xfc648f8e19282d8336fc5923e1d73fbb77630dd1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
wearealam

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

/**
 *Submitted for verification at Etherscan.io on
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol

// 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/Ownable.sol

// 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: erc721a/contracts/IERC721A.sol

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(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 {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: nft.sol


pragma solidity ^0.8.7;


contract wearealam is Ownable, ERC721A {
    uint256 public maxSupply                    = 1500;
    uint256 public maxFreeSupply                = 600;
    
    uint256 public maxPerTxDuringMint           = 20;
    uint256 public maxPerAddressDuringMint      = 60;
    uint256 public maxPerAddressDuringFreeMint  = 2;
    
    uint256 public price                        = 0.002 ether;
    bool    public saleIsActive                 = false;

    address constant internal TEAM_ADDRESS = 0x340d092a590638A2DF356191b7c925f5aa558e03;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("We are alam", "WAA") {
        _safeMint(msg.sender, 20);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"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":[{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"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":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526105dc600955610258600a556014600b55603c600c556002600d5566071afd498d0000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600b81526020017f57652061726520616c616d0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5741410000000000000000000000000000000000000000000000000000000000815250620000df620000d36200014260201b60201c565b6200014a60201b60201c565b8160039080519060200190620000f7929190620006b9565b50806004908051906020019062000110929190620006b9565b50620001216200020e60201b60201c565b60018190555050506200013c3360146200021360201b60201c565b620009ba565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002358282604051806020016040528060008152506200023960201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620002e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002f960008583866200051f60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000366600185146200052560201b60201c565b901b60a042901b6200037e866200052f60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200048f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200043b60008784806001019550876200053960201b60201c565b62000472576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003c45782600154146200048957600080fd5b620004fb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000490575b816001819055505050620005196000858386620006ab60201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000567620006b160201b60201c565b8786866040518563ffffffff1660e01b81526004016200058b949392919062000815565b602060405180830381600087803b158015620005a657600080fd5b505af1925050508015620005da57506040513d601f19601f82011682018060405250810190620005d7919062000780565b60015b62000658573d80600081146200060d576040519150601f19603f3d011682016040523d82523d6000602084013e62000612565b606091505b5060008151141562000650576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006c79062000925565b90600052602060002090601f016020900481019282620006eb576000855562000737565b82601f106200070657805160ff191683800117855562000737565b8280016001018555821562000737579182015b828111156200073657825182559160200191906001019062000719565b5b5090506200074691906200074a565b5090565b5b80821115620007655760008160009055506001016200074b565b5090565b6000815190506200077a81620009a0565b92915050565b6000602082840312156200079957620007986200098a565b5b6000620007a98482850162000769565b91505092915050565b620007bd8162000885565b82525050565b6000620007d08262000869565b620007dc818562000874565b9350620007ee818560208601620008ef565b620007f9816200098f565b840191505092915050565b6200080f81620008e5565b82525050565b60006080820190506200082c6000830187620007b2565b6200083b6020830186620007b2565b6200084a604083018562000804565b81810360608301526200085e8184620007c3565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b60006200089282620008c5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200090f578082015181840152602081019050620008f2565b838111156200091f576000848401525b50505050565b600060028204905060018216806200093e57607f821691505b602082108114156200095557620009546200095b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b620009ab8162000899565b8114620009b757600080fd5b50565b61376080620009ca6000396000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612b07565b61083e565b6040516102489190612f12565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612f2d565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612bae565b610962565b6040516102b09190612eab565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612ac7565b6109de565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612bae565b610b85565b005b34801561031757600080fd5b50610320610c74565b60405161032d91906130cf565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906129b1565b610c8b565b005b34801561036b57600080fd5b50610374610c9b565b60405161038191906130cf565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129b1565b610ca1565b005b3480156103bf57600080fd5b506103c8610cc1565b6040516103d591906130cf565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612b61565b610cc7565b005b61040f610d59565b005b34801561041d57600080fd5b5061043860048036038101906104339190612bae565b610e98565b6040516104459190612eab565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612944565b610eaa565b60405161048291906130cf565b60405180910390f35b34801561049757600080fd5b506104a0610f63565b005b3480156104ae57600080fd5b506104b7610feb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612bae565b611093565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612bae565b611119565b005b34801561051757600080fd5b5061052061131e565b60405161052d91906130cf565b60405180910390f35b34801561054257600080fd5b5061054b611324565b6040516105589190612eab565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612bae565b61134d565b005b34801561059657600080fd5b5061059f6113d3565b6040516105ac9190612f2d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612944565b611465565b6040516105e991906130cf565b60405180910390f35b3480156105fe57600080fd5b5061060761147d565b60405161061491906130cf565b60405180910390f35b61063760048036038101906106329190612bae565b611483565b005b34801561064557600080fd5b50610660600480360381019061065b9190612a87565b611729565b005b34801561066e57600080fd5b5061068960048036038101906106849190612a04565b6118a1565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612bae565b611914565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612bae565b61199a565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612bae565b611a20565b6040516107119190612f2d565b60405180910390f35b34801561072657600080fd5b5061072f611abf565b60405161073c91906130cf565b60405180910390f35b34801561075157600080fd5b5061075a611ac5565b60405161076791906130cf565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612971565b611acb565b6040516107a49190612f12565b60405180910390f35b3480156107b957600080fd5b506107c2611b5f565b6040516107cf9190612f12565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612944565b611b72565b005b34801561080d57600080fd5b5061082860048036038101906108239190612944565b611c6a565b60405161083591906130cf565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90613328565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90613328565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c82565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611ce1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611daf565b73ffffffffffffffffffffffffffffffffffffffff1614610ad357610a9c81610a97611daf565b611acb565b610ad2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8d611db7565b73ffffffffffffffffffffffffffffffffffffffff16610bab611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906130af565b60405180910390fd5b610c09610c74565b81600954610c17919061323e565b1015610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061302f565b60405180910390fd5b8060096000828254610c6a919061323e565b9250508190555050565b6000610c7e611dbf565b6002546001540303905090565b610c96838383611dc4565b505050565b600d5481565b610cbc838383604051806020016040528060008152506118a1565b505050565b600a5481565b610ccf611db7565b73ffffffffffffffffffffffffffffffffffffffff16610ced611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906130af565b60405180910390fd5b818160109190610d54929190612772565b505050565b610d61611db7565b73ffffffffffffffffffffffffffffffffffffffff16610d7f611324565b73ffffffffffffffffffffffffffffffffffffffff1614610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906130af565b60405180910390fd5b600073340d092a590638a2df356191b7c925f5aa558e0373ffffffffffffffffffffffffffffffffffffffff1647604051610e0f90612e96565b60006040518083038185875af1925050503d8060008114610e4c576040519150601f19603f3d011682016040523d82523d6000602084013e610e51565b606091505b5050905080610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c9061304f565b60405180910390fd5b50565b6000610ea382611ce1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f6b611db7565b73ffffffffffffffffffffffffffffffffffffffff16610f89611324565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906130af565b60405180910390fd5b610fe9600061216e565b565b610ff3611db7565b73ffffffffffffffffffffffffffffffffffffffff16611011611324565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906130af565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61109b611db7565b73ffffffffffffffffffffffffffffffffffffffff166110b9611324565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906130af565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612f8f565b60405180910390fd5b806111df610c74565b6111e9919061318e565b600a54101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612f6f565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611280919061318e565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890612faf565b60405180910390fd5b81816112cd919061318e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131a3383612232565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611db7565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906130af565b60405180910390fd5b80600e8190555050565b6060600480546113e290613328565b80601f016020809104026020016040519081016040528092919081815260200182805461140e90613328565b801561145b5780601f106114305761010080835404028352916020019161145b565b820191906000526020600020905b81548152906001019060200180831161143e57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790612f8f565b60405180910390fd5b80600e5461154e91906131e4565b341015611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115879061308f565b60405180910390fd5b80611599610c74565b6115a3919061318e565b60095410156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90612fef565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c54828261163a919061318e565b111561167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061300f565b60405180910390fd5b60008211801561168d5750600b548211155b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c39061306f565b60405180910390fd5b81816116d8919061318e565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117253383612232565b5050565b611731611daf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a3611daf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611850611daf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118959190612f12565b60405180910390a35050565b6118ac848484611dc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190e576118d784848484612250565b61190d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61191c611db7565b73ffffffffffffffffffffffffffffffffffffffff1661193a611324565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906130af565b60405180910390fd5b80600d8190555050565b6119a2611db7565b73ffffffffffffffffffffffffffffffffffffffff166119c0611324565b73ffffffffffffffffffffffffffffffffffffffff1614611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d906130af565b60405180910390fd5b80600b8190555050565b6060611a2b82611c82565b611a61576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a6b6123b0565b9050600081511415611a8c5760405180602001604052806000815250611ab7565b80611a9684612442565b604051602001611aa7929190612e72565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b7a611db7565b73ffffffffffffffffffffffffffffffffffffffff16611b98611324565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906130af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612f4f565b60405180910390fd5b611c678161216e565b50565b60126020528060005260406000206000915090505481565b600081611c8d611dbf565b11158015611c9c575060015482105b8015611cda575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611cf0611dbf565b11611d7857600154811015611d775760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d75575b6000811415611d6b576005600083600190039350838152602001908152602001600020549050611d40565b8092505050611daa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dcf82611ce1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e57611daf565b73ffffffffffffffffffffffffffffffffffffffff161480611e865750611e8585611e80611daf565b611acb565b5b80611ecb5750611e94611daf565b73ffffffffffffffffffffffffffffffffffffffff16611eb384610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f78858585600161249c565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612075866124a2565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156120ff5760006001840190506000600560008381526020019081526020016000205414156120fd5760015481146120fc578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216785858560016124ac565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61224c8282604051806020016040528060008152506124b2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612276611daf565b8786866040518563ffffffff1660e01b81526004016122989493929190612ec6565b602060405180830381600087803b1580156122b257600080fd5b505af19250505080156122e357506040513d601f19601f820116820180604052508101906122e09190612b34565b60015b61235d573d8060008114612313576040519150601f19603f3d011682016040523d82523d6000602084013e612318565b606091505b50600081511415612355576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123bf90613328565b80601f01602080910402602001604051908101604052809291908181526020018280546123eb90613328565b80156124385780601f1061240d57610100808354040283529160200191612438565b820191906000526020600020905b81548152906001019060200180831161241b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561248857600183039250600a81066030018353600a81049050612468565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612520576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561255b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612568600085838661249c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125cd60018514612768565b901b60a042901b6125dd866124a2565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126e1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126916000878480600101955087612250565b6126c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126225782600154146126dc57600080fd5b61274c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126e2575b81600181905550505061276260008583866124ac565b50505050565b6000819050919050565b82805461277e90613328565b90600052602060002090601f0160209004810192826127a057600085556127e7565b82601f106127b957803560ff19168380011785556127e7565b828001600101855582156127e7579182015b828111156127e65782358255916020019190600101906127cb565b5b5090506127f491906127f8565b5090565b5b808211156128115760008160009055506001016127f9565b5090565b60006128286128238461310f565b6130ea565b90508281526020810184848401111561284457612843613427565b5b61284f8482856132e6565b509392505050565b600081359050612866816136ce565b92915050565b60008135905061287b816136e5565b92915050565b600081359050612890816136fc565b92915050565b6000815190506128a5816136fc565b92915050565b600082601f8301126128c0576128bf61341d565b5b81356128d0848260208601612815565b91505092915050565b60008083601f8401126128ef576128ee61341d565b5b8235905067ffffffffffffffff81111561290c5761290b613418565b5b60208301915083600182028301111561292857612927613422565b5b9250929050565b60008135905061293e81613713565b92915050565b60006020828403121561295a57612959613431565b5b600061296884828501612857565b91505092915050565b6000806040838503121561298857612987613431565b5b600061299685828601612857565b92505060206129a785828601612857565b9150509250929050565b6000806000606084860312156129ca576129c9613431565b5b60006129d886828701612857565b93505060206129e986828701612857565b92505060406129fa8682870161292f565b9150509250925092565b60008060008060808587031215612a1e57612a1d613431565b5b6000612a2c87828801612857565b9450506020612a3d87828801612857565b9350506040612a4e8782880161292f565b925050606085013567ffffffffffffffff811115612a6f57612a6e61342c565b5b612a7b878288016128ab565b91505092959194509250565b60008060408385031215612a9e57612a9d613431565b5b6000612aac85828601612857565b9250506020612abd8582860161286c565b9150509250929050565b60008060408385031215612ade57612add613431565b5b6000612aec85828601612857565b9250506020612afd8582860161292f565b9150509250929050565b600060208284031215612b1d57612b1c613431565b5b6000612b2b84828501612881565b91505092915050565b600060208284031215612b4a57612b49613431565b5b6000612b5884828501612896565b91505092915050565b60008060208385031215612b7857612b77613431565b5b600083013567ffffffffffffffff811115612b9657612b9561342c565b5b612ba2858286016128d9565b92509250509250929050565b600060208284031215612bc457612bc3613431565b5b6000612bd28482850161292f565b91505092915050565b612be481613272565b82525050565b612bf381613284565b82525050565b6000612c0482613140565b612c0e8185613156565b9350612c1e8185602086016132f5565b612c2781613436565b840191505092915050565b6000612c3d8261314b565b612c478185613172565b9350612c578185602086016132f5565b612c6081613436565b840191505092915050565b6000612c768261314b565b612c808185613183565b9350612c908185602086016132f5565b80840191505092915050565b6000612ca9602683613172565b9150612cb482613447565b604082019050919050565b6000612ccc601d83613172565b9150612cd782613496565b602082019050919050565b6000612cef601c83613172565b9150612cfa826134bf565b602082019050919050565b6000612d12602883613172565b9150612d1d826134e8565b604082019050919050565b6000612d35601783613172565b9150612d4082613537565b602082019050919050565b6000612d58601883613172565b9150612d6382613560565b602082019050919050565b6000612d7b602383613172565b9150612d8682613589565b604082019050919050565b6000612d9e602783613172565b9150612da9826135d8565b604082019050919050565b6000612dc1601083613172565b9150612dcc82613627565b602082019050919050565b6000612de4601483613172565b9150612def82613650565b602082019050919050565b6000612e07601783613172565b9150612e1282613679565b602082019050919050565b6000612e2a602083613172565b9150612e35826136a2565b602082019050919050565b6000612e4d600083613167565b9150612e58826136cb565b600082019050919050565b612e6c816132dc565b82525050565b6000612e7e8285612c6b565b9150612e8a8284612c6b565b91508190509392505050565b6000612ea182612e40565b9150819050919050565b6000602082019050612ec06000830184612bdb565b92915050565b6000608082019050612edb6000830187612bdb565b612ee86020830186612bdb565b612ef56040830185612e63565b8181036060830152612f078184612bf9565b905095945050505050565b6000602082019050612f276000830184612bea565b92915050565b60006020820190508181036000830152612f478184612c32565b905092915050565b60006020820190508181036000830152612f6881612c9c565b9050919050565b60006020820190508181036000830152612f8881612cbf565b9050919050565b60006020820190508181036000830152612fa881612ce2565b9050919050565b60006020820190508181036000830152612fc881612d05565b9050919050565b60006020820190508181036000830152612fe881612d28565b9050919050565b6000602082019050818103600083015261300881612d4b565b9050919050565b6000602082019050818103600083015261302881612d6e565b9050919050565b6000602082019050818103600083015261304881612d91565b9050919050565b6000602082019050818103600083015261306881612db4565b9050919050565b6000602082019050818103600083015261308881612dd7565b9050919050565b600060208201905081810360008301526130a881612dfa565b9050919050565b600060208201905081810360008301526130c881612e1d565b9050919050565b60006020820190506130e46000830184612e63565b92915050565b60006130f4613105565b9050613100828261335a565b919050565b6000604051905090565b600067ffffffffffffffff82111561312a576131296133e9565b5b61313382613436565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613199826132dc565b91506131a4836132dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d9576131d861338b565b5b828201905092915050565b60006131ef826132dc565b91506131fa836132dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132335761323261338b565b5b828202905092915050565b6000613249826132dc565b9150613254836132dc565b9250828210156132675761326661338b565b5b828203905092915050565b600061327d826132bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133135780820151818401526020810190506132f8565b83811115613322576000848401525b50505050565b6000600282049050600182168061334057607f821691505b60208210811415613354576133536133ba565b5b50919050565b61336382613436565b810181811067ffffffffffffffff82111715613382576133816133e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136d781613272565b81146136e257600080fd5b50565b6136ee81613284565b81146136f957600080fd5b50565b61370581613290565b811461371057600080fd5b50565b61371c816132dc565b811461372757600080fd5b5056fea264697066735822122056d3580f2c082f1b4089b885deb75660d0d966a87dc904b144f216b01f30203164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612b07565b61083e565b6040516102489190612f12565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612f2d565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612bae565b610962565b6040516102b09190612eab565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612ac7565b6109de565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612bae565b610b85565b005b34801561031757600080fd5b50610320610c74565b60405161032d91906130cf565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906129b1565b610c8b565b005b34801561036b57600080fd5b50610374610c9b565b60405161038191906130cf565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129b1565b610ca1565b005b3480156103bf57600080fd5b506103c8610cc1565b6040516103d591906130cf565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612b61565b610cc7565b005b61040f610d59565b005b34801561041d57600080fd5b5061043860048036038101906104339190612bae565b610e98565b6040516104459190612eab565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612944565b610eaa565b60405161048291906130cf565b60405180910390f35b34801561049757600080fd5b506104a0610f63565b005b3480156104ae57600080fd5b506104b7610feb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612bae565b611093565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612bae565b611119565b005b34801561051757600080fd5b5061052061131e565b60405161052d91906130cf565b60405180910390f35b34801561054257600080fd5b5061054b611324565b6040516105589190612eab565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612bae565b61134d565b005b34801561059657600080fd5b5061059f6113d3565b6040516105ac9190612f2d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612944565b611465565b6040516105e991906130cf565b60405180910390f35b3480156105fe57600080fd5b5061060761147d565b60405161061491906130cf565b60405180910390f35b61063760048036038101906106329190612bae565b611483565b005b34801561064557600080fd5b50610660600480360381019061065b9190612a87565b611729565b005b34801561066e57600080fd5b5061068960048036038101906106849190612a04565b6118a1565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612bae565b611914565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612bae565b61199a565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612bae565b611a20565b6040516107119190612f2d565b60405180910390f35b34801561072657600080fd5b5061072f611abf565b60405161073c91906130cf565b60405180910390f35b34801561075157600080fd5b5061075a611ac5565b60405161076791906130cf565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612971565b611acb565b6040516107a49190612f12565b60405180910390f35b3480156107b957600080fd5b506107c2611b5f565b6040516107cf9190612f12565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612944565b611b72565b005b34801561080d57600080fd5b5061082860048036038101906108239190612944565b611c6a565b60405161083591906130cf565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90613328565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90613328565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c82565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611ce1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611daf565b73ffffffffffffffffffffffffffffffffffffffff1614610ad357610a9c81610a97611daf565b611acb565b610ad2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8d611db7565b73ffffffffffffffffffffffffffffffffffffffff16610bab611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906130af565b60405180910390fd5b610c09610c74565b81600954610c17919061323e565b1015610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061302f565b60405180910390fd5b8060096000828254610c6a919061323e565b9250508190555050565b6000610c7e611dbf565b6002546001540303905090565b610c96838383611dc4565b505050565b600d5481565b610cbc838383604051806020016040528060008152506118a1565b505050565b600a5481565b610ccf611db7565b73ffffffffffffffffffffffffffffffffffffffff16610ced611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906130af565b60405180910390fd5b818160109190610d54929190612772565b505050565b610d61611db7565b73ffffffffffffffffffffffffffffffffffffffff16610d7f611324565b73ffffffffffffffffffffffffffffffffffffffff1614610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906130af565b60405180910390fd5b600073340d092a590638a2df356191b7c925f5aa558e0373ffffffffffffffffffffffffffffffffffffffff1647604051610e0f90612e96565b60006040518083038185875af1925050503d8060008114610e4c576040519150601f19603f3d011682016040523d82523d6000602084013e610e51565b606091505b5050905080610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c9061304f565b60405180910390fd5b50565b6000610ea382611ce1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f6b611db7565b73ffffffffffffffffffffffffffffffffffffffff16610f89611324565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906130af565b60405180910390fd5b610fe9600061216e565b565b610ff3611db7565b73ffffffffffffffffffffffffffffffffffffffff16611011611324565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906130af565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61109b611db7565b73ffffffffffffffffffffffffffffffffffffffff166110b9611324565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906130af565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612f8f565b60405180910390fd5b806111df610c74565b6111e9919061318e565b600a54101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612f6f565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611280919061318e565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890612faf565b60405180910390fd5b81816112cd919061318e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131a3383612232565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611db7565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906130af565b60405180910390fd5b80600e8190555050565b6060600480546113e290613328565b80601f016020809104026020016040519081016040528092919081815260200182805461140e90613328565b801561145b5780601f106114305761010080835404028352916020019161145b565b820191906000526020600020905b81548152906001019060200180831161143e57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790612f8f565b60405180910390fd5b80600e5461154e91906131e4565b341015611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115879061308f565b60405180910390fd5b80611599610c74565b6115a3919061318e565b60095410156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90612fef565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c54828261163a919061318e565b111561167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061300f565b60405180910390fd5b60008211801561168d5750600b548211155b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c39061306f565b60405180910390fd5b81816116d8919061318e565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117253383612232565b5050565b611731611daf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a3611daf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611850611daf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118959190612f12565b60405180910390a35050565b6118ac848484611dc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190e576118d784848484612250565b61190d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61191c611db7565b73ffffffffffffffffffffffffffffffffffffffff1661193a611324565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906130af565b60405180910390fd5b80600d8190555050565b6119a2611db7565b73ffffffffffffffffffffffffffffffffffffffff166119c0611324565b73ffffffffffffffffffffffffffffffffffffffff1614611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d906130af565b60405180910390fd5b80600b8190555050565b6060611a2b82611c82565b611a61576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a6b6123b0565b9050600081511415611a8c5760405180602001604052806000815250611ab7565b80611a9684612442565b604051602001611aa7929190612e72565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b7a611db7565b73ffffffffffffffffffffffffffffffffffffffff16611b98611324565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906130af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612f4f565b60405180910390fd5b611c678161216e565b50565b60126020528060005260406000206000915090505481565b600081611c8d611dbf565b11158015611c9c575060015482105b8015611cda575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611cf0611dbf565b11611d7857600154811015611d775760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d75575b6000811415611d6b576005600083600190039350838152602001908152602001600020549050611d40565b8092505050611daa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dcf82611ce1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e57611daf565b73ffffffffffffffffffffffffffffffffffffffff161480611e865750611e8585611e80611daf565b611acb565b5b80611ecb5750611e94611daf565b73ffffffffffffffffffffffffffffffffffffffff16611eb384610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f78858585600161249c565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612075866124a2565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156120ff5760006001840190506000600560008381526020019081526020016000205414156120fd5760015481146120fc578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216785858560016124ac565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61224c8282604051806020016040528060008152506124b2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612276611daf565b8786866040518563ffffffff1660e01b81526004016122989493929190612ec6565b602060405180830381600087803b1580156122b257600080fd5b505af19250505080156122e357506040513d601f19601f820116820180604052508101906122e09190612b34565b60015b61235d573d8060008114612313576040519150601f19603f3d011682016040523d82523d6000602084013e612318565b606091505b50600081511415612355576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123bf90613328565b80601f01602080910402602001604051908101604052809291908181526020018280546123eb90613328565b80156124385780601f1061240d57610100808354040283529160200191612438565b820191906000526020600020905b81548152906001019060200180831161241b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561248857600183039250600a81066030018353600a81049050612468565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612520576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561255b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612568600085838661249c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125cd60018514612768565b901b60a042901b6125dd866124a2565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126e1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126916000878480600101955087612250565b6126c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126225782600154146126dc57600080fd5b61274c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126e2575b81600181905550505061276260008583866124ac565b50505050565b6000819050919050565b82805461277e90613328565b90600052602060002090601f0160209004810192826127a057600085556127e7565b82601f106127b957803560ff19168380011785556127e7565b828001600101855582156127e7579182015b828111156127e65782358255916020019190600101906127cb565b5b5090506127f491906127f8565b5090565b5b808211156128115760008160009055506001016127f9565b5090565b60006128286128238461310f565b6130ea565b90508281526020810184848401111561284457612843613427565b5b61284f8482856132e6565b509392505050565b600081359050612866816136ce565b92915050565b60008135905061287b816136e5565b92915050565b600081359050612890816136fc565b92915050565b6000815190506128a5816136fc565b92915050565b600082601f8301126128c0576128bf61341d565b5b81356128d0848260208601612815565b91505092915050565b60008083601f8401126128ef576128ee61341d565b5b8235905067ffffffffffffffff81111561290c5761290b613418565b5b60208301915083600182028301111561292857612927613422565b5b9250929050565b60008135905061293e81613713565b92915050565b60006020828403121561295a57612959613431565b5b600061296884828501612857565b91505092915050565b6000806040838503121561298857612987613431565b5b600061299685828601612857565b92505060206129a785828601612857565b9150509250929050565b6000806000606084860312156129ca576129c9613431565b5b60006129d886828701612857565b93505060206129e986828701612857565b92505060406129fa8682870161292f565b9150509250925092565b60008060008060808587031215612a1e57612a1d613431565b5b6000612a2c87828801612857565b9450506020612a3d87828801612857565b9350506040612a4e8782880161292f565b925050606085013567ffffffffffffffff811115612a6f57612a6e61342c565b5b612a7b878288016128ab565b91505092959194509250565b60008060408385031215612a9e57612a9d613431565b5b6000612aac85828601612857565b9250506020612abd8582860161286c565b9150509250929050565b60008060408385031215612ade57612add613431565b5b6000612aec85828601612857565b9250506020612afd8582860161292f565b9150509250929050565b600060208284031215612b1d57612b1c613431565b5b6000612b2b84828501612881565b91505092915050565b600060208284031215612b4a57612b49613431565b5b6000612b5884828501612896565b91505092915050565b60008060208385031215612b7857612b77613431565b5b600083013567ffffffffffffffff811115612b9657612b9561342c565b5b612ba2858286016128d9565b92509250509250929050565b600060208284031215612bc457612bc3613431565b5b6000612bd28482850161292f565b91505092915050565b612be481613272565b82525050565b612bf381613284565b82525050565b6000612c0482613140565b612c0e8185613156565b9350612c1e8185602086016132f5565b612c2781613436565b840191505092915050565b6000612c3d8261314b565b612c478185613172565b9350612c578185602086016132f5565b612c6081613436565b840191505092915050565b6000612c768261314b565b612c808185613183565b9350612c908185602086016132f5565b80840191505092915050565b6000612ca9602683613172565b9150612cb482613447565b604082019050919050565b6000612ccc601d83613172565b9150612cd782613496565b602082019050919050565b6000612cef601c83613172565b9150612cfa826134bf565b602082019050919050565b6000612d12602883613172565b9150612d1d826134e8565b604082019050919050565b6000612d35601783613172565b9150612d4082613537565b602082019050919050565b6000612d58601883613172565b9150612d6382613560565b602082019050919050565b6000612d7b602383613172565b9150612d8682613589565b604082019050919050565b6000612d9e602783613172565b9150612da9826135d8565b604082019050919050565b6000612dc1601083613172565b9150612dcc82613627565b602082019050919050565b6000612de4601483613172565b9150612def82613650565b602082019050919050565b6000612e07601783613172565b9150612e1282613679565b602082019050919050565b6000612e2a602083613172565b9150612e35826136a2565b602082019050919050565b6000612e4d600083613167565b9150612e58826136cb565b600082019050919050565b612e6c816132dc565b82525050565b6000612e7e8285612c6b565b9150612e8a8284612c6b565b91508190509392505050565b6000612ea182612e40565b9150819050919050565b6000602082019050612ec06000830184612bdb565b92915050565b6000608082019050612edb6000830187612bdb565b612ee86020830186612bdb565b612ef56040830185612e63565b8181036060830152612f078184612bf9565b905095945050505050565b6000602082019050612f276000830184612bea565b92915050565b60006020820190508181036000830152612f478184612c32565b905092915050565b60006020820190508181036000830152612f6881612c9c565b9050919050565b60006020820190508181036000830152612f8881612cbf565b9050919050565b60006020820190508181036000830152612fa881612ce2565b9050919050565b60006020820190508181036000830152612fc881612d05565b9050919050565b60006020820190508181036000830152612fe881612d28565b9050919050565b6000602082019050818103600083015261300881612d4b565b9050919050565b6000602082019050818103600083015261302881612d6e565b9050919050565b6000602082019050818103600083015261304881612d91565b9050919050565b6000602082019050818103600083015261306881612db4565b9050919050565b6000602082019050818103600083015261308881612dd7565b9050919050565b600060208201905081810360008301526130a881612dfa565b9050919050565b600060208201905081810360008301526130c881612e1d565b9050919050565b60006020820190506130e46000830184612e63565b92915050565b60006130f4613105565b9050613100828261335a565b919050565b6000604051905090565b600067ffffffffffffffff82111561312a576131296133e9565b5b61313382613436565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613199826132dc565b91506131a4836132dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d9576131d861338b565b5b828201905092915050565b60006131ef826132dc565b91506131fa836132dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132335761323261338b565b5b828202905092915050565b6000613249826132dc565b9150613254836132dc565b9250828210156132675761326661338b565b5b828203905092915050565b600061327d826132bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133135780820151818401526020810190506132f8565b83811115613322576000848401525b50505050565b6000600282049050600182168061334057607f821691505b60208210811415613354576133536133ba565b5b50919050565b61336382613436565b810181811067ffffffffffffffff82111715613382576133816133e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136d781613272565b81146136e257600080fd5b50565b6136ee81613284565b81146136f957600080fd5b50565b61370581613290565b811461371057600080fd5b50565b61371c816132dc565b811461372757600080fd5b5056fea264697066735822122056d3580f2c082f1b4089b885deb75660d0d966a87dc904b144f216b01f30203164736f6c63430008070033

Deployed Bytecode Sourcemap

41900:3555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16575:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21588:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23656:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23116:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44751:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15629:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24542:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42175:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24783:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42003:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44991:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45227:225;;;:::i;:::-;;21377:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17254:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2691:103;;;;;;;;;;;;;:::i;:::-;;44659:84;;;;;;;;;;;;;:::i;:::-;;44407:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43648:545;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42120:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2040:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44201:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21757:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42488:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42235:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42886:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23932:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25039:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44529:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44295:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21932:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42065:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41946:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24311:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42299:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2949:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42546:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16575:615;16660:4;16975:10;16960:25;;:11;:25;;;;:102;;;;17052:10;17037:25;;:11;:25;;;;16960:102;:179;;;;17129:10;17114:25;;:11;:25;;;;16960:179;16940:199;;16575:615;;;:::o;21588:100::-;21642:13;21675:5;21668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21588:100;:::o;23656:204::-;23724:7;23749:16;23757:7;23749;:16::i;:::-;23744:64;;23774:34;;;;;;;;;;;;;;23744:64;23828:15;:24;23844:7;23828:24;;;;;;;;;;;;;;;;;;;;;23821:31;;23656:204;;;:::o;23116:474::-;23189:13;23221:27;23240:7;23221:18;:27::i;:::-;23189:61;;23271:5;23265:11;;:2;:11;;;23261:48;;;23285:24;;;;;;;;;;;;;;23261:48;23349:5;23326:28;;:19;:17;:19::i;:::-;:28;;;23322:175;;23374:44;23391:5;23398:19;:17;:19::i;:::-;23374:16;:44::i;:::-;23369:128;;23446:35;;;;;;;;;;;;;;23369:128;23322:175;23536:2;23509:15;:24;23525:7;23509:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23574:7;23570:2;23554:28;;23563:5;23554:28;;;;;;;;;;;;23178:412;23116:474;;:::o;44751:232::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44863:13:::1;:11;:13::i;:::-;44852:7;44840:9;;:19;;;;:::i;:::-;:36;;44818:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;44968:7;44955:9;;:20;;;;;;;:::i;:::-;;;;;;;;44751:232:::0;:::o;15629:315::-;15682:7;15910:15;:13;:15::i;:::-;15895:12;;15879:13;;:28;:46;15872:53;;15629:315;:::o;24542:170::-;24676:28;24686:4;24692:2;24696:7;24676:9;:28::i;:::-;24542:170;;;:::o;42175:47::-;;;;:::o;24783:185::-;24921:39;24938:4;24944:2;24948:7;24921:39;;;;;;;;;;;;:16;:39::i;:::-;24783:185;;;:::o;42003:49::-;;;;:::o;44991:106::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45082:7:::1;;45066:13;:23;;;;;;;:::i;:::-;;44991:106:::0;;:::o;45227:225::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45295:12:::1;42400:42;45313:26;;45361:21;45313:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45294:103;;;45416:7;45408:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45281:171;45227:225::o:0;21377:144::-;21441:7;21484:27;21503:7;21484:18;:27::i;:::-;21461:52;;21377:144;;;:::o;17254:224::-;17318:7;17359:1;17342:19;;:5;:19;;;17338:60;;;17370:28;;;;;;;;;;;;;;17338:60;12593:13;17416:18;:25;17435:5;17416:25;;;;;;;;;;;;;;;;:54;17409:61;;17254:224;;;:::o;2691:103::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2756:30:::1;2783:1;2756:18;:30::i;:::-;2691:103::o:0;44659:84::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44723:12:::1;;;;;;;;;;;44722:13;44707:12;;:28;;;;;;;;;;;;;;;;;;44659:84::o:0;44407:114::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44506:7:::1;44480:23;:33;;;;44407:114:::0;:::o;43648:545::-;42743:12;;;;;;;;;;;42735:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42815:10;42802:23;;:9;:23;;;42794:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43777:9:::1;43761:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43744:13;;:42;;43722:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;43854:25;43882:16;:28;43899:10;43882:28;;;;;;;;;;;;;;;;43854:56;;43976:27;;43963:9;43943:17;:29;;;;:::i;:::-;:60;;43921:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;44133:9;44113:17;:29;;;;:::i;:::-;44082:16;:28;44099:10;44082:28;;;;;;;;;;;;;;;:60;;;;44153:32;44163:10;44175:9;44153;:32::i;:::-;43711:482;43648:545:::0;:::o;42120:48::-;;;;:::o;2040:87::-;2086:7;2113:6;;;;;;;;;;;2106:13;;2040:87;:::o;44201:86::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44273:6:::1;44265:5;:14;;;;44201:86:::0;:::o;21757:104::-;21813:13;21846:7;21839:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21757:104;:::o;42488:51::-;;;;;;;;;;;;;;;;;:::o;42235:57::-;;;;:::o;42886:754::-;42743:12;;;;;;;;;;;42735:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42815:10;42802:23;;:9;:23;;;42794:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43007:9:::1;42999:5;;:17;;;;:::i;:::-;42986:9;:30;;42964:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43129:9;43113:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43100:9;;:38;;43078:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;43201:21;43225:12;:24;43238:10;43225:24;;;;;;;;;;;;;;;;43201:48;;43311:23;;43298:9;43282:13;:25;;;;:::i;:::-;:52;;43260:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;43442:1;43430:9;:13;:48;;;;;43460:18;;43447:9;:31;;43430:48;43408:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43580:9;43564:13;:25;;;;:::i;:::-;43537:12;:24;43550:10;43537:24;;;;;;;;;;;;;;;:52;;;;43600:32;43610:10;43622:9;43600;:32::i;:::-;42953:687;42886:754:::0;:::o;23932:308::-;24043:19;:17;:19::i;:::-;24031:31;;:8;:31;;;24027:61;;;24071:17;;;;;;;;;;;;;;24027:61;24153:8;24101:18;:39;24120:19;:17;:19::i;:::-;24101:39;;;;;;;;;;;;;;;:49;24141:8;24101:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24213:8;24177:55;;24192:19;:17;:19::i;:::-;24177:55;;;24223:8;24177:55;;;;;;:::i;:::-;;;;;;;;23932:308;;:::o;25039:396::-;25206:28;25216:4;25222:2;25226:7;25206:9;:28::i;:::-;25267:1;25249:2;:14;;;:19;25245:183;;25288:56;25319:4;25325:2;25329:7;25338:5;25288:30;:56::i;:::-;25283:145;;25372:40;;;;;;;;;;;;;;25283:145;25245:183;25039:396;;;;:::o;44529:122::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44636:7:::1;44606:27;:37;;;;44529:122:::0;:::o;44295:104::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44384:7:::1;44363:18;:28;;;;44295:104:::0;:::o;21932:318::-;22005:13;22036:16;22044:7;22036;:16::i;:::-;22031:59;;22061:29;;;;;;;;;;;;;;22031:59;22103:21;22127:10;:8;:10::i;:::-;22103:34;;22180:1;22161:7;22155:21;:26;;:87;;;;;;;;;;;;;;;;;22208:7;22217:18;22227:7;22217:9;:18::i;:::-;22191:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22155:87;22148:94;;;21932:318;;;:::o;42065:48::-;;;;:::o;41946:50::-;;;;:::o;24311:164::-;24408:4;24432:18;:25;24451:5;24432:25;;;;;;;;;;;;;;;:35;24458:8;24432:35;;;;;;;;;;;;;;;;;;;;;;;;;24425:42;;24311:164;;;;:::o;42299:51::-;;;;;;;;;;;;;:::o;2949:201::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3058:1:::1;3038:22;;:8;:22;;;;3030:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3114:28;3133:8;3114:18;:28::i;:::-;2949:201:::0;:::o;42546:47::-;;;;;;;;;;;;;;;;;:::o;25690:273::-;25747:4;25803:7;25784:15;:13;:15::i;:::-;:26;;:66;;;;;25837:13;;25827:7;:23;25784:66;:152;;;;;25935:1;13363:8;25888:17;:26;25906:7;25888:26;;;;;;;;;;;;:43;:48;25784:152;25764:172;;25690:273;;;:::o;18892:1129::-;18959:7;18979:12;18994:7;18979:22;;19062:4;19043:15;:13;:15::i;:::-;:23;19039:915;;19096:13;;19089:4;:20;19085:869;;;19134:14;19151:17;:23;19169:4;19151:23;;;;;;;;;;;;19134:40;;19267:1;13363:8;19240:6;:23;:28;19236:699;;;19759:113;19776:1;19766:6;:11;19759:113;;;19819:17;:25;19837:6;;;;;;;19819:25;;;;;;;;;;;;19810:34;;19759:113;;;19905:6;19898:13;;;;;;19236:699;19111:843;19085:869;19039:915;19982:31;;;;;;;;;;;;;;18892:1129;;;;:::o;39672:105::-;39732:7;39759:10;39752:17;;39672:105;:::o;768:98::-;821:7;848:10;841:17;;768:98;:::o;15152:92::-;15208:7;15152:92;:::o;30929:2515::-;31044:27;31074;31093:7;31074:18;:27::i;:::-;31044:57;;31159:4;31118:45;;31134:19;31118:45;;;31114:86;;31172:28;;;;;;;;;;;;;;31114:86;31213:22;31262:4;31239:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31283:43;31300:4;31306:19;:17;:19::i;:::-;31283:16;:43::i;:::-;31239:87;:147;;;;31367:19;:17;:19::i;:::-;31343:43;;:20;31355:7;31343:11;:20::i;:::-;:43;;;31239:147;31213:174;;31405:17;31400:66;;31431:35;;;;;;;;;;;;;;31400:66;31495:1;31481:16;;:2;:16;;;31477:52;;;31506:23;;;;;;;;;;;;;;31477:52;31542:43;31564:4;31570:2;31574:7;31583:1;31542:21;:43::i;:::-;31658:15;:24;31674:7;31658:24;;;;;;;;;;;;31651:31;;;;;;;;;;;32050:18;:24;32069:4;32050:24;;;;;;;;;;;;;;;;32048:26;;;;;;;;;;;;32119:18;:22;32138:2;32119:22;;;;;;;;;;;;;;;;32117:24;;;;;;;;;;;13645:8;13247:3;32500:15;:41;;32458:21;32476:2;32458:17;:21::i;:::-;:84;:128;32412:17;:26;32430:7;32412:26;;;;;;;;;;;:174;;;;32756:1;13645:8;32706:19;:46;:51;32702:626;;;32778:19;32810:1;32800:7;:11;32778:33;;32967:1;32933:17;:30;32951:11;32933:30;;;;;;;;;;;;:35;32929:384;;;33071:13;;33056:11;:28;33052:242;;33251:19;33218:17;:30;33236:11;33218:30;;;;;;;;;;;:52;;;;33052:242;32929:384;32759:569;32702:626;33375:7;33371:2;33356:27;;33365:4;33356:27;;;;;;;;;;;;33394:42;33415:4;33421:2;33425:7;33434:1;33394:20;:42::i;:::-;31033:2411;;30929:2515;;;:::o;3310:191::-;3384:16;3403:6;;;;;;;;;;;3384:25;;3429:8;3420:6;;:17;;;;;;;;;;;;;;;;;;3484:8;3453:40;;3474:8;3453:40;;;;;;;;;;;;3373:128;3310:191;:::o;26047:104::-;26116:27;26126:2;26130:8;26116:27;;;;;;;;;;;;:9;:27::i;:::-;26047:104;;:::o;37141:716::-;37304:4;37350:2;37325:45;;;37371:19;:17;:19::i;:::-;37392:4;37398:7;37407:5;37325:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37321:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37625:1;37608:6;:13;:18;37604:235;;;37654:40;;;;;;;;;;;;;;37604:235;37797:6;37791:13;37782:6;37778:2;37774:15;37767:38;37321:529;37494:54;;;37484:64;;;:6;:64;;;;37477:71;;;37141:716;;;;;;:::o;45105:114::-;45165:13;45198;45191:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45105:114;:::o;39883:1959::-;39940:17;40361:3;40354:4;40348:11;40344:21;40337:28;;40452:3;40446:4;40439:17;40558:3;41015:5;41145:1;41140:3;41136:11;41129:18;;41282:2;41276:4;41272:13;41268:2;41264:22;41259:3;41251:36;41323:2;41317:4;41313:13;41305:21;;40906:682;41342:4;40906:682;;;41517:1;41512:3;41508:11;41501:18;;41568:2;41562:4;41558:13;41554:2;41550:22;41545:3;41537:36;41438:2;41432:4;41428:13;41420:21;;40906:682;;;40910:431;41639:3;41634;41630:13;41754:2;41749:3;41745:12;41738:19;;41817:6;41812:3;41805:19;39979:1856;;39883:1959;;;:::o;38505:159::-;;;;;:::o;22677:148::-;22741:14;22802:5;22792:15;;22677:148;;;:::o;39323:158::-;;;;;:::o;26524:2236::-;26647:20;26670:13;;26647:36;;26712:1;26698:16;;:2;:16;;;26694:48;;;26723:19;;;;;;;;;;;;;;26694:48;26769:1;26757:8;:13;26753:44;;;26779:18;;;;;;;;;;;;;;26753:44;26810:61;26840:1;26844:2;26848:12;26862:8;26810:21;:61::i;:::-;27414:1;12730:2;27385:1;:25;;27384:31;27372:8;:44;27346:18;:22;27365:2;27346:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13510:3;27815:29;27842:1;27830:8;:13;27815:14;:29::i;:::-;:56;;13247:3;27752:15;:41;;27710:21;27728:2;27710:17;:21::i;:::-;:84;:162;27659:17;:31;27677:12;27659:31;;;;;;;;;;;:213;;;;27889:20;27912:12;27889:35;;27939:11;27968:8;27953:12;:23;27939:37;;28015:1;27997:2;:14;;;:19;27993:635;;28037:313;28093:12;28089:2;28068:38;;28085:1;28068:38;;;;;;;;;;;;28134:69;28173:1;28177:2;28181:14;;;;;;28197:5;28134:30;:69::i;:::-;28129:174;;28239:40;;;;;;;;;;;;;;28129:174;28345:3;28330:12;:18;28037:313;;28431:12;28414:13;;:29;28410:43;;28445:8;;;28410:43;27993:635;;;28494:119;28550:14;;;;;;28546:2;28525:40;;28542:1;28525:40;;;;;;;;;;;;28608:3;28593:12;:18;28494:119;;27993:635;28658:12;28642:13;:28;;;;27123:1559;;28692:60;28721:1;28725:2;28729:12;28743:8;28692:20;:60::i;:::-;26636:2124;26524:2236;;;:::o;22912:142::-;22970:14;23031:5;23021:15;;22912:142;;;:::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;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:398::-;12954:3;12975:83;13056:1;13051:3;12975:83;:::i;:::-;12968:90;;13067:93;13156:3;13067:93;:::i;:::-;13185:1;13180:3;13176:11;13169:18;;12795:398;;;:::o;13199:118::-;13286:24;13304:5;13286:24;:::i;:::-;13281:3;13274:37;13199:118;;:::o;13323:435::-;13503:3;13525:95;13616:3;13607:6;13525:95;:::i;:::-;13518:102;;13637:95;13728:3;13719:6;13637:95;:::i;:::-;13630:102;;13749:3;13742:10;;13323:435;;;;;:::o;13764:379::-;13948:3;13970:147;14113:3;13970:147;:::i;:::-;13963:154;;14134:3;14127:10;;13764:379;;;:::o;14149:222::-;14242:4;14280:2;14269:9;14265:18;14257:26;;14293:71;14361:1;14350:9;14346:17;14337:6;14293:71;:::i;:::-;14149:222;;;;:::o;14377:640::-;14572:4;14610:3;14599:9;14595:19;14587:27;;14624:71;14692:1;14681:9;14677:17;14668:6;14624:71;:::i;:::-;14705:72;14773:2;14762:9;14758:18;14749:6;14705:72;:::i;:::-;14787;14855:2;14844:9;14840:18;14831:6;14787:72;:::i;:::-;14906:9;14900:4;14896:20;14891:2;14880:9;14876:18;14869:48;14934:76;15005:4;14996:6;14934:76;:::i;:::-;14926:84;;14377:640;;;;;;;:::o;15023:210::-;15110:4;15148:2;15137:9;15133:18;15125:26;;15161:65;15223:1;15212:9;15208:17;15199:6;15161:65;:::i;:::-;15023:210;;;;:::o;15239:313::-;15352:4;15390:2;15379:9;15375:18;15367:26;;15439:9;15433:4;15429:20;15425:1;15414:9;15410:17;15403:47;15467:78;15540:4;15531:6;15467:78;:::i;:::-;15459:86;;15239:313;;;;:::o;15558:419::-;15724:4;15762:2;15751:9;15747:18;15739:26;;15811:9;15805:4;15801:20;15797:1;15786:9;15782:17;15775:47;15839:131;15965:4;15839:131;:::i;:::-;15831:139;;15558:419;;;:::o;15983:::-;16149:4;16187:2;16176:9;16172:18;16164:26;;16236:9;16230:4;16226:20;16222:1;16211:9;16207:17;16200:47;16264:131;16390:4;16264:131;:::i;:::-;16256:139;;15983:419;;;:::o;16408:::-;16574:4;16612:2;16601:9;16597:18;16589:26;;16661:9;16655:4;16651:20;16647:1;16636:9;16632:17;16625:47;16689:131;16815:4;16689:131;:::i;:::-;16681:139;;16408:419;;;:::o;16833:::-;16999:4;17037:2;17026:9;17022:18;17014:26;;17086:9;17080:4;17076:20;17072:1;17061:9;17057:17;17050:47;17114:131;17240:4;17114:131;:::i;:::-;17106:139;;16833:419;;;:::o;17258:::-;17424:4;17462:2;17451:9;17447:18;17439:26;;17511:9;17505:4;17501:20;17497:1;17486:9;17482:17;17475:47;17539:131;17665:4;17539:131;:::i;:::-;17531:139;;17258:419;;;:::o;17683:::-;17849:4;17887:2;17876:9;17872:18;17864:26;;17936:9;17930:4;17926:20;17922:1;17911:9;17907:17;17900:47;17964:131;18090:4;17964:131;:::i;:::-;17956:139;;17683:419;;;:::o;18108:::-;18274:4;18312:2;18301:9;18297:18;18289:26;;18361:9;18355:4;18351:20;18347:1;18336:9;18332:17;18325:47;18389:131;18515:4;18389:131;:::i;:::-;18381:139;;18108:419;;;:::o;18533:::-;18699:4;18737:2;18726:9;18722:18;18714:26;;18786:9;18780:4;18776:20;18772:1;18761:9;18757:17;18750:47;18814:131;18940:4;18814:131;:::i;:::-;18806:139;;18533:419;;;:::o;18958:::-;19124:4;19162:2;19151:9;19147:18;19139:26;;19211:9;19205:4;19201:20;19197:1;19186:9;19182:17;19175:47;19239:131;19365:4;19239:131;:::i;:::-;19231:139;;18958:419;;;:::o;19383:::-;19549:4;19587:2;19576:9;19572:18;19564:26;;19636:9;19630:4;19626:20;19622:1;19611:9;19607:17;19600:47;19664:131;19790:4;19664:131;:::i;:::-;19656:139;;19383:419;;;:::o;19808:::-;19974:4;20012:2;20001:9;19997:18;19989:26;;20061:9;20055:4;20051:20;20047:1;20036:9;20032:17;20025:47;20089:131;20215:4;20089:131;:::i;:::-;20081:139;;19808:419;;;:::o;20233:::-;20399:4;20437:2;20426:9;20422:18;20414:26;;20486:9;20480:4;20476:20;20472:1;20461:9;20457:17;20450:47;20514:131;20640:4;20514:131;:::i;:::-;20506:139;;20233:419;;;:::o;20658:222::-;20751:4;20789:2;20778:9;20774:18;20766:26;;20802:71;20870:1;20859:9;20855:17;20846:6;20802:71;:::i;:::-;20658:222;;;;:::o;20886:129::-;20920:6;20947:20;;:::i;:::-;20937:30;;20976:33;21004:4;20996:6;20976:33;:::i;:::-;20886:129;;;:::o;21021:75::-;21054:6;21087:2;21081:9;21071:19;;21021:75;:::o;21102:307::-;21163:4;21253:18;21245:6;21242:30;21239:56;;;21275:18;;:::i;:::-;21239:56;21313:29;21335:6;21313:29;:::i;:::-;21305:37;;21397:4;21391;21387:15;21379:23;;21102:307;;;:::o;21415:98::-;21466:6;21500:5;21494:12;21484:22;;21415:98;;;:::o;21519:99::-;21571:6;21605:5;21599:12;21589:22;;21519:99;;;:::o;21624:168::-;21707:11;21741:6;21736:3;21729:19;21781:4;21776:3;21772:14;21757:29;;21624:168;;;;:::o;21798:147::-;21899:11;21936:3;21921:18;;21798:147;;;;:::o;21951:169::-;22035:11;22069:6;22064:3;22057:19;22109:4;22104:3;22100:14;22085:29;;21951:169;;;;:::o;22126:148::-;22228:11;22265:3;22250:18;;22126:148;;;;:::o;22280:305::-;22320:3;22339:20;22357:1;22339:20;:::i;:::-;22334:25;;22373:20;22391:1;22373:20;:::i;:::-;22368:25;;22527:1;22459:66;22455:74;22452:1;22449:81;22446:107;;;22533:18;;:::i;:::-;22446:107;22577:1;22574;22570:9;22563:16;;22280:305;;;;:::o;22591:348::-;22631:7;22654:20;22672:1;22654:20;:::i;:::-;22649:25;;22688:20;22706:1;22688:20;:::i;:::-;22683:25;;22876:1;22808:66;22804:74;22801:1;22798:81;22793:1;22786:9;22779:17;22775:105;22772:131;;;22883:18;;:::i;:::-;22772:131;22931:1;22928;22924:9;22913:20;;22591:348;;;;:::o;22945:191::-;22985:4;23005:20;23023:1;23005:20;:::i;:::-;23000:25;;23039:20;23057:1;23039:20;:::i;:::-;23034:25;;23078:1;23075;23072:8;23069:34;;;23083:18;;:::i;:::-;23069:34;23128:1;23125;23121:9;23113:17;;22945:191;;;;:::o;23142:96::-;23179:7;23208:24;23226:5;23208:24;:::i;:::-;23197:35;;23142:96;;;:::o;23244:90::-;23278:7;23321:5;23314:13;23307:21;23296:32;;23244:90;;;:::o;23340:149::-;23376:7;23416:66;23409:5;23405:78;23394:89;;23340:149;;;:::o;23495:126::-;23532:7;23572:42;23565:5;23561:54;23550:65;;23495:126;;;:::o;23627:77::-;23664:7;23693:5;23682:16;;23627:77;;;:::o;23710:154::-;23794:6;23789:3;23784;23771:30;23856:1;23847:6;23842:3;23838:16;23831:27;23710:154;;;:::o;23870:307::-;23938:1;23948:113;23962:6;23959:1;23956:13;23948:113;;;24047:1;24042:3;24038:11;24032:18;24028:1;24023:3;24019:11;24012:39;23984:2;23981:1;23977:10;23972:15;;23948:113;;;24079:6;24076:1;24073:13;24070:101;;;24159:1;24150:6;24145:3;24141:16;24134:27;24070:101;23919:258;23870:307;;;:::o;24183:320::-;24227:6;24264:1;24258:4;24254:12;24244:22;;24311:1;24305:4;24301:12;24332:18;24322:81;;24388:4;24380:6;24376:17;24366:27;;24322:81;24450:2;24442:6;24439:14;24419:18;24416:38;24413:84;;;24469:18;;:::i;:::-;24413:84;24234:269;24183:320;;;:::o;24509:281::-;24592:27;24614:4;24592:27;:::i;:::-;24584:6;24580:40;24722:6;24710:10;24707:22;24686:18;24674:10;24671:34;24668:62;24665:88;;;24733:18;;:::i;:::-;24665:88;24773:10;24769:2;24762:22;24552:238;24509:281;;:::o;24796:180::-;24844:77;24841:1;24834:88;24941:4;24938:1;24931:15;24965:4;24962:1;24955:15;24982:180;25030:77;25027:1;25020:88;25127:4;25124:1;25117:15;25151:4;25148:1;25141:15;25168:180;25216:77;25213:1;25206:88;25313:4;25310:1;25303:15;25337:4;25334:1;25327:15;25354:117;25463:1;25460;25453:12;25477:117;25586:1;25583;25576:12;25600:117;25709:1;25706;25699:12;25723:117;25832:1;25829;25822:12;25846:117;25955:1;25952;25945:12;25969:117;26078:1;26075;26068:12;26092:102;26133:6;26184:2;26180:7;26175:2;26168:5;26164:14;26160:28;26150:38;;26092:102;;;:::o;26200:225::-;26340:34;26336:1;26328:6;26324:14;26317:58;26409:8;26404:2;26396:6;26392:15;26385:33;26200:225;:::o;26431:179::-;26571:31;26567:1;26559:6;26555:14;26548:55;26431:179;:::o;26616:178::-;26756:30;26752:1;26744:6;26740:14;26733:54;26616:178;:::o;26800:227::-;26940:34;26936:1;26928:6;26924:14;26917:58;27009:10;27004:2;26996:6;26992:15;26985:35;26800:227;:::o;27033:173::-;27173:25;27169:1;27161:6;27157:14;27150:49;27033:173;:::o;27212:174::-;27352:26;27348:1;27340:6;27336:14;27329:50;27212:174;:::o;27392:222::-;27532:34;27528:1;27520:6;27516:14;27509:58;27601:5;27596:2;27588:6;27584:15;27577:30;27392:222;:::o;27620:226::-;27760:34;27756:1;27748:6;27744:14;27737:58;27829:9;27824:2;27816:6;27812:15;27805:34;27620:226;:::o;27852:166::-;27992:18;27988:1;27980:6;27976:14;27969:42;27852:166;:::o;28024:170::-;28164:22;28160:1;28152:6;28148:14;28141:46;28024:170;:::o;28200:173::-;28340:25;28336:1;28328:6;28324:14;28317:49;28200:173;:::o;28379:182::-;28519:34;28515:1;28507:6;28503:14;28496:58;28379:182;:::o;28567:114::-;;:::o;28687:122::-;28760:24;28778:5;28760:24;:::i;:::-;28753:5;28750:35;28740:63;;28799:1;28796;28789:12;28740:63;28687:122;:::o;28815:116::-;28885:21;28900:5;28885:21;:::i;:::-;28878:5;28875:32;28865:60;;28921:1;28918;28911:12;28865:60;28815:116;:::o;28937:120::-;29009:23;29026:5;29009:23;:::i;:::-;29002:5;28999:34;28989:62;;29047:1;29044;29037:12;28989:62;28937:120;:::o;29063:122::-;29136:24;29154:5;29136:24;:::i;:::-;29129:5;29126:35;29116:63;;29175:1;29172;29165:12;29116:63;29063:122;:::o

Swarm Source

ipfs://56d3580f2c082f1b4089b885deb75660d0d966a87dc904b144f216b01f302031
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.