Token Hop
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
981,968,821,898.074558 HOP
Holders:
736 addresses
Contract:
Decimals:
18
Balance
16,674,417.78133942152 HOPValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hop
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ /** Hop */ // SPDX-License-Identifier: licensed pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address ) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/26181 return msg.data; } } interface HOPDeployer { // @dev Returns the amount of tokens in existence. function totalSupply() external view returns (uint256); // @dev Returns the token decimals. function decimals() external view returns (uint8); // @dev Returns the token symbol. function symbol() external view returns (string memory); //@dev Returns the token name. function name() external view returns (string memory); //@dev Returns the bep token owner. function getOwner() external view returns (address); //@dev Returns the amount of tokens owned by `account`. function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); //@dev Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero. event Transfer(address indexed from, address indexed to, uint256 value); //@dev Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance. event Approval(address indexed owner, address indexed spender, uint256 value); } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract Hop is HOPDeployer, Context, Ownable { // common addresses address private _owner; address private HOPTeam; address private CharityHOP; // token liquidity metadata uint public override totalSupply; uint8 public override decimals = 18; mapping(address => uint) public balances; mapping(address => mapping(address => uint)) public allowances; // token title metadata string public override name = "Hop"; string public override symbol = "HOP"; // EVENTS // (now in interface) event Transfer(address indexed from, address indexed to, uint value); // (now in interface) event Approval(address indexed owner, address indexed spender, uint value); // On init of contract we're going to set the admin and give them all tokens. constructor(uint totalSupplyValue, address HOPTeamAddress, address CharityHOPAddress) { // set total supply totalSupply = totalSupplyValue; // designate addresses _owner = msg.sender; HOPTeam = HOPTeamAddress; CharityHOP = CharityHOPAddress; // split the tokens according to agreed upon percentages balances[HOPTeam] = totalSupply * 1 / 100; balances[CharityHOP] = totalSupply * 1 / 100; balances[_owner] = totalSupply * 98 / 100; } // Get the address of the token's owner function getOwner() public view override returns(address) { return _owner; } // Get the address of the token's HOPTeam pot function getDeveloper() public view returns(address) { return HOPTeam; } // Get the address of the token's founder pot function getFounder() public view returns(address) { return CharityHOP; } // Get the balance of an account function balanceOf(address account) public view override returns(uint) { return balances[account]; } // Transfer balance from one user to another function transfer(address to, uint value) public override returns(bool) { require(value > 0, "Transfer value has to be higher than 0."); require(balanceOf(msg.sender) >= value, "Balance is too low to make transfer."); //withdraw the taxed and burned percentages from the total value uint taxTBD = value * 7 / 100; uint burnTBD = value * 1 / 100; uint valueAfterTaxAndBurn = value - taxTBD - burnTBD; // perform the transfer operation balances[to] += valueAfterTaxAndBurn; balances[msg.sender] -= value; emit Transfer(msg.sender, to, value); // finally, we burn and tax the extras percentage balances[_owner] += taxTBD + burnTBD; _burn(_owner, burnTBD); return true; } // approve a specific address as a spender for your account, with a specific spending limit function approve(address spender, uint value) public override returns(bool) { allowances[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } // allowance function allowance(address owner , address spender) public view returns(uint) { return allowances[owner][spender]; } // an approved spender can transfer currency from one account to another up to their spending limit function transferFrom(address from, address to, uint value) public override returns(bool) { require(allowances[from][msg.sender] > 0, "No Allowance for this address."); require(allowances[from][msg.sender] >= value, "Allowance too low for transfer."); require(balances[from] >= value, "Balance is too low to make transfer."); balances[to] += value; balances[from] -= value; emit Transfer(from, to, value); return true; } // function to allow users to burn currency from their account function burn(uint256 amount) public returns(bool) { _burn(msg.sender, amount); return true; } // intenal functions // burn amount of currency from specific account function _burn(address account, uint256 amount) internal { require(account != address(0), "You can't burn from zero address."); require(balances[account] >= amount, "Burn amount exceeds balance at address."); balances[account] -= amount; totalSupply -= amount; emit Transfer(account, address(0), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"totalSupplyValue","type":"uint256"},{"internalType":"address","name":"HOPTeamAddress","type":"address"},{"internalType":"address","name":"CharityHOPAddress","type":"address"}],"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":"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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDeveloper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFounder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526012600560006101000a81548160ff021916908360ff1602179055506040518060400160405280600381526020017f486f700000000000000000000000000000000000000000000000000000000000815250600890805190602001906200006d92919062000406565b506040518060400160405280600381526020017f484f50000000000000000000000000000000000000000000000000000000000081525060099080519060200190620000bb92919062000406565b50348015620000c957600080fd5b50604051620022e0380380620022e08339818101604052810190620000ef91906200055b565b600062000101620003fe60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508260048190555033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606460016004546200027c9190620005e6565b62000288919062000676565b60066000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060646001600454620003009190620005e6565b6200030c919062000676565b60066000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060646062600454620003849190620005e6565b62000390919062000676565b60066000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505062000712565b600033905090565b8280546200041490620006dd565b90600052602060002090601f01602090048101928262000438576000855562000484565b82601f106200045357805160ff191683800117855562000484565b8280016001018555821562000484579182015b828111156200048357825182559160200191906001019062000466565b5b50905062000493919062000497565b5090565b5b80821115620004b257600081600090555060010162000498565b5090565b600080fd5b6000819050919050565b620004d081620004bb565b8114620004dc57600080fd5b50565b600081519050620004f081620004c5565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200052382620004f6565b9050919050565b620005358162000516565b81146200054157600080fd5b50565b60008151905062000555816200052a565b92915050565b600080600060608486031215620005775762000576620004b6565b5b60006200058786828701620004df565b93505060206200059a8682870162000544565b9250506040620005ad8682870162000544565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005f382620004bb565b91506200060083620004bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200063c576200063b620005b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200068382620004bb565b91506200069083620004bb565b925082620006a357620006a262000647565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006f657607f821691505b6020821081036200070c576200070b620006ae565b5b50919050565b611bbe80620007226000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063946bcc3011610071578063946bcc30146102f957806395d89b4114610317578063a9059cbb14610335578063dd62ed3e14610365578063f2fde38b1461039557610116565b8063715018a6146102955780637a4440721461029f578063893d20e8146102bd5780638da5cb5b146102db57610116565b806327e235e3116100e957806327e235e3146101b7578063313ce567146101e757806342966c681461020557806355b6ed5c1461023557806370a082311461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b1565b60405161013091906112ee565b60405180910390f35b610153600480360381019061014e91906113a9565b61043f565b6040516101609190611404565b60405180910390f35b610171610531565b60405161017e919061142e565b60405180910390f35b6101a1600480360381019061019c9190611449565b610537565b6040516101ae9190611404565b60405180910390f35b6101d160048036038101906101cc919061149c565b610854565b6040516101de919061142e565b60405180910390f35b6101ef61086c565b6040516101fc91906114e5565b60405180910390f35b61021f600480360381019061021a9190611500565b61087f565b60405161022c9190611404565b60405180910390f35b61024f600480360381019061024a919061152d565b610894565b60405161025c919061142e565b60405180910390f35b61027f600480360381019061027a919061149c565b6108b9565b60405161028c919061142e565b60405180910390f35b61029d610902565b005b6102a7610a55565b6040516102b4919061157c565b60405180910390f35b6102c5610a7f565b6040516102d2919061157c565b60405180910390f35b6102e3610aa9565b6040516102f0919061157c565b60405180910390f35b610301610ad2565b60405161030e919061157c565b60405180910390f35b61031f610afc565b60405161032c91906112ee565b60405180910390f35b61034f600480360381019061034a91906113a9565b610b8a565b60405161035c9190611404565b60405180910390f35b61037f600480360381019061037a919061152d565b610e3b565b60405161038c919061142e565b60405180910390f35b6103af60048036038101906103aa919061149c565b610ec2565b005b600880546103be906115c6565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea906115c6565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b505050505081565b600081600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161051f919061142e565b60405180910390a36001905092915050565b60045481565b600080600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611643565b60405180910390fd5b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad906116af565b60405180910390fd5b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611741565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107879190611790565b9250508190555081600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107dd91906117e6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610841919061142e565b60405180910390a3600190509392505050565b60066020528060005260406000206000915090505481565b600560009054906101000a900460ff1681565b600061088b3383611083565b60019050919050565b6007602052816000526040600020602052806000526040600020600091509150505481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090a61124d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611866565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098054610b09906115c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b35906115c6565b8015610b825780601f10610b5757610100808354040283529160200191610b82565b820191906000526020600020905b815481529060010190602001808311610b6557829003601f168201915b505050505081565b6000808211610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906118f8565b60405180910390fd5b81610bd8336108b9565b1015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611741565b60405180910390fd5b60006064600784610c2a9190611918565b610c3491906119a1565b905060006064600185610c479190611918565b610c5191906119a1565b90506000818386610c6291906117e6565b610c6c91906117e6565b905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbd9190611790565b9250508190555084600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d1391906117e6565b925050819055508573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610d77919061142e565b60405180910390a38183610d8b9190611790565b60066000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfb9190611790565b92505081905550610e2e600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611083565b6001935050505092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610eca61124d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611866565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90611a44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990611ad6565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611b68565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c391906117e6565b9250508190555080600460008282546111dc91906117e6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611241919061142e565b60405180910390a35050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561128f578082015181840152602081019050611274565b8381111561129e576000848401525b50505050565b6000601f19601f8301169050919050565b60006112c082611255565b6112ca8185611260565b93506112da818560208601611271565b6112e3816112a4565b840191505092915050565b6000602082019050818103600083015261130881846112b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061134082611315565b9050919050565b61135081611335565b811461135b57600080fd5b50565b60008135905061136d81611347565b92915050565b6000819050919050565b61138681611373565b811461139157600080fd5b50565b6000813590506113a38161137d565b92915050565b600080604083850312156113c0576113bf611310565b5b60006113ce8582860161135e565b92505060206113df85828601611394565b9150509250929050565b60008115159050919050565b6113fe816113e9565b82525050565b600060208201905061141960008301846113f5565b92915050565b61142881611373565b82525050565b6000602082019050611443600083018461141f565b92915050565b60008060006060848603121561146257611461611310565b5b60006114708682870161135e565b93505060206114818682870161135e565b925050604061149286828701611394565b9150509250925092565b6000602082840312156114b2576114b1611310565b5b60006114c08482850161135e565b91505092915050565b600060ff82169050919050565b6114df816114c9565b82525050565b60006020820190506114fa60008301846114d6565b92915050565b60006020828403121561151657611515611310565b5b600061152484828501611394565b91505092915050565b6000806040838503121561154457611543611310565b5b60006115528582860161135e565b92505060206115638582860161135e565b9150509250929050565b61157681611335565b82525050565b6000602082019050611591600083018461156d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115de57607f821691505b6020821081036115f1576115f0611597565b5b50919050565b7f4e6f20416c6c6f77616e636520666f72207468697320616464726573732e0000600082015250565b600061162d601e83611260565b9150611638826115f7565b602082019050919050565b6000602082019050818103600083015261165c81611620565b9050919050565b7f416c6c6f77616e636520746f6f206c6f7720666f72207472616e736665722e00600082015250565b6000611699601f83611260565b91506116a482611663565b602082019050919050565b600060208201905081810360008301526116c88161168c565b9050919050565b7f42616c616e636520697320746f6f206c6f7720746f206d616b65207472616e7360008201527f6665722e00000000000000000000000000000000000000000000000000000000602082015250565b600061172b602483611260565b9150611736826116cf565b604082019050919050565b6000602082019050818103600083015261175a8161171e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061179b82611373565b91506117a683611373565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117db576117da611761565b5b828201905092915050565b60006117f182611373565b91506117fc83611373565b92508282101561180f5761180e611761565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611850602083611260565b915061185b8261181a565b602082019050919050565b6000602082019050818103600083015261187f81611843565b9050919050565b7f5472616e736665722076616c75652068617320746f206265206869676865722060008201527f7468616e20302e00000000000000000000000000000000000000000000000000602082015250565b60006118e2602783611260565b91506118ed82611886565b604082019050919050565b60006020820190508181036000830152611911816118d5565b9050919050565b600061192382611373565b915061192e83611373565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561196757611966611761565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119ac82611373565b91506119b783611373565b9250826119c7576119c6611972565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a2e602683611260565b9150611a39826119d2565b604082019050919050565b60006020820190508181036000830152611a5d81611a21565b9050919050565b7f596f752063616e2774206275726e2066726f6d207a65726f206164647265737360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac0602183611260565b9150611acb82611a64565b604082019050919050565b60006020820190508181036000830152611aef81611ab3565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e6365206174206160008201527f6464726573732e00000000000000000000000000000000000000000000000000602082015250565b6000611b52602783611260565b9150611b5d82611af6565b604082019050919050565b60006020820190508181036000830152611b8181611b45565b905091905056fea26469706673582212207a1a887bb067dc95201c02ef6658e7019b10dd695108c7997eca6a70b2d3a49364736f6c634300080e0033000000000000000000000000000000000000000c9f2c9cd04674edea400000000000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b4020000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000c9f2c9cd04674edea400000000000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b4020000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
-----Decoded View---------------
Arg [0] : totalSupplyValue (uint256): 1000000000000000000000000000000
Arg [1] : HOPTeamAddress (address): 0x4658f26eeaa68a4f7d4657d0b1016633bb52b402
Arg [2] : CharityHOPAddress (address): 0x0b8d9de4c6d22f2844534148c23a010a9303ae21
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000c9f2c9cd04674edea40000000
Arg [1] : 0000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b402
Arg [2] : 0000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
Deployed ByteCode Sourcemap
4635:4747:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5092:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7675:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4848:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8178:518;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4935:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4887:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8776:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:62;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6542:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4083:148;;;:::i;:::-;;6256:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6103:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3781:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6405:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5134:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6718:848;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7934:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4386:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5092:35;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7675:229::-;7745:4;7796:5;7762:10;:22;7773:10;7762:22;;;;;;;;;;;;;;;:31;7785:7;7762:31;;;;;;;;;;;;;;;:39;;;;7849:7;7828:36;;7837:10;7828:36;;;7858:5;7828:36;;;;;;:::i;:::-;;;;;;;;7892:4;7885:11;;7675:229;;;;:::o;4848:32::-;;;;:::o;8178:518::-;8262:4;8318:1;8287:10;:16;8298:4;8287:16;;;;;;;;;;;;;;;:28;8304:10;8287:28;;;;;;;;;;;;;;;;:32;8279:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;8405:5;8373:10;:16;8384:4;8373:16;;;;;;;;;;;;;;;:28;8390:10;8373:28;;;;;;;;;;;;;;;;:37;;8365:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;8483:5;8465:8;:14;8474:4;8465:14;;;;;;;;;;;;;;;;:23;;8457:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8566:5;8550:8;:12;8559:2;8550:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;8600:5;8582:8;:14;8591:4;8582:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8646:2;8631:25;;8640:4;8631:25;;;8650:5;8631:25;;;;;;:::i;:::-;;;;;;;;8684:4;8677:11;;8178:518;;;;;:::o;4935:40::-;;;;;;;;;;;;;;;;;:::o;4887:35::-;;;;;;;;;;;;;:::o;8776:127::-;8821:4;8838:25;8844:10;8856:6;8838:5;:25::i;:::-;8891:4;8884:11;;8776:127;;;:::o;4988:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6542:114::-;6607:4;6631:8;:17;6640:7;6631:17;;;;;;;;;;;;;;;;6624:24;;6542:114;;;:::o;4083:148::-;4003:12;:10;:12::i;:::-;3993:22;;:6;;;;;;;;;;:22;;;3985:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4190:1:::1;4153:40;;4174:6;::::0;::::1;;;;;;;;4153:40;;;;;;;;;;;;4221:1;4204:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;4083:148::o:0;6256:86::-;6300:7;6327;;;;;;;;;;;6320:14;;6256:86;:::o;6103:90::-;6152:7;6179:6;;;;;;;;;;;6172:13;;6103:90;:::o;3781:79::-;3819:7;3846:6;;;;;;;;;;;3839:13;;3781:79;:::o;6405:87::-;6447:7;6474:10;;;;;;;;;;;6467:17;;6405:87;:::o;5134:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6718:848::-;6784:4;6817:1;6809:5;:9;6801:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;6906:5;6881:21;6891:10;6881:9;:21::i;:::-;:30;;6873:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7047:11;7073:3;7069:1;7061:5;:9;;;;:::i;:::-;:15;;;;:::i;:::-;7047:29;;7087:12;7114:3;7110:1;7102:5;:9;;;;:::i;:::-;:15;;;;:::i;:::-;7087:30;;7128:25;7173:7;7164:6;7156:5;:14;;;;:::i;:::-;:24;;;;:::i;:::-;7128:52;;7260:20;7244:8;:12;7253:2;7244:12;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;7315:5;7291:8;:20;7300:10;7291:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;7367:2;7346:31;;7355:10;7346:31;;;7371:5;7346:31;;;;;;:::i;:::-;;;;;;;;7486:7;7477:6;:16;;;;:::i;:::-;7457:8;:16;7466:6;;;;;;;;;;;7457:16;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;7504:22;7510:6;;;;;;;;;;;7518:7;7504:5;:22::i;:::-;7554:4;7547:11;;;;;6718:848;;;;:::o;7934:127::-;8007:4;8030:10;:17;8041:5;8030:17;;;;;;;;;;;;;;;:26;8048:7;8030:26;;;;;;;;;;;;;;;;8023:33;;7934:127;;;;:::o;4386:244::-;4003:12;:10;:12::i;:::-;3993:22;;:6;;;;;;;;;;:22;;;3985:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4495:1:::1;4475:22;;:8;:22;;::::0;4467:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4585:8;4556:38;;4577:6;::::0;::::1;;;;;;;;4556:38;;;;;;;;;;;;4614:8;4605:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;4386:244:::0;:::o;9001:372::-;9096:1;9077:21;;:7;:21;;;9069:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9176:6;9155:8;:17;9164:7;9155:17;;;;;;;;;;;;;;;;:27;;9147:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9264:6;9243:8;:17;9252:7;9243:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;9296:6;9281:11;;:21;;;;;;;:::i;:::-;;;;;;;;9354:1;9328:37;;9337:7;9328:37;;;9358:6;9328:37;;;;;;:::i;:::-;;;;;;;;9001:372;;:::o;115:99::-;168:7;196:10;189:17;;115:99;:::o;7::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:329::-;4530:6;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4471:329;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:329::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:474::-;5639:6;5647;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5949:2;5975:53;6020:7;6011:6;6000:9;5996:22;5975:53;:::i;:::-;5965:63;;5920:118;5571:474;;;;;:::o;6051:118::-;6138:24;6156:5;6138:24;:::i;:::-;6133:3;6126:37;6051:118;;:::o;6175:222::-;6268:4;6306:2;6295:9;6291:18;6283:26;;6319:71;6387:1;6376:9;6372:17;6363:6;6319:71;:::i;:::-;6175:222;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;7055:32;7051:1;7043:6;7039:14;7032:56;6915:180;:::o;7101:366::-;7243:3;7264:67;7328:2;7323:3;7264:67;:::i;:::-;7257:74;;7340:93;7429:3;7340:93;:::i;:::-;7458:2;7453:3;7449:12;7442:19;;7101:366;;;:::o;7473:419::-;7639:4;7677:2;7666:9;7662:18;7654:26;;7726:9;7720:4;7716:20;7712:1;7701:9;7697:17;7690:47;7754:131;7880:4;7754:131;:::i;:::-;7746:139;;7473:419;;;:::o;7898:181::-;8038:33;8034:1;8026:6;8022:14;8015:57;7898:181;:::o;8085:366::-;8227:3;8248:67;8312:2;8307:3;8248:67;:::i;:::-;8241:74;;8324:93;8413:3;8324:93;:::i;:::-;8442:2;8437:3;8433:12;8426:19;;8085:366;;;:::o;8457:419::-;8623:4;8661:2;8650:9;8646:18;8638:26;;8710:9;8704:4;8700:20;8696:1;8685:9;8681:17;8674:47;8738:131;8864:4;8738:131;:::i;:::-;8730:139;;8457:419;;;:::o;8882:223::-;9022:34;9018:1;9010:6;9006:14;8999:58;9091:6;9086:2;9078:6;9074:15;9067:31;8882:223;:::o;9111:366::-;9253:3;9274:67;9338:2;9333:3;9274:67;:::i;:::-;9267:74;;9350:93;9439:3;9350:93;:::i;:::-;9468:2;9463:3;9459:12;9452:19;;9111:366;;;:::o;9483:419::-;9649:4;9687:2;9676:9;9672:18;9664:26;;9736:9;9730:4;9726:20;9722:1;9711:9;9707:17;9700:47;9764:131;9890:4;9764:131;:::i;:::-;9756:139;;9483:419;;;:::o;9908:180::-;9956:77;9953:1;9946:88;10053:4;10050:1;10043:15;10077:4;10074:1;10067:15;10094:305;10134:3;10153:20;10171:1;10153:20;:::i;:::-;10148:25;;10187:20;10205:1;10187:20;:::i;:::-;10182:25;;10341:1;10273:66;10269:74;10266:1;10263:81;10260:107;;;10347:18;;:::i;:::-;10260:107;10391:1;10388;10384:9;10377:16;;10094:305;;;;:::o;10405:191::-;10445:4;10465:20;10483:1;10465:20;:::i;:::-;10460:25;;10499:20;10517:1;10499:20;:::i;:::-;10494:25;;10538:1;10535;10532:8;10529:34;;;10543:18;;:::i;:::-;10529:34;10588:1;10585;10581:9;10573:17;;10405:191;;;;:::o;10602:182::-;10742:34;10738:1;10730:6;10726:14;10719:58;10602:182;:::o;10790:366::-;10932:3;10953:67;11017:2;11012:3;10953:67;:::i;:::-;10946:74;;11029:93;11118:3;11029:93;:::i;:::-;11147:2;11142:3;11138:12;11131:19;;10790:366;;;:::o;11162:419::-;11328:4;11366:2;11355:9;11351:18;11343:26;;11415:9;11409:4;11405:20;11401:1;11390:9;11386:17;11379:47;11443:131;11569:4;11443:131;:::i;:::-;11435:139;;11162:419;;;:::o;11587:226::-;11727:34;11723:1;11715:6;11711:14;11704:58;11796:9;11791:2;11783:6;11779:15;11772:34;11587:226;:::o;11819:366::-;11961:3;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12058:93;12147:3;12058:93;:::i;:::-;12176:2;12171:3;12167:12;12160:19;;11819:366;;;:::o;12191:419::-;12357:4;12395:2;12384:9;12380:18;12372:26;;12444:9;12438:4;12434:20;12430:1;12419:9;12415:17;12408:47;12472:131;12598:4;12472:131;:::i;:::-;12464:139;;12191:419;;;:::o;12616:348::-;12656:7;12679:20;12697:1;12679:20;:::i;:::-;12674:25;;12713:20;12731:1;12713:20;:::i;:::-;12708:25;;12901:1;12833:66;12829:74;12826:1;12823:81;12818:1;12811:9;12804:17;12800:105;12797:131;;;12908:18;;:::i;:::-;12797:131;12956:1;12953;12949:9;12938:20;;12616:348;;;;:::o;12970:180::-;13018:77;13015:1;13008:88;13115:4;13112:1;13105:15;13139:4;13136:1;13129:15;13156:185;13196:1;13213:20;13231:1;13213:20;:::i;:::-;13208:25;;13247:20;13265:1;13247:20;:::i;:::-;13242:25;;13286:1;13276:35;;13291:18;;:::i;:::-;13276:35;13333:1;13330;13326:9;13321:14;;13156:185;;;;:::o;13347:225::-;13487:34;13483:1;13475:6;13471:14;13464:58;13556:8;13551:2;13543:6;13539:15;13532:33;13347:225;:::o;13578:366::-;13720:3;13741:67;13805:2;13800:3;13741:67;:::i;:::-;13734:74;;13817:93;13906:3;13817:93;:::i;:::-;13935:2;13930:3;13926:12;13919:19;;13578:366;;;:::o;13950:419::-;14116:4;14154:2;14143:9;14139:18;14131:26;;14203:9;14197:4;14193:20;14189:1;14178:9;14174:17;14167:47;14231:131;14357:4;14231:131;:::i;:::-;14223:139;;13950:419;;;:::o;14375:220::-;14515:34;14511:1;14503:6;14499:14;14492:58;14584:3;14579:2;14571:6;14567:15;14560:28;14375:220;:::o;14601:366::-;14743:3;14764:67;14828:2;14823:3;14764:67;:::i;:::-;14757:74;;14840:93;14929:3;14840:93;:::i;:::-;14958:2;14953:3;14949:12;14942:19;;14601:366;;;:::o;14973:419::-;15139:4;15177:2;15166:9;15162:18;15154:26;;15226:9;15220:4;15216:20;15212:1;15201:9;15197:17;15190:47;15254:131;15380:4;15254:131;:::i;:::-;15246:139;;14973:419;;;:::o;15398:226::-;15538:34;15534:1;15526:6;15522:14;15515:58;15607:9;15602:2;15594:6;15590:15;15583:34;15398:226;:::o;15630:366::-;15772:3;15793:67;15857:2;15852:3;15793:67;:::i;:::-;15786:74;;15869:93;15958:3;15869:93;:::i;:::-;15987:2;15982:3;15978:12;15971:19;;15630:366;;;:::o;16002:419::-;16168:4;16206:2;16195:9;16191:18;16183:26;;16255:9;16249:4;16245:20;16241:1;16230:9;16226:17;16219:47;16283:131;16409:4;16283:131;:::i;:::-;16275:139;;16002:419;;;:::o
Swarm Source
ipfs://7a1a887bb067dc95201c02ef6658e7019b10dd695108c7997eca6a70b2d3a493